forked from code-farmer-i/vue-markdown-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcreate-editor.js
55 lines (49 loc) · 1.46 KB
/
create-editor.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import Lang from '@/lang/';
import zhCNConfig from '@/lang/zh-CN';
import { commandWrapper } from '@/utils/command';
import { toolbarWrapper } from '@/utils/toolbar';
// mixins
import commonMixin from '@/mixins/common';
import vModelMixin from '@/mixins/v-model';
import fullscreenMixin from '@/mixins/fullscreen';
import uploadImageMixin from '@/mixins/upload-image';
import syncScrollMixin from '@/mixins/sync-scroll';
import toolbarMixin from '@/mixins/toolbar';
import commandMixin from '@/mixins/command';
import tocMixin from '@/mixins/toc';
import scrollMixin from '@/mixins/scroll';
import hotkeysMixin from '@/mixins/hotkeys';
import listMixin from '@/mixins/list';
import langMixin from '@/mixins/lang';
import Preview from '@/preview';
Lang.add({
'zh-CN': zhCNConfig,
});
export default function createEditor(component) {
commandWrapper(component);
toolbarWrapper(component);
component.name = 'v-md-editor';
component.theme = function (themeConfig) {
component.themeConfig = themeConfig;
Preview.theme(themeConfig);
};
component.extendMarkdown = Preview.extendMarkdown;
component.hotkeys = [];
component.hotkey = function (config) {
component.hotkeys.push(config);
};
component.mixins = [
commonMixin,
vModelMixin,
toolbarMixin(component),
commandMixin(component),
hotkeysMixin(component),
fullscreenMixin,
uploadImageMixin,
syncScrollMixin,
tocMixin,
scrollMixin,
listMixin,
langMixin,
];
}