index.ts 2.8 KB

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