-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.ts
More file actions
256 lines (197 loc) · 6.83 KB
/
code.ts
File metadata and controls
256 lines (197 loc) · 6.83 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
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
// #################################################################################################
// # HEADERS
// #################################################################################################
function getHeader(content, id = "") {
if (id) {
return `<p class="header body3" id="${id}">${content}</p>`
} else {
return `<p class="header body3">${content}</p>`
}
}
// #################################################################################################
// # GET TYPE
// #################################################################################################
function getType(node) {
return `${getHeader("Type")}<p>${node.type}</p>`
}
// #################################################################################################
// # GET LAYERS
// #################################################################################################
function getLayers(node, indent: number = 0) {
let layers = ""
if (indent == 0) {
layers += getHeader("Layers", "header-layers");
}
layers += getLayer(node, indent);
if ("children" in node) {
if (node.type !== "INSTANCE") {
for (const child of node.children) {
layers += getLayers(child, indent + 1);
}
}
}
return layers
}
function getLayer(node, indent) {
var layer = '<p class="layer legal1">'
layer += getLayerIndent(indent, true)
layer += getLayerIcon(node)
layer += node.name + "</p>"
layer += getInspection(node, indent)
return layer
}
function getLayerIndent(indent, extraSpace: boolean = false) {
var indents = ""
for (var i = indent; i >= 1; i--) {
if (extraSpace) {
indents += " "
} else {
indents += " "
}
}
return indents
}
function getLayerIcon(node) {
var type = ""
var icon = ""
switch (node.type) {
case 'COMPONENT':
icon = "https://i.imgur.com/mMomyWA.png"
break
case 'COMPONENT_SET':
icon = "https://i.imgur.com/mMomyWA.png"
break
case 'FRAME':
if (node.layoutMode == "HORIZONTAL") {
icon = "https://i.imgur.com/agzGebN.png"
} else if (node.layoutMode == "VERTICAL") {
icon = "https://i.imgur.com/nIXSMck.png"
} else {
icon = "https://i.imgur.com/xd32fdS.png"
}
break
case 'GROUP':
icon = "https://i.imgur.com/xd32fdS.png"
break
case 'BOOLEAN_OPERATION':
icon = "https://i.imgur.com/xd32fdS.png"
break
case 'INSTANCE':
icon = "https://i.imgur.com/axmNW7f.png"
break
case 'TEXT':
icon = "https://i.imgur.com/xjaHdfH.png"
break
default:
icon = ""
break
}
return `<img src="${icon}" height="12px" width="12px" />${getLayerIndent(4)}`;
}
// #################################################################################################
// # GET INSPECTION
// #################################################################################################
function getInspection(node, indent) {
var inspection = ""
inspection += checkAutolayout(node, indent)
inspection += checkColorStyle(node, indent)
inspection += checkDefaultName(node, indent)
inspection += checkFillContainer(node, indent)
inspection += checkMainComponent(node, indent)
inspection += checkTextStyle(node, indent)
return inspection
}
function getReport(content, indent) {
return `<div class="layer report legal1">${getLayerIndent(indent+1, true)} ${content}</div>`
}
function checkAutolayout(node, indent) {
var report = ""
if (node.type == "FRAME" || node.type == "GROUP" || node.type == "COMPONENT" || node.type == "COMPONENT_SET") {
if (node.layoutMode == "NONE" || node.type == "GROUP") {
report += getReport("Verify if this layer should have auto layout enabled", indent)
}
}
return report
}
function checkColorStyle(node, indent) {
var report = ""
if (node.type != "Document" && node.type != "Page" && node.type != "Slice" && (node.fills || node.strokes)) {
if (!node.fillStyleId && node.fills[0]) {
report += getReport("Layer is missing a fill color style", indent)
}
if (!node.strokeStyleId && node.strokes[0]) {
report += getReport("Layer is missing a stroke color style", indent)
}
}
return report
}
function checkDefaultName(node, indent) {
var report = ""
const defaultNames = RegExp(
/^(Union|Substract|Intersect|Exclude|(Page|Frame|Group|Slice|Rectangle|Line|Ellipse|Polygon|Star|Vector|Text|Component|Property)(\sCopy)?(\s\d+)?)(=.*)?$/
)
if (defaultNames.test(node.name)) {
report += getReport("Layer name cannot be a default value. Please choose a unique name", indent)
}
return report
}
function checkFillContainer(node, indent) {
var report = ""
const exceptionNames = RegExp(
/(((.*) Badge)|((.*) Button)|Checkbox|Flag|Glyph|Icon|((.*) Link)|Tag)/
)
if (node.type == "INSTANCE" && (node.layoutAlign == "INHERIT" && node.layoutGrow == 0) && (!exceptionNames.test(node.children[0].name))) {
if (!exceptionNames.test(node.mainComponent.parent.name)) {
report += getReport("Verify if this layer should fill container. ", indent)
}
} else if ((node.type == "TEXT" || node.type == "FRAME " || node.type == "GROUP") && (node.layoutAlign == "INHERIT" && node.layoutGrow == 0)) {
report += getReport("Verify if this layer should fill container.", indent)
}
return report
}
function checkMainComponent(node, indent) {
var report = ""
if (node.type == "INSTANCE" && node.mainComponent.parent == null) {
report += getReport("Verify if the main component for this instance still exists", indent)
}
return report
}
function checkTextStyle(node, indent) {
var report = ""
if (node.type == "TEXT") {
if (node.autoRename == true) {
report += getReport("Layer is set to autorename. Make sure you specify a name.", indent)
}
if (!node.textStyleId) {
report += getReport("Layer is missing a text style", indent)
}
}
return report
}
// #################################################################################################
// # MAIN APP
// #################################################################################################
function App() {
const selection = figma.currentPage.selection[0]
var message = ""
if (selection) {
message += getType(selection)
message += getLayers(selection)
} else {
message += `<p class="body3">You must select an element first.</p>`
}
return message
}
// #################################################################################################
// # FIGMA UI
// #################################################################################################
figma.showUI(__html__, {
width: 600,
height: 1000
})
figma.ui.postMessage(App())
figma.ui.onmessage = (message) => {
if (message.rescan) {
figma.ui.postMessage(App())
}
}