@eclipse-emfcloud/model-manager
Version:
Command-based model editing with undo/redo.
190 lines • 8.84 kB
TypeScript
import { Operation } from 'fast-json-patch';
import { CompoundCommandImpl, MaybePromise, SimpleCommand, SimpleCommandWithResult } from '../core';
/**
* The type of a function that patches a model by direct modification of a working copy.
*
* The function may be synchronous or asynchronous.
* Its return value, if any, will be made available to the client that executes the command.
*
* @param workingCopy a working copy of the model that the function shall modify directly
* @param modelId the ID of the model to update
* @returns a result of the original command execution, if anything useful is to be
* communicated back to the client that executes the command
*/
export type ModelUpdater<K, M extends object = object, R = unknown> = (workingCopy: M, modelId: K) => MaybePromise<R>;
/**
* The type of a function that computes a patch to modify a model.
* The given `model` state must not be altered directly by the function
* but may only be used to compute a patch.
*
* The function may be synchronous or asynchronous.
*
* @param model the model state on which to compute the patch
* @param modelId the ID of the model for which to compute a patch
* @return a patch that when applied to the `model` will effect the required changes
*/
export type ModelPatchFunction<K, M extends object = object> = (model: M, modelId: K) => MaybePromise<Operation[]>;
/**
* The type of a predicate function that determines whether, at the time of its invocation,
* the given `model` is in a state that is valid to update according to the preconditions
* of the model updating function accompanying it.
*
* @param model the model state on which preconditions of its updating are to be tested
* @param modelId the ID of the `model`
* @returns `true` if the update may be performed or a reason string if it must not.
* The reason string is included in the error message should an attempt to execute it be made
* @see {@link ModelUpdater}
* @see {@link createModelUpdaterCommand()}
*/
export type CanExecutePredicate<K, M extends object = object> = (model: M, modelId: K) => MaybePromise<true | string>;
/**
* Options for tuning the behaviour of a {@link PatchCommand}.
* If omitted, all default options are inferred.
*/
export interface PatchCommandOptions<K> {
/**
* How to enforce (or not) preconditions of undo/redo, as implemented by
* `test` operations in the computed JSON Patches computed.
*
* - `'strict'` (the default) will throw an error on precondition failure
* - `'lax'` will simply log precondition failures at debug level
*
* @default 'strict'
*/
preconditionsMode?: 'strict' | 'lax';
/**
* A predicate to test whether the command should be allowed to execute at the time of its invocation.
* If not provided, then the command will be assumed executable.
*
* @default a trivially `true` predicate
*/
canExecute?: CanExecutePredicate<K>;
}
/**
* A {@link SimpleCommand} that executes a Json Patch on a Document.
*
* @template K the type of model ID used by the Model Manager
*/
export declare class PatchCommand<K = string> implements SimpleCommand<K> {
readonly label: string;
modelId: K;
private state;
/**
* The model patch function that I use to compute the model patch to apply.
*/
private readonly modelUpdater;
/**
* The patch generated during execution, used to undo the changes
* that were applied. Will be computed during execution.
*/
private undoPatch;
/**
* The patch generated during execution, used to redo the changes
* that were applied. Will be computed during execution.
*/
private redoPatch;
/**
* Options, if supplied by the client, to tune my behaviour.
*/
private options;
/**
*
* @param label The label of this command.
* @param model The document to patch. This document will be modified when this command is executed/undone/redone.
* @param patch The JSON Patch to apply on the document or (preferred) a function that updates a working copy of the model directly.
* @param [options] The options, if any, to tune the behaviour of the command
*/
constructor(label: string, modelId: K, patch: Operation[] | ModelUpdater<K>, options?: PatchCommandOptions<K>);
/**
* Query whether any preconditions that I may have for viable execution are met.
* On a `true` result, I guarantee that I can effect my changes on the model correctly and completely.
* Otherwise, it is an error to attempt to {@link execute} me.
*
* @param model the model on which I am to be executed
* @param reasonCallback an optional call-back function that will be given the reason
* why the command cannot be executed, in the case that it is not executable
* @returns whether I am able to be executed
*/
canExecute(model: object, reasonCallback?: (reason: string) => unknown): Promise<boolean>;
canUndo(_model: object): boolean;
canRedo(_model: object): boolean;
execute(model: object): Promise<Operation[] | undefined>;
undo(model: object): Operation[] | undefined;
redo(model: object): Operation[] | undefined;
/**
* Query whether I am in some `state`.
*
* @param state a state to query
* @returns whether I am in the given `state`
*/
private inState;
/**
* Apply the given `patch` to a `model` with accounting for the preconditions mode.
*/
private applyPatchWithOptions;
}
export interface MultiPatchEntry<K = string> {
modelId: K;
patch: Operation[];
}
export declare class MultiPatchCommand<K = string> extends CompoundCommandImpl<K> {
constructor(label: string, ...patches: MultiPatchEntry<K>[]);
}
/**
* Create a command that invokes a model updater function at the
* time of its execution to directly modify a model object,
* automatically capturing a JSON Patch for undo/redo.
* Upon successful execution, the `result` property of the returned
* command is set to the return result of the `modelUpdater` function
* that computed the model changes.
*
* @param label a user-presentable label for the command
* @param modelId the ID of the model to be modified
* @param modelUpdater a function that will directly modify a working copy of the model
* @param [options] options, if any, to tune the behaviour of the command
*
* @returns the undoable model updater command with a `result` that is `undefined` until the command
* has been executed
*/
export declare const createModelUpdaterCommandWithResult: <K, M extends object, R>(label: string, modelId: K, modelUpdater: ModelUpdater<K, M, R>, options?: PatchCommandOptions<K>) => SimpleCommandWithResult<K, R>;
/**
* Create a command that invokes a model updater function at the
* time of its execution to directly modify a model object,
* automatically capturing a JSON Patch for undo/redo.
*
* @param label a user-presentable label for the command
* @param modelId the ID of the model to be modified
* @param modelUpdater a function that will directly modify a working copy of the model
* @param [options] options, if any, to tune the behaviour of the command
*
* @returns the undoable model updater command
*/
export declare const createModelUpdaterCommand: <K, M extends object>(label: string, modelId: K, modelUpdater: ModelUpdater<K, M>, options?: PatchCommandOptions<K>) => SimpleCommand<K>;
/**
* Create a command that invokes a model function at the time of
* its execution to compute a JSON Patch to apply to the model.
* The computed patch is then used to modify the model.
*
* @param label a user-presentable label for the command
* @param modelId the ID of the model to be modified
* @param patchFunction a function that will compute the patch to apply
* @param @param [options] options, if any, to tune the behaviour of the command
*
* @returns the undoable model patch command
*/
export declare const createModelPatchCommand: <K, M extends object>(label: string, modelId: K, patchFunction: ModelPatchFunction<K, M>, options?: PatchCommandOptions<K>) => SimpleCommand<K>;
export type JSONCompatible<T> = T extends Array<infer U> ? Array<JSONCompatible<U>> : T extends object ? {
[P in keyof T]: JSONCompatible<T[P]>;
} : T extends undefined ? never : T;
/**
* Transforms an arbitrary Javascript object in place to be JSON compatible.
* The goal is to behave similar to `JSON.parse(JSON.stringify(obj))`.
*
* The following transformations are applied:
* - Removes properties whose value is `undefined`
* - Converts `undefined` array values to `null`
*
* Will throw an error for recursive objects.
*/
export declare const jsonTransform: <T extends object>(obj: T) => JSONCompatible<T>;
//# sourceMappingURL=patch-command.d.ts.map