Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

211: Revise TypeHints and server side feedback for creation actions #285

Merged
merged 2 commits into from
Sep 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions packages/client/css/glsp-sprotty.css
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,6 @@
.sprotty-edge.selected {
stroke: #1d80d1;
stroke-width: 1.5px;
stroke-dashoffset: 5;
stroke-dasharray: 5, 5;
stroke-linecap: round;
}

.sprotty-edge.mouseover:not(.selected) .arrow,
Expand Down Expand Up @@ -134,6 +131,10 @@
cursor: crosshair;
}

.sprotty .edge-check-pending-mode {
cursor: wait;
}

.sprotty .move-mode {
cursor: move;
}
Expand Down
1 change: 1 addition & 0 deletions packages/client/src/base/feedback/css-feedback.ts
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ export enum CursorCSS {
EDGE_CREATION_SOURCE = 'edge-creation-select-source-mode',
EDGE_CREATION_TARGET = 'edge-creation-select-target-mode',
EDGE_RECONNECT = 'edge-reconnect-select-target-mode',
EDGE_CHECK_PENDING = 'edge-check-pending-mode',
OPERATION_NOT_ALLOWED = 'edge-modification-not-allowed-mode',
ELEMENT_DELETION = 'element-deletion-mode',
RESIZE_NESW = 'resize-nesw-mode',
Expand Down
356 changes: 356 additions & 0 deletions packages/client/src/features/hints/type-hint-provider.spec.ts

Large diffs are not rendered by default.

248 changes: 248 additions & 0 deletions packages/client/src/features/hints/type-hint-provider.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,248 @@
/********************************************************************************
* Copyright (c) 2019-2023 EclipseSource and others.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the Eclipse
* Public License v. 2.0 are satisfied: GNU General Public License, version 2
* with the GNU Classpath Exception which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
********************************************************************************/
import { inject, injectable } from 'inversify';
import {
Action,
CommandExecutionContext,
Connectable,
EdgeTypeHint,
IActionHandler,
RequestTypeHintsAction,
SEdge,
SModelElement,
SModelElementSchema,
SModelRoot,
SRoutableElement,
SShapeElement,
SetTypeHintsAction,
ShapeTypeHint,
TYPES,
TypeHint,
connectableFeature,
deletableFeature,
editFeature,
isConnectable,
moveFeature
} from '~glsp-sprotty';
import { GLSPActionDispatcher } from '../../base/action-dispatcher';
import { IFeedbackActionDispatcher } from '../../base/feedback/feedback-action-dispatcher';
import { FeedbackCommand } from '../../base/feedback/feedback-command';
import { IDiagramStartup } from '../../base/model/diagram-loader';
import { getElementTypeId } from '../../utils/smodel-util';
import { resizeFeature } from '../change-bounds/model';
import { reconnectFeature } from '../reconnect/model';
import { containerFeature, isContainable, reparentFeature } from './model';

/**
* Is dispatched by the {@link TypeHintProvider} to apply the type hints received from the server
* onto the graphical model. The action is dispatched as persistent feedback to ensure the applied type hints
* don't get lost after a server-side model update.
*/
export interface ApplyTypeHintsAction extends Action {
kind: typeof ApplyTypeHintsAction.KIND;
}

export namespace ApplyTypeHintsAction {
export const KIND = 'applyTypeHints';

export function is(object: any): object is ApplyTypeHintsAction {
return Action.hasKind(object, KIND);
}

export function create(): ApplyTypeHintsAction {
return { kind: KIND };
}
}

type CanConnectFn = Connectable['canConnect'];

/**
* Command that processes the entire model and for each model element applies its
* type hints i.e. translates the type hint information into corresponding model features
* and adds/removes them from the model element.
*/
@injectable()
export class ApplyTypeHintsCommand extends FeedbackCommand {
public static KIND = ApplyTypeHintsAction.KIND;
public override readonly priority = 10;

@inject(TYPES.ITypeHintProvider)
protected typeHintProvider: ITypeHintProvider;

constructor(@inject(TYPES.Action) protected action: ApplyTypeHintsAction) {
super();
}

execute(context: CommandExecutionContext): SModelRoot {
context.root.index.all().forEach(element => {
if (element instanceof SShapeElement || element instanceof SModelRoot) {
return this.applyShapeTypeHint(element);
}
if (element instanceof SEdge) {
this.applyEdgeTypeHint(element);
}
});
return context.root;
}

protected applyEdgeTypeHint(element: SModelElement): void {
const hint = this.typeHintProvider.getEdgeTypeHint(element);

if (hint && element.features instanceof Set) {
addOrRemove(element.features, deletableFeature, hint.deletable);
addOrRemove(element.features, editFeature, hint.routable);
addOrRemove(element.features, reconnectFeature, hint.repositionable);
}
}

protected applyShapeTypeHint(element: SModelElement): void {
const hint = this.typeHintProvider.getShapeTypeHint(element);
if (hint && element.features instanceof Set) {
addOrRemove(element.features, deletableFeature, hint.deletable);
addOrRemove(element.features, moveFeature, hint.repositionable);
addOrRemove(element.features, resizeFeature, hint.resizable);
addOrRemove(element.features, reparentFeature, hint.reparentable);

addOrRemove(element.features, containerFeature, true);
if (isContainable(element)) {
element.isContainableElement = input => this.isContainableElement(input, hint);
}

const fallbackCanConnect = isConnectable(element) ? element.canConnect.bind(element) : undefined;
addOrRemove(element.features, connectableFeature, true);
if (isConnectable(element)) {
element.canConnect = (routable, role) => this.canConnect(routable, role, element, fallbackCanConnect);
}
}
}

/**
* Type hints aware wrapper function for `Connectable.canConnect`. After type hints have been applied
* the `canConnect` implementation of `connectable` model elements (with a matching hint) will forward to this method.
*/
protected canConnect(
routable: SRoutableElement,
role: 'source' | 'target',
element: SModelElement,
fallbackCanConnect?: CanConnectFn
): boolean {
const edgeHint = this.typeHintProvider.getEdgeTypeHint(routable.type);
if (!edgeHint) {
return fallbackCanConnect?.(routable, role) ?? false;
}
const validElementIds = role === 'source' ? edgeHint.sourceElementTypeIds : edgeHint.targetElementTypeIds;
// If no source/target element ids are defined in the hint all elements are considered valid
if (!validElementIds) {
return true;
}
const elementType = element.type + ':';
return validElementIds.some(type => elementType.startsWith(type));
}

/**
* Type hints aware wrapper function for `Containable.isContainableElement`. After type hints have been applied
* the `isContainableElement` implementation of `containable` model elements (with a matching hint) will forward to this method.
*/
protected isContainableElement(input: SModelElement | SModelElementSchema | string, hint: ShapeTypeHint): boolean {
const elemenType = getElementTypeId(input) + ':';
return hint.containableElementTypeIds?.some(type => elemenType.startsWith(type)) ?? false;
}
}

function addOrRemove(features: Set<symbol>, feature: symbol, add: boolean): void {
if (add && !features.has(feature)) {
features.add(feature);
} else if (!add && features.has(feature)) {
features.delete(feature);
}
}

/**
* Provides query methods for retrieving the type hint that is applicable for a given model element.
* If there is no type hint registered for the given element type the hint of the most concrete subtype (if any)
* is returned instead. Subtypes are declared with a `:` delimiter.
* For example consider the type `node:task:manual`. Then the provider fist checks wether there is
* a type hint registered for `node:task:manual`. If not it checks wether there is one registered
* for `node:task` and finally it checks wether there is a type hint for `node`.
*/
export interface ITypeHintProvider {
/**
* Retrieve the most applicable {@link ShapeTypeHint} for the given model element.
*
* @param input The model element whose type hint should be retrieved
* @returns The most applicable hint of the given element or `undefined` if no matching hint is registered.
*/
getShapeTypeHint(input: SModelElement | SModelElementSchema | string): ShapeTypeHint | undefined;
/**
* Retrieve the most applicable {@link EdgeTypeHint} for the given model element.
*
* @param input The model element whose type hint should be retrieved
* @returns The most applicable hint of the given element or `undefined` if no matching hint is registered.
*/
getEdgeTypeHint(input: SModelElement | SModelElementSchema | string): EdgeTypeHint | undefined;
}

@injectable()
export class TypeHintProvider implements IActionHandler, ITypeHintProvider, IDiagramStartup {
@inject(TYPES.IFeedbackActionDispatcher)
protected feedbackActionDispatcher: IFeedbackActionDispatcher;

@inject(GLSPActionDispatcher)
protected actionDispatcher: GLSPActionDispatcher;

protected shapeHints: Map<string, ShapeTypeHint> = new Map();
protected edgeHints: Map<string, EdgeTypeHint> = new Map();

handle(action: SetTypeHintsAction): void {
this.shapeHints.clear();
this.edgeHints.clear();
action.shapeHints.forEach(hint => this.shapeHints.set(hint.elementTypeId, hint));
action.edgeHints.forEach(hint => this.edgeHints.set(hint.elementTypeId, hint));
this.feedbackActionDispatcher.registerFeedback(this, [ApplyTypeHintsAction.create()]);
}

getShapeTypeHint(input: SModelElement | SModelElementSchema | string): ShapeTypeHint | undefined {
return this.getTypeHint(input, this.shapeHints);
}

getEdgeTypeHint(input: SModelElement | SModelElementSchema | string): EdgeTypeHint | undefined {
return this.getTypeHint(input, this.edgeHints);
}

protected getTypeHint<T extends TypeHint>(input: SModelElement | SModelElementSchema | string, hints: Map<string, T>): T | undefined {
const type = getElementTypeId(input);
let hint = hints.get(type);
// Check subtypes
if (hint === undefined) {
const subtypes = type.split(':');
while (hint === undefined && subtypes.length > 0) {
subtypes.pop();
hint = hints.get(subtypes.join(':'));
if (hint) {
// add received subtype hint to map to avoid future recomputation
hints.set(type, hint);
break;
}
}
}
return hint;
}

async postRequestModel(): Promise<void> {
const setTypeHintsAction = await this.actionDispatcher.request(RequestTypeHintsAction.create());
this.handle(setTypeHintsAction);
}
}
2 changes: 1 addition & 1 deletion packages/client/src/features/hints/type-hints-module.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
********************************************************************************/
import { FeatureModule, SetTypeHintsAction, TYPES, bindAsService, configureActionHandler, configureCommand } from '~glsp-sprotty';
import { ApplyTypeHintsCommand, TypeHintProvider } from './type-hints';
import { ApplyTypeHintsCommand, TypeHintProvider } from './type-hint-provider';

export const typeHintsModule = new FeatureModule((bind, unbind, isBound) => {
const context = { bind, unbind, isBound };
Expand Down
Loading
Loading