@univerjscoreinterfacesImulticommand

@univerjs/core v0.5.0-beta.1Docs


Interface: IMultiCommand<P, R>

A command that may have multiple implementations. Each implementation should have different priority and preconditions callback to determine which implementation should be executed.

Extends

Type Parameters

Type ParameterDefault type
P extends objectobject
Rboolean

Properties

PropertyModifierTypeDescriptionInherited fromDefined in
idreadonlystringIdentifier of the command. It should be unique in the application unless it is a IMultiCommand. Its pattern should be like <namespace>.<type>.<command-name>. Example { id: 'sheet.command.set-selection-frozen' }ICommand.idpackages/api/tmp/univer-pro/submodules/univer/packages/core/src/services/command/command.service.ts:66
namepublicstringThe name of the multi command. It should be unique in the application.-packages/api/tmp/univer-pro/submodules/univer/packages/core/src/services/command/command.service.ts:88
preconditions?public(contextService: IContextService) => booleanA callback function that tells ICommandService if this implementation should be executed.-packages/api/tmp/univer-pro/submodules/univer/packages/core/src/services/command/command.service.ts:98
prioritypublicnumberPriority of this implementation. Implementation with higher priority will be checked first.-packages/api/tmp/univer-pro/submodules/univer/packages/core/src/services/command/command.service.ts:92
typereadonlyCommandTypeThe type of the command.ICommand.typepackages/api/tmp/univer-pro/submodules/univer/packages/core/src/services/command/command.service.ts:70

Methods

handler()

handler(
   accessor, 
   params?, 
options?): R | Promise<R>

The handler of the command.

Parameters

ParameterTypeDescription
accessorIAccessorThe accessor to the dependency injection container.
params?PParams of the command. Params should be serializable.
options?IExecutionOptionsOptions of the command.

Returns

R | Promise<R>

The result of the command. By default it should be a boolean value which indicates the command is executed successfully or not.

Inherited from

ICommand.handler

Defined in

packages/api/tmp/univer-pro/submodules/univer/packages/core/src/services/command/command.service.ts:79