/**
* Storage.js
*
* Released under LGPL License.
* Copyright (c) 1999-2017 Ephox Corp. All rights reserved
*
* License: http://www.tinymce.com/license
* Contributing: http://www.tinymce.com/contributing
*/
import LocalStorage from 'tinymce/core/api/util/LocalStorage';
import Tools from 'tinymce/core/api/util/Tools';
import Events from '../api/Events';
import Settings from '../api/Settings';
const isEmpty = function (editor, html?) {
const forcedRootBlockName = editor.settings.forced_root_block;
html = Tools.trim(typeof html === 'undefined' ? editor.getBody().innerHTML : html);
return html === '' || new RegExp(
'^<' + forcedRootBlockName + '[^>]*>((\u00a0| |[ \t]|
]*>)+?|)<\/' + forcedRootBlockName + '>|
$', 'i'
).test(html);
};
const hasDraft = function (editor) {
const time = parseInt(LocalStorage.getItem(Settings.getAutoSavePrefix(editor) + 'time'), 10) || 0;
if (new Date().getTime() - time > Settings.getAutoSaveRetention(editor)) {
removeDraft(editor, false);
return false;
}
return true;
};
const removeDraft = function (editor, fire?) {
const prefix = Settings.getAutoSavePrefix(editor);
LocalStorage.removeItem(prefix + 'draft');
LocalStorage.removeItem(prefix + 'time');
if (fire !== false) {
Events.fireRemoveDraft(editor);
}
};
const storeDraft = function (editor) {
const prefix = Settings.getAutoSavePrefix(editor);
if (!isEmpty(editor) && editor.isDirty()) {
LocalStorage.setItem(prefix + 'draft', editor.getContent({ format: 'raw', no_events: true }));
LocalStorage.setItem(prefix + 'time', new Date().getTime().toString());
Events.fireStoreDraft(editor);
}
};
const restoreDraft = function (editor) {
const prefix = Settings.getAutoSavePrefix(editor);
if (hasDraft(editor)) {
editor.setContent(LocalStorage.getItem(prefix + 'draft'), { format: 'raw' });
Events.fireRestoreDraft(editor);
}
};
const startStoreDraft = function (editor, started) {
const interval = Settings.getAutoSaveInterval(editor);
if (!started.get()) {
setInterval(function () {
if (!editor.removed) {
storeDraft(editor);
}
}, interval);
started.set(true);
}
};
const restoreLastDraft = function (editor) {
editor.undoManager.transact(function () {
restoreDraft(editor);
removeDraft(editor);
});
editor.focus();
};
export default {
isEmpty,
hasDraft,
removeDraft,
storeDraft,
restoreDraft,
startStoreDraft,
restoreLastDraft
};