瀏覽代碼

comp text

bianjiang 1 年之前
父節點
當前提交
ed37a8fee4

+ 2 - 2
src/modules/editor/components/Viewport/Slider/SliderRight/CompTree.tsx

@@ -208,9 +208,9 @@ const CompNode = defineComponent({
   setup(props) {
     const editor = useEditor();
     const comp = editor.helper.findComp(props.id);
-    const textTitle = (value: string) => {
+    const textTitle = (value: any) => {
       const reg = /<[^>]+>/gi;
-      const text = value.replace(reg, "");
+      const text = value.text.replace(reg, "");
       return text.substring(0, 10);
     };
     return () => {

+ 4 - 8
src/modules/editor/controllers/TextEditorCtrl/index.ts

@@ -41,11 +41,7 @@ export class TextEditorCtrl extends ModuleControl<EditorModule> {
         pTagReg,
         `$1$3${alink}$4`
       );
-      this.actions.updateCompData(
-        this.store.currComp,
-        "value",
-        blocks.join("")
-      );
+      this.store.currComp.value.setText(blocks.join(""));
       return;
     }
     const editor = toRaw(this.state.currEditor);
@@ -77,8 +73,8 @@ export class TextEditorCtrl extends ModuleControl<EditorModule> {
 
       blocks[index] = stylesStr;
     });
-    this.store.currComp.value.setText( blocks.join("") )
-    
+    this.store.currComp.value.setText(blocks.join(""));
+
     history.submit();
     console.log("changing....");
   }
@@ -156,7 +152,7 @@ export class TextEditorCtrl extends ModuleControl<EditorModule> {
       blocks[index] = this.formatSortTags(spanStr, key, e);
     });
 
-    this.store.currComp.value.setText(blocks.join("") );
+    this.store.currComp.value.setText(blocks.join(""));
     history.submit();
     console.log("changing....");
   }