2023-04-18 17:20:02 -04:00
|
|
|
import {Component} from './component';
|
2019-08-11 15:04:43 -04:00
|
|
|
|
2022-11-16 08:04:22 -05:00
|
|
|
export class WysiwygEditor extends Component {
|
2017-09-23 07:24:06 -04:00
|
|
|
|
2020-07-05 16:18:17 -04:00
|
|
|
setup() {
|
|
|
|
this.elem = this.$el;
|
2024-07-01 05:44:23 -04:00
|
|
|
this.editContainer = this.$refs.editContainer;
|
2024-07-01 10:10:22 -04:00
|
|
|
this.input = this.$refs.input;
|
2020-07-05 16:18:17 -04:00
|
|
|
|
2024-07-04 08:09:53 -04:00
|
|
|
/** @var {SimpleWysiwygEditorInterface|null} */
|
|
|
|
this.editor = null;
|
|
|
|
|
2024-09-22 07:29:06 -04:00
|
|
|
const translations = {
|
|
|
|
...window.editor_translations,
|
|
|
|
imageUploadErrorText: this.$opts.imageUploadErrorText,
|
|
|
|
serverUploadLimitText: this.$opts.serverUploadLimitText,
|
|
|
|
};
|
|
|
|
|
2024-05-27 10:39:41 -04:00
|
|
|
window.importVersioned('wysiwyg').then(wysiwyg => {
|
2024-07-01 10:10:22 -04:00
|
|
|
const editorContent = this.input.value;
|
2024-07-19 07:09:41 -04:00
|
|
|
this.editor = wysiwyg.createPageEditorInstance(this.editContainer, editorContent, {
|
|
|
|
drawioUrl: this.getDrawIoUrl(),
|
|
|
|
pageId: Number(this.$opts.pageId),
|
2024-09-15 11:10:46 -04:00
|
|
|
darkMode: document.documentElement.classList.contains('dark-mode'),
|
|
|
|
textDirection: this.$opts.textDirection,
|
2024-09-22 07:29:06 -04:00
|
|
|
translations,
|
2024-07-19 07:09:41 -04:00
|
|
|
});
|
2024-07-04 08:09:53 -04:00
|
|
|
});
|
|
|
|
|
|
|
|
let handlingFormSubmit = false;
|
|
|
|
this.input.form.addEventListener('submit', event => {
|
|
|
|
if (!this.editor) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!handlingFormSubmit) {
|
|
|
|
event.preventDefault();
|
|
|
|
handlingFormSubmit = true;
|
|
|
|
this.editor.getContentAsHtml().then(html => {
|
|
|
|
this.input.value = html;
|
|
|
|
this.input.form.submit();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
handlingFormSubmit = false;
|
|
|
|
}
|
2023-02-23 07:30:27 -05:00
|
|
|
});
|
2018-04-01 08:21:11 -04:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2023-02-23 07:30:27 -05:00
|
|
|
/**
|
|
|
|
* Get the content of this editor.
|
|
|
|
* Used by the parent page editor component.
|
2024-07-04 08:09:53 -04:00
|
|
|
* @return {Promise<{html: String}>}
|
2023-02-23 07:30:27 -05:00
|
|
|
*/
|
2024-07-04 08:09:53 -04:00
|
|
|
async getContent() {
|
2023-02-23 07:30:27 -05:00
|
|
|
return {
|
2024-07-04 08:09:53 -04:00
|
|
|
html: await this.editor.getContentAsHtml(),
|
2023-02-23 07:30:27 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-04-18 17:20:02 -04:00
|
|
|
}
|