Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | 1x 69x 69x 69x 69x 69x 69x 1x 12x 12x 11x 1x 1x 12x 1x 3x 1x 1x 69x 1x | /*! * VisualEditor UserInterface Command class. * * @copyright See AUTHORS.txt */ /** * Command that executes an action. * * @class * * @constructor * @param {string} name Symbolic name for the command * @param {string} action Action to execute when command is triggered * @param {string} method Method to call on action when executing * @param {Object} [options] * @param {string[]|null} [options.supportedSelections] List of supported selection types, or null for all * @param {Array} [options.args] Additional arguments to pass to the action when executing */ ve.ui.Command = function VeUiCommand( name, action, method, options ) { options = options || {}; this.name = name; this.action = action; this.method = method; this.supportedSelections = options.supportedSelections || null; this.args = options.args || []; }; /* Methods */ /** * Execute command on a surface. * * @param {ve.ui.Surface} surface Surface to execute command on * @param {Array} [args] Custom arguments to override defaults * @param {string} [source] Label for the source of the command. * One of 'trigger', 'sequence', 'tool', or 'context' * @return {boolean} Command was executed */ ve.ui.Command.prototype.execute = function ( surface, args, source ) { args = args || this.args; if ( this.isExecutable( surface.getModel().getFragment() ) ) { return surface.executeWithSource( this.action, this.method, source, ...args ); } else { return false; } }; /** * Check if this command is executable on a given surface fragment * * @param {ve.dm.SurfaceFragment} fragment Surface fragment * @return {boolean} The command can execute on this fragment */ ve.ui.Command.prototype.isExecutable = function ( fragment ) { return !this.supportedSelections || this.supportedSelections.indexOf( fragment.getSelection().getName() ) !== -1; }; /** * Get command action. * * @return {string} action Action to execute when command is triggered */ ve.ui.Command.prototype.getAction = function () { return this.action; }; /** * Get command method. * * @return {string} method Method to call on action when executing */ ve.ui.Command.prototype.getMethod = function () { return this.method; }; /** * Get command name. * * @return {string} name The symbolic name of the command. */ ve.ui.Command.prototype.getName = function () { return this.name; }; /** * Get command arguments. * * @return {Array} args Additional arguments to pass to the action when executing */ ve.ui.Command.prototype.getArgs = function () { return this.args; }; |