-
Notifications
You must be signed in to change notification settings - Fork 122
/
App.tsx
429 lines (391 loc) · 12.2 KB
/
App.tsx
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
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
import * as React from "react";
import { useState } from "react";
import Navigation from "./Navigation";
import NodeList from "./NodeList";
import LibraryPage from "./LibraryPage";
import StylesPage from "./StylesPage";
import PreloaderCSS from "./PreloaderCSS";
import EmptyState from "./EmptyState";
import Panel from "./Panel";
import BulkErrorList from "./BulkErrorList";
import "../styles/figma.ds.css";
import "../styles/ui.css";
import "../styles/empty-state.css";
import "react-tooltip/dist/react-tooltip.css";
const App = ({}) => {
const [errorArray, setErrorArray] = useState([]);
const [activePage, setActivePage] = useState("page");
const [ignoredErrorArray, setIgnoreErrorArray] = useState([]);
const [activeError, setActiveError] = React.useState({});
const [selectedNode, setSelectedNode] = React.useState({});
const [isVisible, setIsVisible] = React.useState(false);
const [nodeArray, setNodeArray] = useState([]);
const [selectedListItems, setSelectedListItem] = React.useState([]);
const [activeNodeIds, setActiveNodeIds] = React.useState([]);
const [borderRadiusValues, setBorderRadiusValues] = useState([
0,
2,
4,
8,
16,
24,
32
]);
const [lintVectors, setLintVectors] = useState(false);
const [initialLoad, setInitialLoad] = React.useState(false);
const [emptyState, setEmptyState] = React.useState(false);
const [libraries, setLibraries] = useState([]);
const [localStyles, setLocalStyles] = useState({});
const [stylesInUse, setStylesInUse] = useState({});
const librariesRef = React.useRef([]);
const activePageRef = React.useRef(activePage);
window.addEventListener("keydown", function(e) {
if (e.key === "Escape") {
// Close plugin when pressing Escape
window.parent.postMessage({ pluginMessage: { type: "close" } }, "*");
}
});
const updateSelectedList = id => {
setSelectedListItem(selectedListItems => {
selectedListItems.splice(0, selectedListItems.length);
return selectedListItems.concat(id);
});
setActiveNodeIds(activeNodeIds => {
if (activeNodeIds.includes(id)) {
// Remove this node if it exists in the array already from intial run.
// Don't ignore it if there's only one layer total.
if (activeNodeIds.length !== 1) {
return activeNodeIds.filter(activeNodeId => activeNodeId !== id);
} else {
return activeNodeIds;
}
}
// Since the ID is not already in the list, we want to add it
return activeNodeIds.concat(id);
});
};
const updateNavigation = page => {
setActivePage(page);
parent.postMessage(
{
pluginMessage: {
type: "update-active-page-in-settings",
page: page
}
},
"*"
);
};
const handleUpdateLibraries = updatedLibraries => {
setLibraries(updatedLibraries);
};
const updateActiveError = error => {
setActiveError(error);
};
const ignoreAll = errors => {
setIgnoreErrorArray(ignoredErrorArray => [...ignoredErrorArray, ...errors]);
};
const updateIgnoredErrors = error => {
if (ignoredErrorArray.some(e => e.node.id === error.node.id)) {
if (ignoredErrorArray.some(e => e.value === error.value)) {
return;
} else {
setIgnoreErrorArray([error].concat(ignoredErrorArray));
}
} else {
setIgnoreErrorArray([error].concat(ignoredErrorArray));
}
};
const updateBorderRadius = value => {
let borderArray = [...borderRadiusValues, value];
setBorderRadiusValues([...borderRadiusValues, value]);
parent.postMessage(
{
pluginMessage: {
type: "update-border-radius",
radiusValues: borderArray
}
},
"*"
);
parent.postMessage(
{
pluginMessage: {
type: "update-errors",
libraries: librariesRef.current
}
},
"*"
);
};
const updateErrorArray = errors => {
setErrorArray(errors);
};
const updateVisible = val => {
setIsVisible(val);
};
const updateLintRules = boolean => {
setLintVectors(boolean);
parent.postMessage(
{
pluginMessage: {
type: "update-lint-rules-from-settings",
boolean: boolean
}
},
"*"
);
};
function updateVisibility() {
if (isVisible === true) {
setIsVisible(false);
} else {
setIsVisible(true);
}
}
React.useEffect(() => {
// Update client storage so the next time we run the app
// we don't have to ignore our errors again.
if (initialLoad !== false && ignoredErrorArray.length) {
parent.postMessage(
{
pluginMessage: {
type: "update-storage",
storageArray: ignoredErrorArray
}
},
"*"
);
}
}, [ignoredErrorArray]);
const onRunApp = React.useCallback(() => {
parent.postMessage(
{
pluginMessage: {
type: "run-app",
lintVectors: lintVectors,
selection: "user"
}
},
"*"
);
}, []);
const onScanEntirePage = React.useCallback(() => {
parent.postMessage(
{
pluginMessage: {
type: "run-app",
lintVectors: lintVectors,
selection: "page"
}
},
"*"
);
}, []);
// We need to always be able to access this set of arrays
// in order to provide it to the linting array for magic fixes.
React.useEffect(() => {
librariesRef.current = libraries;
}, [libraries]);
React.useEffect(() => {
activePageRef.current = activePage;
}, [activePage]);
React.useEffect(() => {
onRunApp();
window.onmessage = event => {
const { type, message, errors, storage } = event.data.pluginMessage;
if (type === "show-preloader") {
setEmptyState(false);
} else if (type === "show-empty-state") {
setEmptyState(true);
} else if (type === "step-1") {
// Lint the very first selected node.
let nodeObject = JSON.parse(message);
setNodeArray(nodeObject);
updateErrorArray(errors);
// Set this node as selected in the side menu
setSelectedListItem(selectedListItems => {
selectedListItems.splice(0, selectedListItems.length);
return selectedListItems.concat(nodeObject[0].id);
});
setActiveNodeIds(activeNodeIds => {
return activeNodeIds.concat(nodeObject[0].id);
});
// Fetch the properties of the first layers within our selection
// And select them in Figma.
parent.postMessage(
{
pluginMessage: {
type: "step-2",
id: nodeObject[0].id,
nodeArray: nodeObject
}
},
"*"
);
} else if (type === "step-2-complete") {
// Grabs the properties of the first layer to display in our UI.
setSelectedNode(() => JSON.parse(message));
// After we have the first node, we want to
// lint the all the remaining nodes/layers in our original selection.
parent.postMessage(
{
pluginMessage: {
type: "step-3",
libraries: librariesRef.current
}
},
"*"
);
} else if (type === "step-3-complete") {
// Once all layers are linted, we update the error array.
updateErrorArray(errors);
setInitialLoad(true);
} else if (type === "fetched storage") {
let clientStorage = JSON.parse(storage);
setIgnoreErrorArray(ignoredErrorArray => [
...ignoredErrorArray,
...clientStorage
]);
} else if (type === "fetched active page") {
let clientStorage = JSON.parse(storage);
setActivePage(clientStorage);
} else if (type === "fetched border radius") {
// Update border radius values from storage
let clientStorage = JSON.parse(storage);
// Sort the array first
clientStorage = clientStorage.sort((a, b) => a - b);
setBorderRadiusValues([...clientStorage]);
} else if (type === "reset storage") {
// let clientStorage = JSON.parse(storage);
setIgnoreErrorArray([]);
parent.postMessage(
{
pluginMessage: {
type: "update-errors",
libraries: librariesRef.current
}
},
"*"
);
} else if (type === "fetched layer") {
setSelectedNode(() => JSON.parse(message));
// Ask the controller to lint the layers for errors.
parent.postMessage(
{
pluginMessage: {
type: "update-errors",
libraries: librariesRef.current
}
},
"*"
);
} else if (type === "change") {
// Document Changed
parent.postMessage(
{
pluginMessage: {
type: "update-errors",
libraries: librariesRef.current
}
},
"*"
);
// When a change happens and the styles page is active
// We update the styles as the user makes changes
if (activePageRef.current === "styles") {
parent.postMessage(
{
pluginMessage: {
type: "update-styles-page"
}
},
"*"
);
}
} else if (type === "updated errors") {
// Once the errors are returned, update the error array.
updateErrorArray(errors);
} else if (type === "library-imported") {
setLibraries(message);
} else if (type === "library-imported-from-storage") {
setLibraries(message);
} else if (type === "local-styles-imported") {
setLocalStyles(message);
} else if (type === "remote-styles-imported") {
setStylesInUse(message);
}
};
}, []);
return (
<div className="container">
<Navigation
onPageSelection={updateNavigation}
activePage={activePage}
updateLintRules={updateLintRules}
ignoredErrorArray={ignoredErrorArray}
borderRadiusValues={borderRadiusValues}
lintVectors={lintVectors}
onRefreshSelection={onRunApp}
/>
{activeNodeIds.length !== 0 ? (
<div>
{activePage === "layers" ? (
<NodeList
onErrorUpdate={updateActiveError}
onVisibleUpdate={updateVisible}
onSelectedListUpdate={updateSelectedList}
visibility={isVisible}
nodeArray={nodeArray}
errorArray={errorArray}
ignoredErrorArray={ignoredErrorArray}
selectedListItems={selectedListItems}
activeNodeIds={activeNodeIds}
/>
) : activePage === "library" ? (
<LibraryPage
libraries={libraries}
onUpdateLibraries={handleUpdateLibraries}
localStyles={localStyles}
/>
) : activePage === "styles" ? (
<StylesPage stylesInUse={stylesInUse} />
) : (
<BulkErrorList
libraries={libraries}
errorArray={errorArray}
ignoredErrorArray={ignoredErrorArray}
onIgnoredUpdate={updateIgnoredErrors}
updateBorderRadius={updateBorderRadius}
onIgnoreAll={ignoreAll}
ignoredErrors={ignoredErrorArray}
onClick={updateVisibility}
onSelectedListUpdate={updateSelectedList}
initialLoadComplete={initialLoad}
/>
)}
</div>
) : emptyState === false ? (
<PreloaderCSS />
) : (
<EmptyState
onHandleRunApp={onRunApp}
onScanEntirePage={onScanEntirePage}
/>
)}
{Object.keys(activeError).length !== 0 && errorArray.length ? (
<Panel
visibility={isVisible}
node={selectedNode}
errorArray={errorArray}
onIgnoredUpdate={updateIgnoredErrors}
onIgnoreAll={ignoreAll}
ignoredErrors={ignoredErrorArray}
onClick={updateVisibility}
onSelectedListUpdate={updateSelectedList}
/>
) : null}
</div>
);
};
export default App;