Promotion.tsx 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. import Empty from "@/components/Empty";
  2. import { initEditor } from "@/modules/editor";
  3. import { Design_Page_Size } from "@/modules/editor/dicts/CompOptions";
  4. import { initResource } from "@/modules/resource";
  5. import { cx } from "@linaria/core";
  6. import { isPc } from "@queenjs/utils";
  7. import { defineComponent, provide } from "vue";
  8. export default defineComponent(() => {
  9. const editor = initEditor();
  10. initResource();
  11. const params = new URLSearchParams(location.href.split("?")[1].split("#")[0]);
  12. const id = params.get("id");
  13. const isSys = params.get("isSys");
  14. const isWk = params.get("isWk");
  15. provide("isPreview", true);
  16. editor.actions.switchMode("display");
  17. if (id) {
  18. if (isWk) {
  19. editor.actions.initWkDesign(id);
  20. } else {
  21. editor.actions.initDesign(id, isSys);
  22. }
  23. editor.controls.wxCtrl.setup(window.location.href);
  24. editor.actions.on("initDesign:success", () => {
  25. const data = editor.controls.pageCtrl.designData;
  26. document.title = data.title;
  27. const shareData = {
  28. title: data.title,
  29. link: location.href,
  30. imgUrl: data.thumbnail || "",
  31. desc: data.desc,
  32. };
  33. editor.controls.wxCtrl.setShareData(shareData);
  34. editor.controls.wxCtrl.setShare(shareData);
  35. editor.controls.screenCtrl.applyScreen();
  36. });
  37. }
  38. // fetch("https://restapi.amap.com/v3/ip?key=6f53b2e09f72ad63423b2da6e08b25d7").then(response=>{
  39. // return response.json();
  40. // }).then(data=>{
  41. // console.log(data);
  42. // })
  43. if (!isPc()) {
  44. return () => <editor.components.Preview />;
  45. }
  46. function getPageH() {
  47. const rootPage = editor.controls.pageCtrl.rootPage;
  48. const pageH = rootPage?.layout.size?.[1] || Design_Page_Size[1];
  49. return editor.helper.designToNaturalSize(pageH, {
  50. adaptiveH: true,
  51. });
  52. }
  53. return () => {
  54. const rootPage = editor.controls.pageCtrl.rootPage;
  55. const isPcDesign = rootPage?.value.useFor == "pc";
  56. // pc in mobile
  57. if (isPcDesign && !isPc()) return <Empty />;
  58. // mobile in pc
  59. if (!isPcDesign && isPc()) {
  60. const pegeH = getPageH();
  61. return (
  62. <div class="h-100vh flex items-center justify-center">
  63. <div class="scrollbar !overflow-x-hidden" style={{ height: pegeH }}>
  64. <editor.components.Preview />
  65. </div>
  66. </div>
  67. );
  68. }
  69. // mobile in mobile
  70. return <editor.components.Preview />;
  71. };
  72. });