| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127 |
- import { Container } from 'unstated';
- import loggerFactory from '~/utils/logger';
- const logger = loggerFactory('growi:services:EditorContainer');
- /**
- * Service container related to options for Editor/Preview
- * @extends {Container} unstated Container
- */
- export default class EditorContainer extends Container {
- constructor(appContainer) {
- super();
- this.appContainer = appContainer;
- this.appContainer.registerContainer(this);
- this.state = {
- tags: null,
- };
- this.isSetBeforeunloadEventHandler = false;
- this.initDrafts();
- }
- /**
- * Workaround for the mangling in production build to break constructor.name
- */
- static getClassName() {
- return 'EditorContainer';
- }
- /**
- * initialize state for drafts
- */
- initDrafts() {
- this.drafts = {};
- // restore data from localStorage
- const contents = window.localStorage.drafts;
- if (contents != null) {
- try {
- this.drafts = JSON.parse(contents);
- }
- catch (e) {
- window.localStorage.removeItem('drafts');
- }
- }
- if (this.state.pageId == null) {
- const draft = this.findDraft(this.state.path);
- if (draft != null) {
- this.state.markdown = draft;
- }
- }
- }
- setCaretLine(line) {
- const pageEditor = this.appContainer.getComponentInstance('PageEditor');
- if (pageEditor != null) {
- pageEditor.setCaretLine(line);
- }
- }
- focusToEditor() {
- const pageEditor = this.appContainer.getComponentInstance('PageEditor');
- if (pageEditor != null) {
- pageEditor.focusToEditor();
- }
- }
- getCurrentOptionsToSave() {
- const opt = {
- pageTags: this.state.tags,
- };
- return opt;
- }
- // See https://developer.mozilla.org/en-US/docs/Web/API/WindowEventHandlers/onbeforeunload#example
- showUnsavedWarning(e) {
- // Cancel the event
- e.preventDefault();
- // display browser default message
- e.returnValue = '';
- return '';
- }
- disableUnsavedWarning() {
- window.removeEventListener('beforeunload', this.showUnsavedWarning);
- this.isSetBeforeunloadEventHandler = false;
- }
- enableUnsavedWarning() {
- if (!this.isSetBeforeunloadEventHandler) {
- window.addEventListener('beforeunload', this.showUnsavedWarning);
- this.isSetBeforeunloadEventHandler = true;
- }
- }
- clearDraft(path) {
- delete this.drafts[path];
- window.localStorage.setItem('drafts', JSON.stringify(this.drafts));
- }
- clearAllDrafts() {
- window.localStorage.removeItem('drafts');
- }
- saveDraft(path, body) {
- this.drafts[path] = body;
- window.localStorage.setItem('drafts', JSON.stringify(this.drafts));
- }
- findDraft(path) {
- if (this.drafts != null && this.drafts[path]) {
- return this.drafts[path];
- }
- return null;
- }
- }
|