UNPKG

jab-image-editor

Version:
230 lines (204 loc) 7.37 kB
import Colorpicker from './tools/colorpicker'; import Range from './tools/range'; import Submenu from './submenuBase'; import templateHtml from './template/submenu/shape'; import {toInteger, assignmentForDestroy} from '../util'; import {defaultShapeStrokeValus} from '../consts'; import snippet from 'tui-code-snippet'; const SHAPE_DEFAULT_OPTION = { stroke: '#ffbb3b', fill: '', strokeWidth: 3 }; /** * Shape ui class * @class * @ignore */ class Shape extends Submenu { constructor(subMenuElement, {locale, makeSvgIcon, menuBarPosition, usageStatistics}, options) { super(subMenuElement, { locale, name: 'shape', makeSvgIcon, menuBarPosition, templateHtml, usageStatistics }); this.type = null; if (options.range && options.range.value) { options.strokeWidth = options.range.value; } this.options = snippet.extend(SHAPE_DEFAULT_OPTION, options); this._els = { shapeSelectButton: this.selector('.tie-shape-button'), shapeColorButton: this.selector('.tie-shape-color-button'), strokeRange: new Range({ slider: this.selector('.tie-stroke-range'), input: this.selector('.tie-stroke-range-value') }, snippet.extend(defaultShapeStrokeValus, options.range)), fillColorpicker: new Colorpicker( this.selector('.tie-color-fill'), options.fill || '', this.toggleDirection, this.usageStatistics ), strokeColorpicker: new Colorpicker( this.selector('.tie-color-stroke'), options.stroke || '#ffbb3b', this.toggleDirection, this.usageStatistics ) }; this.colorPickerControls.push(this._els.fillColorpicker); this.colorPickerControls.push(this._els.strokeColorpicker); } /** * Destroys the instance. */ destroy() { this._removeEvent(); this._els.strokeRange.destroy(); this._els.fillColorpicker.destroy(); this._els.strokeColorpicker.destroy(); assignmentForDestroy(this); } /** * Add event for shape * @param {Object} actions - actions for shape * @param {Function} actions.changeShape - change shape mode * @param {Function} actions.setDrawingShape - set dreawing shape */ addEvent(actions) { this.eventHandler.shapeTypeSelected = this._changeShapeHandler.bind(this); this.actions = actions; this._els.shapeSelectButton.addEventListener('click', this.eventHandler.shapeTypeSelected); this._els.strokeRange.on('change', this._changeStrokeRangeHandler.bind(this)); this._els.fillColorpicker.on('change', this._changeFillColorHandler.bind(this)); this._els.strokeColorpicker.on('change', this._changeStrokeColorHandler.bind(this)); this._els.fillColorpicker.on('changeShow', this.colorPickerChangeShow.bind(this)); this._els.strokeColorpicker.on('changeShow', this.colorPickerChangeShow.bind(this)); } /** * Remove event * @private */ _removeEvent() { this._els.shapeSelectButton.removeEventListener('click', this.eventHandler.shapeTypeSelected); this._els.strokeRange.off(); this._els.fillColorpicker.off(); this._els.strokeColorpicker.off(); } /** * Set Shape status * @param {Object} options - options of shape status * @param {string} strokeWidth - stroke width * @param {string} strokeColor - stroke color * @param {string} fillColor - fill color */ setShapeStatus({strokeWidth, strokeColor, fillColor}) { this._els.strokeRange.value = strokeWidth; this._els.strokeColorpicker.color = strokeColor; this._els.fillColorpicker.color = fillColor; this.options.stroke = strokeColor; this.options.fill = fillColor; this.options.strokeWidth = strokeWidth; this.actions.setDrawingShape(this.type, {strokeWidth}); } /** * Executed when the menu starts. */ changeStartMode() { this.actions.stopDrawingMode(); } /** * Returns the menu to its default state. */ changeStandbyMode() { this.type = null; this.actions.changeSelectableAll(true); this._els.shapeSelectButton.classList.remove('circle'); this._els.shapeSelectButton.classList.remove('triangle'); this._els.shapeSelectButton.classList.remove('rect'); } /** * set range stroke max value * @param {number} maxValue - expect max value for change */ setMaxStrokeValue(maxValue) { let strokeMaxValue = maxValue; if (strokeMaxValue <= 0) { strokeMaxValue = defaultShapeStrokeValus.max; } this._els.strokeRange.max = strokeMaxValue; } /** * Set stroke value * @param {number} value - expect value for strokeRange change */ setStrokeValue(value) { this._els.strokeRange.value = value; this._els.strokeRange.trigger('change'); } /** * Get stroke value * @returns {number} - stroke range value */ getStrokeValue() { return this._els.strokeRange.value; } /** * Change icon color * @param {object} event - add button event object * @private */ _changeShapeHandler(event) { const button = event.target.closest('.tui-image-editor-button'); if (button) { this.actions.stopDrawingMode(); this.actions.discardSelection(); const shapeType = this.getButtonType(button, ['circle', 'triangle', 'rect']); if (this.type === shapeType) { this.changeStandbyMode(); return; } this.changeStandbyMode(); this.type = shapeType; event.currentTarget.classList.add(shapeType); this.actions.changeSelectableAll(false); this.actions.modeChange('shape'); } } /** * Change stroke range * @param {number} value - stroke range value * @param {boolean} isLast - Is last change * @private */ _changeStrokeRangeHandler(value, isLast) { this.options.strokeWidth = toInteger(value); this.actions.changeShape({ strokeWidth: value }, !isLast); this.actions.setDrawingShape(this.type, this.options); } /** * Change shape color * @param {string} color - fill color * @private */ _changeFillColorHandler(color) { color = color || 'transparent'; this.options.fill = color; this.actions.changeShape({ fill: color }); } /** * Change shape stroke color * @param {string} color - fill color * @private */ _changeStrokeColorHandler(color) { color = color || 'transparent'; this.options.stroke = color; this.actions.changeShape({ stroke: color }); } } export default Shape;