UNPKG

tui-image-editor.upgrade

Version:
43 lines (34 loc) 1.1 kB
/** * @author NHN Ent. FE Development Team <dl_javascript@nhnent.com> * @fileoverview Remove a filter from an image */ import commandFactory from '../factory/command'; import consts from '../consts'; const {componentNames, commandNames} = consts; const {FILTER} = componentNames; const command = { name: commandNames.REMOVE_FILTER, /** * Remove a filter from an image * @param {Graphics} graphics - Graphics instance * @param {string} type - Filter type * @returns {Promise} */ execute(graphics, type) { const filterComp = graphics.getComponent(FILTER); this.undoData.options = filterComp.getOptions(type); return filterComp.remove(type); }, /** * @param {Graphics} graphics - Graphics instance * @param {string} type - Filter type * @returns {Promise} */ undo(graphics, type) { const filterComp = graphics.getComponent(FILTER); const {options} = this.undoData; return filterComp.add(type, options); } }; commandFactory.register(command); module.exports = command;