index.ts 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122
  1. import Swiper from "swiper";
  2. import { Navigation, Pagination } from "swiper/modules";
  3. import { SwiperOptions } from "swiper/types/swiper-options";
  4. import { ModuleControl } from "queenjs";
  5. import { EditorModule } from "../../module";
  6. import { RxValue } from "../ReactCtrl/rxValue";
  7. export class PreviewCtrl extends ModuleControl<EditorModule> {
  8. swiper: any = "";
  9. state = RxValue.create({
  10. scale: 1,
  11. activeIndex: 1,
  12. });
  13. container: HTMLElement | undefined;
  14. initDom(element: HTMLElement) {
  15. this.container = element;
  16. const page = this.controls.pageCtrl;
  17. const { value } = page.rootPage;
  18. const isPcDesign = value.useFor == "pc";
  19. if (isPcDesign) this.getContainerScale();
  20. }
  21. initEvent() {
  22. // 重置缩放比例
  23. window.addEventListener("resize", () => this.resizeWindow());
  24. // 监听上下左右键翻页
  25. document.addEventListener("keydown", (event) => this.keyEvent(event));
  26. }
  27. destroyEvent() {
  28. document.removeEventListener("keydown", this.keyEvent);
  29. document.removeEventListener("resize", this.resizeWindow);
  30. }
  31. resizeWindow() {
  32. this.getContainerScale();
  33. }
  34. keyEvent(event: KeyboardEvent) {
  35. switch (event.keyCode) {
  36. case 37:
  37. case 38:
  38. this.swiper.slidePrev();
  39. break;
  40. case 39:
  41. case 40:
  42. this.swiper.slideNext();
  43. break;
  44. }
  45. }
  46. initSwiper(el: HTMLElement) {
  47. const _this = this;
  48. const page = this.controls.pageCtrl;
  49. const { value } = page.rootPage;
  50. const isPcDesign = value.useFor == "pc";
  51. let options: SwiperOptions = {
  52. loop: true,
  53. direction: "vertical",
  54. pagination: {
  55. el: ".swiper-pagination",
  56. type: isPcDesign ? "progressbar" : "fraction",
  57. verticalClass: "vertical_mobile_progress",
  58. },
  59. navigation: {
  60. nextEl: ".swiper-button-next",
  61. prevEl: ".swiper-button-prev",
  62. },
  63. on: {
  64. slideChangeTransitionStart(swiper: any) {
  65. _this.state.setActiveIndex(swiper.realIndex + 1);
  66. },
  67. },
  68. };
  69. if (isPcDesign) {
  70. options = {
  71. ...options,
  72. direction: "horizontal",
  73. watchSlidesProgress: true,
  74. pagination: {
  75. el: ".swiper-pagination",
  76. type: "progressbar",
  77. },
  78. };
  79. }
  80. this.swiper = new Swiper(el, {
  81. modules: [Navigation, Pagination],
  82. ...options,
  83. });
  84. if (isPcDesign) this.initEvent();
  85. }
  86. getContainerScale() {
  87. if (!this.container) {
  88. this.state.setScale(1);
  89. return;
  90. }
  91. const layout = {
  92. height: this.container.clientHeight,
  93. width: this.container.clientWidth,
  94. };
  95. const pageRatio = layout.width / layout.height;
  96. const windowRatio = document.body.clientWidth / document.body.clientHeight;
  97. let scale = 1;
  98. if (pageRatio > windowRatio) {
  99. // calc width
  100. scale = document.body.clientWidth / layout.width;
  101. } else {
  102. // calc height
  103. scale = document.body.clientHeight / layout.height;
  104. }
  105. this.state.setScale(scale);
  106. }
  107. }