-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
/
LayoutStrategy.ts
116 lines (109 loc) · 3.58 KB
/
LayoutStrategy.ts
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
import { Point } from '../../Point';
import type { FabricObject } from '../../shapes/Object/FabricObject';
import { makeBoundingBoxFromPoints } from '../../util/misc/boundingBoxFromPoints';
import { resolveOrigin } from '../../util/misc/resolveOrigin';
import {
LAYOUT_TYPE_INITIALIZATION,
LAYOUT_TYPE_IMPERATIVE,
} from '../constants';
import type {
InitializationLayoutContext,
LayoutStrategyResult,
StrictLayoutContext,
} from '../types';
import { getObjectBounds } from './utils';
/**
* Exposes a main public method {@link calcLayoutResult} that is used by the `LayoutManager` to perform layout.
* Returning `undefined` signals the `LayoutManager` to skip the layout.
*
* In charge of calculating the bounding box of the passed objects.
*/
export abstract class LayoutStrategy {
/**
* override by subclass for persistence (TS does not support `static abstract`)
*/
static type = 'strategy';
/**
* Used by the `LayoutManager` to perform layout
* @returns layout result **OR** `undefined` to skip layout
*/
public calcLayoutResult(
context: StrictLayoutContext,
objects: FabricObject[]
): LayoutStrategyResult | undefined {
if (this.shouldPerformLayout(context)) {
return this.calcBoundingBox(objects, context);
}
}
shouldPerformLayout(context: StrictLayoutContext) {
return (
context.type === LAYOUT_TYPE_INITIALIZATION ||
context.type === LAYOUT_TYPE_IMPERATIVE ||
(!!context.prevStrategy && context.strategy !== context.prevStrategy)
);
}
shouldLayoutClipPath({ type, target: { clipPath } }: StrictLayoutContext) {
return (
type !== LAYOUT_TYPE_INITIALIZATION &&
clipPath &&
!clipPath.absolutePositioned
);
}
getInitialSize(
context: StrictLayoutContext & InitializationLayoutContext,
result: Pick<LayoutStrategyResult, 'center' | 'size'>
) {
return result.size;
}
/**
* Override this method to customize layout.
*/
calcBoundingBox(
objects: FabricObject[],
context: StrictLayoutContext
): LayoutStrategyResult | undefined {
if (context.type === LAYOUT_TYPE_IMPERATIVE && context.overrides) {
return context.overrides;
}
if (objects.length === 0) {
return;
}
const { target } = context;
const { left, top, width, height } = makeBoundingBoxFromPoints(
objects
.map((object) => getObjectBounds(target, object))
.reduce<Point[]>((coords, curr) => coords.concat(curr), [])
);
const bboxSize = new Point(width, height);
const bboxLeftTop = new Point(left, top);
const bboxCenter = bboxLeftTop.add(bboxSize.scalarDivide(2));
if (context.type === LAYOUT_TYPE_INITIALIZATION) {
const actualSize = this.getInitialSize(context, {
size: bboxSize,
center: bboxCenter,
});
const originFactor = new Point(
-resolveOrigin(target.originX),
-resolveOrigin(target.originY)
);
const sizeCorrection = actualSize
.subtract(bboxSize)
.multiply(originFactor);
// translate the layout origin from left top to target's origin
const center = bboxLeftTop.add(bboxSize.multiply(originFactor));
return {
// in `initialization` we do not account for target's transformation matrix
center: center.add(sizeCorrection),
relativeCorrection: center.subtract(bboxCenter),
size: actualSize,
};
} else {
// we send `relativeCenter` up to group's containing plane
const center = bboxCenter.transform(target.calcOwnMatrix());
return {
center,
size: bboxSize,
};
}
}
}