index.tsx 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. import { initEditor } from "@/modules/editor";
  2. import Viewport from "@/modules/editor/components/Viewport";
  3. import { EditorMode } from "@/modules/editor/typings";
  4. import { useResource } from "@/modules/resource";
  5. import { SelectOneImage } from "@/pages/website/Material2/modal";
  6. import { useAuth } from "@queenjs-modules/auth";
  7. import { defineComponent } from "vue";
  8. export default defineComponent(() => {
  9. const editor = initEditor();
  10. const resource = useResource();
  11. resource.controls.categoryCtrl.init();
  12. const auth = useAuth();
  13. const params = new URLSearchParams(location.hash.split("?")[1]);
  14. editor.actions.switchMode((params.get("mode") || "editPage") as EditorMode);
  15. const prodId = params.get("id");
  16. const isWk = params.get("isWk");
  17. auth.actions.on("getUserInfo:success", () => {
  18. if (prodId) {
  19. const userInfo: any = auth.store.userInfo;
  20. const isSys = userInfo.roles?.includes("system") ? true : false;
  21. if (isWk) {
  22. editor.actions.initWkDesign(prodId);
  23. return;
  24. }
  25. const categories = resource.controls.categoryCtrl.state.categories;
  26. const list: any = categories.find((d: any) => d.type == "h5");
  27. const res = list?.children.find((e: any) => e.name == "平台");
  28. editor.store.setTplCategory(res?.children);
  29. editor.actions.initDesign(prodId, isSys);
  30. } else {
  31. editor.jumpIndexHtml();
  32. }
  33. });
  34. editor.controls.pickCtrl.onPickImage = async (maxCount: number) => {
  35. if (maxCount <= 1) {
  36. const url = await SelectOneImage();
  37. return [url as string];
  38. }
  39. return [];
  40. };
  41. editor.controls.pickCtrl.onPickPack = async () => {
  42. return resource.treeController.selectOnePackScene();
  43. };
  44. return () => <Viewport class="!h-100vh" />;
  45. });