-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathcomputed-bounds-action-handler.ts
More file actions
59 lines (53 loc) · 2.71 KB
/
computed-bounds-action-handler.ts
File metadata and controls
59 lines (53 loc) · 2.71 KB
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
/********************************************************************************
* Copyright (c) 2022-2023 STMicroelectronics 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 { GModelRoot } from '@eclipse-glsp/graph';
import { Action, ComputedBoundsAction, LayoutOperation, MaybePromise } from '@eclipse-glsp/protocol';
import { inject, injectable } from 'inversify';
import { ActionHandler } from '../../actions/action-handler';
import { applyAlignment, applyElementAndBounds, applyRoute } from '../../utils/layout-util';
import { ModelState } from '../model/model-state';
import { ModelSubmissionHandler } from '../model/model-submission-handler';
/**
* Syncs the bounds computed by the client (i.e. the actual bounds after applying CSS styles) back to the `GModel`.
* In this default implementation the updated bounds are stored transient. This means they are applied to the graphical model but
* are not persisted to the source model.
*/
@injectable()
export class ComputedBoundsActionHandler implements ActionHandler {
@inject(ModelSubmissionHandler)
protected submissionHandler: ModelSubmissionHandler;
@inject(ModelState)
protected modelState: ModelState;
actionKinds = [ComputedBoundsAction.KIND];
execute(action: ComputedBoundsAction): MaybePromise<Action[]> {
const model = this.modelState.root;
if (action.revision === model.revision) {
this.applyBounds(model, action);
return this.submissionHandler.submitModelDirectly(
undefined,
LayoutOperation.create([], { canvasBounds: action.canvasBounds, viewport: action.viewport })
);
}
return [];
}
protected applyBounds(root: GModelRoot, action: ComputedBoundsAction): void {
const index = this.modelState.index;
action.bounds.forEach(bounds => applyElementAndBounds(bounds, index));
(action.alignments ?? []).forEach(alignment => applyAlignment(alignment, index));
(action.routes ?? []).forEach(route => applyRoute(route, index));
}
priority?: number | undefined;
}