-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathresolveDimensions.js
301 lines (260 loc) Β· 7.86 KB
/
resolveDimensions.js
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
import * as P from '@react-pdf/primitives';
import { isNil, compose } from '@react-pdf/fns';
import getMargin from '../node/getMargin';
import getPadding from '../node/getPadding';
import getPosition from '../node/getPosition';
import getDimension from '../node/getDimension';
import getBorderWidth from '../node/getBorderWidth';
import setDisplay from '../node/setDisplay';
import setOverflow from '../node/setOverflow';
import setFlexWrap from '../node/setFlexWrap';
import setFlexGrow from '../node/setFlexGrow';
import setFlexBasis from '../node/setFlexBasis';
import setAlignSelf from '../node/setAlignSelf';
import setAlignItems from '../node/setAlignItems';
import setFlexShrink from '../node/setFlexShrink';
import setAspectRatio from '../node/setAspectRatio';
import setAlignContent from '../node/setAlignContent';
import setPositionType from '../node/setPositionType';
import setFlexDirection from '../node/setFlexDirection';
import setJustifyContent from '../node/setJustifyContent';
import {
setMarginTop,
setMarginRight,
setMarginBottom,
setMarginLeft,
} from '../node/setMargin';
import {
setPaddingTop,
setPaddingRight,
setPaddingBottom,
setPaddingLeft,
} from '../node/setPadding';
import {
setBorderTop,
setBorderRight,
setBorderBottom,
setBorderLeft,
} from '../node/setBorderWidth';
import {
setPositionTop,
setPositionRight,
setPositionBottom,
setPositionLeft,
} from '../node/setPosition';
import {
setWidth,
setHeight,
setMinWidth,
setMaxWidth,
setMinHeight,
setMaxHeight,
} from '../node/setDimension';
import { setRowGap, setColumnGap } from '../node/setGap';
import measureSvg from '../svg/measureSvg';
import measureText from '../text/measureText';
import measureImage from '../image/measureImage';
import measureCanvas from '../canvas/measureCanvas';
const isType = (type) => (node) => node.type === type;
const isSvg = isType(P.Svg);
const isText = isType(P.Text);
const isNote = isType(P.Note);
const isPage = isType(P.Page);
const isImage = isType(P.Image);
const isCanvas = isType(P.Canvas);
const isTextInstance = isType(P.TextInstance);
const setNodeHeight = (node) => {
const value = isPage(node) ? node.box.height : node.style.height;
return setHeight(value);
};
/**
* Set styles valeus into yoga node before layout calculation
*
* @param {Object} node
* @returns {Object} node
*/
const setYogaValues = (node) => {
compose(
setNodeHeight(node),
setWidth(node.style.width),
setMinWidth(node.style.minWidth),
setMaxWidth(node.style.maxWidth),
setMinHeight(node.style.minHeight),
setMaxHeight(node.style.maxHeight),
setMarginTop(node.style.marginTop),
setMarginRight(node.style.marginRight),
setMarginBottom(node.style.marginBottom),
setMarginLeft(node.style.marginLeft),
setPaddingTop(node.style.paddingTop),
setPaddingRight(node.style.paddingRight),
setPaddingBottom(node.style.paddingBottom),
setPaddingLeft(node.style.paddingLeft),
setPositionType(node.style.position),
setPositionTop(node.style.top),
setPositionRight(node.style.right),
setPositionBottom(node.style.bottom),
setPositionLeft(node.style.left),
setBorderTop(node.style.borderTopWidth),
setBorderRight(node.style.borderRightWidth),
setBorderBottom(node.style.borderBottomWidth),
setBorderLeft(node.style.borderLeftWidth),
setDisplay(node.style.display),
setFlexDirection(node.style.flexDirection),
setAlignSelf(node.style.alignSelf),
setAlignContent(node.style.alignContent),
setAlignItems(node.style.alignItems),
setJustifyContent(node.style.justifyContent),
setFlexWrap(node.style.flexWrap),
setOverflow(node.style.overflow),
setAspectRatio(node.style.aspectRatio),
setFlexBasis(node.style.flexBasis),
setFlexGrow(node.style.flexGrow),
setFlexShrink(node.style.flexShrink),
setRowGap(node.style.rowGap),
setColumnGap(node.style.columnGap),
)(node);
};
/**
* @typedef {Function} InsertYogaNodes
* @param {Object} child child node
* @returns {Object} node
*/
/**
* Inserts child into parent' yoga node
*
* @param {Object} parent parent
* @returns {InsertYogaNodes} insert yoga nodes
*/
const insertYogaNodes = (parent) => (child) => {
parent.insertChild(child.yogaNode, parent.getChildCount());
return child;
};
const setMeasureFunc = (node, page, fontStore) => {
const { yogaNode } = node;
if (isText(node)) {
yogaNode.setMeasureFunc(measureText(page, node, fontStore));
}
if (isImage(node)) {
yogaNode.setMeasureFunc(measureImage(page, node));
}
if (isCanvas(node)) {
yogaNode.setMeasureFunc(measureCanvas(page, node));
}
if (isSvg(node)) {
yogaNode.setMeasureFunc(measureSvg(page, node));
}
return node;
};
const isLayoutElement = (node) =>
!isText(node) && !isNote(node) && !isSvg(node);
/**
* @typedef {Function} CreateYogaNodes
* @param {Object} node
* @returns {Object} node with appended yoga node
*/
/**
* Creates and add yoga node to document tree
* Handles measure function for text and image nodes
*
* @returns {CreateYogaNodes} create yoga nodes
*/
const createYogaNodes = (page, fontStore, yoga) => (node) => {
const yogaNode = yoga.node.create();
const result = Object.assign({}, node, { yogaNode });
setYogaValues(result);
if (isLayoutElement(node) && node.children) {
const resolveChild = compose(
insertYogaNodes(yogaNode),
createYogaNodes(page, fontStore, yoga),
);
result.children = node.children.map(resolveChild);
}
setMeasureFunc(result, page, fontStore);
return result;
};
/**
* Performs yoga calculation
*
* @param {Object} page page node
* @returns {Object} page node
*/
const calculateLayout = (page) => {
page.yogaNode.calculateLayout();
return page;
};
/**
* Saves Yoga layout result into 'box' attribute of node
*
* @param {Object} node
* @returns {Object} node with box data
*/
const persistDimensions = (node) => {
if (isTextInstance(node)) return node;
const box = Object.assign(
getPadding(node),
getMargin(node),
getBorderWidth(node),
getPosition(node),
getDimension(node),
);
const newNode = Object.assign({}, node, { box });
if (!node.children) return newNode;
const children = node.children.map(persistDimensions);
return Object.assign({}, newNode, { children });
};
/**
* Removes yoga node from document tree
*
* @param {Object} node
* @returns {Object} node without yoga node
*/
const destroyYogaNodes = (node) => {
const newNode = Object.assign({}, node);
delete newNode.yogaNode;
if (!node.children) return newNode;
const children = node.children.map(destroyYogaNodes);
return Object.assign({}, newNode, { children });
};
/**
* Free yoga node from document tree
*
* @param {Object} node
* @returns {Object} node without yoga node
*/
const freeYogaNodes = (node) => {
if (node.yogaNode) node.yogaNode.freeRecursive();
return node;
};
/**
* Calculates page object layout using Yoga.
* Takes node values from 'box' and 'style' attributes, and persist them back into 'box'
* Destroy yoga values at the end.
*
* @param {Object} page object
* @returns {Object} page object with correct 'box' layout attributes
*/
export const resolvePageDimensions = (page, fontStore, yoga) => {
if (isNil(page)) return null;
return compose(
destroyYogaNodes,
freeYogaNodes,
persistDimensions,
calculateLayout,
createYogaNodes(page, fontStore, yoga),
)(page);
};
/**
* Calculates root object layout using Yoga.
*
* @param {Object} node root object
* @param {Object} fontStore font store
* @returns {Object} root object with correct 'box' layout attributes
*/
const resolveDimensions = (node, fontStore) => {
if (!node.children) return node;
const resolveChild = (child) =>
resolvePageDimensions(child, fontStore, node.yoga);
const children = node.children.map(resolveChild);
return Object.assign({}, node, { children });
};
export default resolveDimensions;