|
@@ -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);
|
|
|
}
|
|
|
}
|