bianjiang 1 年之前
父節點
當前提交
75fc7294e8
共有 1 個文件被更改,包括 31 次插入29 次删除
  1. 31 29
      src/modules/editor/controllers/TextEditorCtrl/index.ts

+ 31 - 29
src/modules/editor/controllers/TextEditorCtrl/index.ts

@@ -51,35 +51,37 @@ export class TextEditorCtrl extends ModuleControl<EditorModule> {
     }
   }
   addCompValueTags(key: string, e: any) {
-    console.log(key, e);
-    // const
-    // ("i s strong u");
-    const keyToTags = {
-      italic: {
-        tag: "<strong>",
-        end: "</strong>",
-      },
-      strikethrough: {
-        tag: "<strong>",
-        end: "</strong>",
-      },
+    // console.log(key, e);
+    // // const
+    // // ("i s strong u");
+    // const keyToTags = {
+    //   italic: {
+    //     tag: "<strong>",
+    //     end: "</strong>",
+    //   },
+    //   strikethrough: {
+    //     tag: "<strong>",
+    //     end: "</strong>",
+    //   },
 
-      bold: {
-        tag: "<strong>",
-        end: "</strong>",
-      },
-      underline: {
-        tag: "<strong>",
-        end: "</strong>",
-      },
-    };
-    const compValue = this.store.currComp.value;
-    console.log(compValue);
-    const blocks = compValue.match(/<p(([\s\S])*?)<\/p>/gi);
-    if (!blocks) {
-      return;
-    }
-    blocks.map((item: string, index: number) => {});
-    console.log(blocks);
+    //   bold: {
+    //     tag: "<strong>",
+    //     end: "</strong>",
+    //   },
+    //   underline: {
+    //     tag: "<strong>",
+    //     end: "</strong>",
+    //   },
+    // };
+    // const compValue = this.store.currComp.value;
+    // console.log(compValue);
+    // const blocks = compValue.match(/<p(([\s\S])*?)<\/p>/gi);
+    // if (!blocks) {
+    //   return;
+    // }
+    // blocks.map((item: string, index: number) => {
+
+    // });
+    // console.log(blocks);
   }
 }