Browse Source

Merge branch 'dev' of http://124.70.149.18:10880/lianghj/queenshow into spu3d

bianjiang 1 year ago
parent
commit
88199de943

+ 21 - 3
src/modules/editor/components/CompUI/basicUI/Text/component2.tsx

@@ -123,6 +123,7 @@ const EditorComp = defineComponent({
       blurCanceler?.();
     });
     const preHeight = ref<number>(0);
+    const preTag = ref();
     const initHeight = () => {
       const dom: HTMLElement | null = document.querySelector(
         `#editor_${props.compId}`
@@ -220,11 +221,28 @@ const EditorComp = defineComponent({
       selection?.addRange(range);
 
       editorRefVal.model.document.on("change:data", () => {
-        const value = editorRefVal?.getData();
-
+        let value = editorRefVal?.getData();
+        console.log(value);
         if (comp.value.text !== value) {
-          actions.updateCompData(comp, "value.text", value);
+          if (!value) {
+            preTag.value = comp.value.text;
+          }
+          if (!comp.value.text && preTag.value) {
+            const text = value?.replace(/<[^>]+>/g, "");
+            const spanTagReg =
+              /([\s\S]*?<span[\s\S]*?>)([\s\S]*?)(<\/span>[\s\S]*?)/gi;
 
+            value = preTag.value?.replace(spanTagReg, `$1${text}$3`);
+            editorRefVal?.setData(value || "");
+            editorRefVal?.focus();
+            const selection = window.getSelection();
+            nextTick(() => {
+              if (selection?.focusNode) {
+                selection?.setPosition(selection?.focusNode, text?.length);
+              }
+            });
+          }
+          actions.updateCompData(comp, "value.text", value);
           nextTick(() => {
             const element = editorRefVal?.ui.view.editable.element || null;
             if (!element) {

+ 3 - 0
src/modules/editor/components/CompUI/basicUI/View.tsx

@@ -114,6 +114,9 @@ export const View = defineComponent({
         style.overflow = "unset";
         style.position = "relative";
       }
+      if (store.isPreview) {
+        style.overflow = "hidden";
+      }
 
       const aniStyles = getAniStyles(comp);
 

+ 32 - 13
src/modules/editor/components/Viewport/Header/PreviewDesignModal.tsx

@@ -6,7 +6,7 @@ import { Button, Dropdown } from "ant-design-vue";
 import { cloneDeep } from "lodash";
 import Modal from "queenjs/adapter/vue/components/modal";
 import { defineComponent, nextTick, provide, ref } from "vue";
-import { any } from "vue-types";
+import { any, string } from "vue-types";
 import { ShareBox } from "./ShareBox";
 
 const NotFoundComp = () => <div>无效的组件</div>;
@@ -14,8 +14,10 @@ const NotFoundComp = () => <div>无效的组件</div>;
 export default defineComponent({
   props: {
     data: any(),
+    previewType: string<"tpl" | "edit">().def("edit"),
   },
-  setup(props) {
+  emits: ["click"],
+  setup(props, { emit }) {
     const editor = initEditor();
     const { store, helper, controls } = editor;
     const page = controls.pageCtrl;
@@ -93,7 +95,9 @@ export default defineComponent({
       return (
         <>
           <div ref={compRef} style={pageStyles} class="overflow-hidden">
-            <div class={["page", isShort && "swiper-wrapper relative "]}>
+            <div
+              class={["page select-none", isShort && "swiper-wrapper relative"]}
+            >
               {controls.pageCtrl.streamCardIds.map((item) => {
                 const c = helper.findComp(item) as DesignComp;
                 const Comp =
@@ -124,7 +128,9 @@ export default defineComponent({
     };
 
     return () => {
-      const { data } = props;
+      const { data, previewType } = props;
+
+      const isTpl = previewType == "tpl";
 
       return (
         <div class="h-100vh flex flex-col bg-[#0B0B0B] overflow-hidden">
@@ -135,16 +141,29 @@ export default defineComponent({
             >
               <IconExit class="text-20px mr-5px" /> 退出预览
             </Button>
-            {/* <span class="text-14px select-none">{data.title}</span> */}
-            {/* <Dropdown
-              overlay={<ShareBox />}
-              trigger="click"
-              placement="bottomRight"
-            >
-              <Button class="text-dark-500 hover:text-dark-500" type="primary">
-                分享
+            <span class="text-14px select-none">{data.title}</span>
+            {isTpl ? (
+              <Button
+                class="text-dark-500 hover:text-dark-500"
+                type="primary"
+                onClick={() => emit("click")}
+              >
+                使用模板
               </Button>
-            </Dropdown> */}
+            ) : (
+              <Dropdown
+                overlay={<ShareBox />}
+                trigger="click"
+                placement="bottomRight"
+              >
+                <Button
+                  class="text-dark-500 hover:text-dark-500"
+                  type="primary"
+                >
+                  分享
+                </Button>
+              </Dropdown>
+            )}
           </div>
           <div
             ref={pageRef}

+ 14 - 8
src/modules/editor/components/Viewport/Slider/SliderLeft/Templates/index.tsx

@@ -1,13 +1,14 @@
 import { IconPreview } from "@/assets/icons";
 import Empty from "@/components/Empty";
 import { useEditor } from "@/modules/editor";
+import { DesignTemp } from "@/modules/editor/objects/DesignTemp";
 import { useResource } from "@/modules/resource";
 import { Image, Loadmore } from "@queenjs/ui";
 import { defineUI, queenApi } from "queenjs";
 import Modal from "queenjs/adapter/vue/components/modal";
 import { Container, Draggable } from "vue-dndrop";
+import PreviewDesignModal from "../../../Header/PreviewDesignModal";
 import ListFilter from "../ListFilter";
-import PreviewTplModal from "./PreviewTplModal";
 
 export default defineUI({
   setup() {
@@ -17,19 +18,23 @@ export default defineUI({
     ctrl.hasLimit = true;
     ctrl.loadPage(1);
 
-    const preview = (record: any) => {
+    const preview = async (record: any) => {
+      const frameData = await editor.https.getDesignDetail(record._id, {
+        isSys: true,
+      });
+      const result = new DesignTemp(frameData.result);
       queenApi.dialog(
-        <PreviewTplModal
-          data={record}
+        <PreviewDesignModal
+          data={result}
+          previewType="tpl"
           onClick={async () => {
             await editor.actions.clickTplToDesign(record);
             Modal.clear();
           }}
-        ></PreviewTplModal>,
+        />,
         {
-          width: "1000px",
-          title: "模板预览",
-          destroyOnClose: true,
+          fullscreen: true,
+          closable: false,
         }
       );
     };
@@ -41,6 +46,7 @@ export default defineUI({
       };
       ctrl.loadPage(1);
     };
+
     return () => {
       const dataSource = ctrl.state.list;
       return (

+ 2 - 2
src/modules/editor/module/actions/edit.tsx

@@ -1,14 +1,14 @@
-import { useCtx } from "@/comm/ctx";
 import { pick, set } from "lodash";
 import { Exception, queenApi } from "queenjs";
 import { EditorModule } from "..";
 import { ScreenshotCtrl } from "../../controllers/ScreenshotCtrl";
 import { CompObject } from "../../controllers/SelectCtrl/compObj";
 import { Matrix } from "../../controllers/SelectCtrl/matrix";
+import { DesignTemp } from "../../objects/DesignTemp";
 import { DesignComp } from "../../objects/DesignTemp/DesignComp";
 import { cloneObj, createObj, history } from "../../objects/DesignTemp/factory";
 import { ICompKeys } from "../../typings";
-import { DesignTemp } from "../../objects/DesignTemp";
+import { useCtx } from "@/comm/ctx";
 
 const ctrlState = {
   selected: [] as string[],