2022-02-05 18:15:58 -05:00
|
|
|
import {build as buildEditorConfig} from "../wysiwyg/config";
|
2019-08-11 15:04:43 -04:00
|
|
|
|
2017-09-23 07:24:06 -04:00
|
|
|
class WysiwygEditor {
|
|
|
|
|
2020-07-05 16:18:17 -04:00
|
|
|
setup() {
|
|
|
|
this.elem = this.$el;
|
|
|
|
|
|
|
|
this.pageId = this.$opts.pageId;
|
|
|
|
this.textDirection = this.$opts.textDirection;
|
2020-04-11 10:48:08 -04:00
|
|
|
this.isDarkMode = document.documentElement.classList.contains('dark-mode');
|
2018-04-01 08:21:11 -04:00
|
|
|
|
2022-02-05 18:15:58 -05:00
|
|
|
this.tinyMceConfig = buildEditorConfig({
|
2022-02-06 16:17:08 -05:00
|
|
|
language: this.$opts.language,
|
2022-02-05 18:15:58 -05:00
|
|
|
containerElement: this.elem,
|
|
|
|
darkMode: this.isDarkMode,
|
|
|
|
textDirection: this.textDirection,
|
|
|
|
drawioUrl: this.getDrawIoUrl(),
|
|
|
|
pageId: Number(this.pageId),
|
|
|
|
translations: {
|
|
|
|
imageUploadErrorText: this.$opts.imageUploadErrorText,
|
|
|
|
serverUploadLimitText: this.$opts.serverUploadLimitText,
|
2022-02-06 16:17:08 -05:00
|
|
|
},
|
|
|
|
translationMap: window.editor_translations,
|
2022-02-05 18:15:58 -05:00
|
|
|
});
|
2018-04-01 08:21:11 -04:00
|
|
|
|
2020-07-05 16:18:17 -04:00
|
|
|
window.$events.emitPublic(this.elem, 'editor-tinymce::pre-init', {config: this.tinyMceConfig});
|
2018-04-01 08:21:11 -04:00
|
|
|
window.tinymce.init(this.tinyMceConfig);
|
|
|
|
}
|
|
|
|
|
2022-02-05 18:15:58 -05:00
|
|
|
getDrawIoUrl() {
|
2020-04-05 12:27:16 -04:00
|
|
|
const drawioUrlElem = document.querySelector('[drawio-url]');
|
|
|
|
if (drawioUrlElem) {
|
2022-02-05 18:15:58 -05:00
|
|
|
return drawioUrlElem.getAttribute('drawio-url');
|
2018-04-01 08:21:11 -04:00
|
|
|
}
|
2022-02-05 18:15:58 -05:00
|
|
|
return '';
|
2017-09-23 07:24:06 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-11-09 16:17:35 -05:00
|
|
|
export default WysiwygEditor;
|