PHP Classes

File: toastui/src/js/command/setObjectProperties.js

Recommend this page to a friend!
  Classes of Mark de Leon   PHP Document Scanner using SANE or eSCL AirPrint   toastui/src/js/command/setObjectProperties.js   Download  
File: toastui/src/js/command/setObjectProperties.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Document Scanner using SANE or eSCL AirPrint
Web interface to scan printed documents
Author: By
Last change:
Date: 4 years ago
Size: 1,922 bytes
 

Contents

Class file image Download
/** * @author NHN Ent. FE Development Team <dl_javascript@nhn.com> * @fileoverview Set object properties */ import snippet from 'tui-code-snippet'; import commandFactory from '../factory/command'; import Promise from 'core-js/library/es6/promise'; import consts from '../consts'; const {commandNames, rejectMessages} = consts; const command = { name: commandNames.SET_OBJECT_PROPERTIES, /** * Set object properties * @param {Graphics} graphics - Graphics instance * @param {number} id - object id * @param {Object} props - properties * @param {string} [props.fill] Color * @param {string} [props.fontFamily] Font type for text * @param {number} [props.fontSize] Size * @param {string} [props.fontStyle] Type of inclination (normal / italic) * @param {string} [props.fontWeight] Type of thicker or thinner looking (normal / bold) * @param {string} [props.textAlign] Type of text align (left / center / right) * @param {string} [props.textDecoraiton] Type of line (underline / line-throgh / overline) * @returns {Promise} */ execute(graphics, id, props) { const targetObj = graphics.getObject(id); if (!targetObj) { return Promise.reject(rejectMessages.noObject); } this.undoData.props = {}; snippet.forEachOwnProperties(props, (value, key) => { this.undoData.props[key] = targetObj[key]; }); graphics.setObjectProperties(id, props); return Promise.resolve(); }, /** * @param {Graphics} graphics - Graphics instance * @param {number} id - object id * @returns {Promise} */ undo(graphics, id) { const {props} = this.undoData; graphics.setObjectProperties(id, props); return Promise.resolve(); } }; commandFactory.register(command); module.exports = command;