UNPKG

jodit

Version:

Jodit is an awesome and useful wysiwyg editor with filebrowser

24 lines (23 loc) 1.02 kB
/*! * Jodit Editor (https://xdsoft.net/jodit/) * Released under MIT see LICENSE.txt in the project root for license information. * Copyright (c) 2013-2025 Valeriy Chupurnov. All rights reserved. https://xdsoft.net */ import { STATUSES } from "../../component/statuses.js"; import { isViewObject } from "../../helpers/checker/is-view-object.js"; export function persistent(target, propertyKey) { target.hookStatus(STATUSES.ready, (component) => { const jodit = isViewObject(component) ? component : component.jodit, storageKey = `${jodit.options.namespace}${component.componentName}_prop_${propertyKey}`, initialValue = component[propertyKey]; Object.defineProperty(component, propertyKey, { get() { var _a; return (_a = jodit.storage.get(storageKey)) !== null && _a !== void 0 ? _a : initialValue; }, set(value) { jodit.storage.set(storageKey, value); } }); }); }