-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.ts
265 lines (227 loc) · 7.64 KB
/
code.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
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
// This shows the HTML page in "ui.html".
figma.showUI(__html__, { height: 550, width: 400 });
interface GenerateColorStyleMessage {
type: "generate-colors-style";
colors: string[];
folderName: string;
makeRectangles: boolean;
generateAlphas: boolean;
}
interface GenerateColorVariableMessage {
type: "generate-colors-variable";
colors: string[];
folderName: string;
makeRectangles: boolean;
generateAlphas: boolean;
collectionName?: string;
variableMode?: string;
}
type GenerateColorMessage =
| GenerateColorStyleMessage
| GenerateColorVariableMessage;
// example input: #001122 or #00112233
const hexToPaint = (hexCode: string) => {
const hex = hexCode.replace("#", "");
let opacity = 1;
if (hex.length === 8) {
opacity = parseInt(hex.substring(6, 8), 16) / 255;
}
const rText =
hex.length === 3 ? hex.substring(0, 1).repeat(2) : hex.substring(0, 2);
const gText =
hex.length === 3 ? hex.substring(1, 2).repeat(2) : hex.substring(2, 4);
const bText =
hex.length === 3 ? hex.substring(2, 3).repeat(2) : hex.substring(4, 6);
const r = parseInt(rText, 16) / 255;
const g = parseInt(gText, 16) / 255;
const b = parseInt(bText, 16) / 255;
const paint: SolidPaint = {
type: "SOLID",
color: {
r,
g,
b
},
opacity
};
return paint;
};
const paintToRGBA = (paint: SolidPaint): RGBA => {
return { ...paint.color, a: paint.opacity ?? 1 };
};
const getColorName = (idx: number) => {
const prefix = idx >= 12 ? "a" : "";
const number = (idx % 12) + 1;
return `${prefix}${number}`;
};
const getColorPath = (folderName: string, idx: number) => {
const color = getColorName(idx);
return folderName ? `${folderName}/${color}` : color;
};
// Calls to "parent.postMessage" from within the HTML page will trigger this
// callback. The callback will be passed the "pluginMessage" property of the
// posted message.
figma.ui.onmessage = async (msg: GenerateColorMessage | undefined) => {
// One way of distinguishing between different types of messages sent from
// your HTML page is to use an object with a "type" property like this.
if (!msg) return;
if (msg.type == "generate-colors-style") {
const nodes: SceneNode[] = [];
const numStyles = msg.generateAlphas ? 24 : 12;
for (let i = 0; i < numStyles; i++) {
// create color style
const style = figma.createPaintStyle();
style.name = getColorPath(msg.folderName, i);
style.paints = [hexToPaint(msg.colors[i])];
// create rect
if (msg.makeRectangles) {
const rect = figma.createRectangle();
rect.x = figma.viewport.center.x + (i % 12) * 100;
rect.y = figma.viewport.center.y + Math.floor(i / 12) * 52;
rect.resize(96, 48);
rect.name = getColorName(i);
await rect.setFillStyleIdAsync(style.id);
nodes.push(rect);
}
}
// group rects and select
if (msg.makeRectangles) {
const group = figma.group(nodes, figma.currentPage);
group.name = msg.folderName;
figma.currentPage.selection = [group];
}
} else if (msg.type == "generate-colors-variable") {
const nodes: SceneNode[] = [];
const numVars = msg.generateAlphas ? 24 : 12;
// determine collection
const collectionName = msg.collectionName || "Collection 1";
let varCollection: VariableCollection | undefined;
let newCollection = false;
let emptyCollection = false;
try {
// find collection
const collections =
await figma.variables.getLocalVariableCollectionsAsync();
varCollection = collections.find((c) => c.name === collectionName);
// collection doesn't exist
if (!varCollection) {
if (!msg.collectionName && collections.length > 0) {
// if collection name not specified, assume first collection (if it exists)
varCollection = collections[0];
} else {
// otherwise, create a new collection
varCollection =
figma.variables.createVariableCollection(collectionName);
newCollection = true;
}
}
} catch (err) {
const errorMessage = `Failed to find or create collection ${collectionName}.`;
console.error(errorMessage);
console.error(err);
figma.ui.postMessage({
type: "server-error",
message: errorMessage
});
return;
}
if (varCollection.variableIds.length === 0) {
emptyCollection = true;
}
// determine mode
let varMode = "";
if (
!msg.variableMode ||
(varCollection.modes.length === 1 &&
varCollection.modes[0].name === "Mode 1" &&
msg.variableMode === "Value")
) {
// default mode
// no mode specified or specifying "Value" (and the internal mode name is "Mode 1")
varMode = varCollection.modes[0].modeId;
} else if (newCollection || emptyCollection) {
// rename default mode
varMode = varCollection.modes[0].modeId;
varCollection.renameMode(varMode, msg.variableMode);
} else {
// find existing mode
const foundMode = varCollection.modes.find(
(v) => v.name === msg.variableMode
);
if (foundMode) {
// mode exists
varMode = foundMode.modeId;
} else {
// mode doesn't exist
// attempt to add mode, fail gracefully and notify client
try {
console.error("Couldn't find mode, attempting to add new mode...");
varMode = varCollection.addMode(msg.variableMode);
} catch (err) {
const errorMessage = `Failed to add mode to ${varCollection.name}.`;
console.error(errorMessage);
console.error(err);
figma.ui.postMessage({
type: "server-error",
message: errorMessage
});
return;
}
}
}
const allColorVars = await figma.variables.getLocalVariablesAsync("COLOR");
for (let i = 0; i < numVars; i++) {
// create color variable
const colorName = getColorPath(msg.folderName, i);
let variable = allColorVars.find(
(v) =>
v.variableCollectionId === varCollection.id && v.name === colorName
);
if (!variable) {
try {
variable = figma.variables.createVariable(
colorName,
varCollection,
"COLOR"
);
} catch (error) {
const errorMessage = `Cannot create variable ${colorName} in ${varCollection.name}.`;
console.error(errorMessage);
console.error(error);
figma.ui.postMessage({
type: "server-error",
message: errorMessage
});
return;
}
}
variable.setValueForMode(varMode, paintToRGBA(hexToPaint(msg.colors[i])));
// assign color
const fillArray = [hexToPaint(msg.colors[i])];
fillArray[0] = figma.variables.setBoundVariableForPaint(
hexToPaint(msg.colors[i]),
"color",
variable
);
// create rect
if (msg.makeRectangles) {
const rect = figma.createRectangle();
rect.x = figma.viewport.center.x + (i % 12) * 100;
rect.y = figma.viewport.center.y + Math.floor(i / 12) * 52;
rect.resize(96, 48);
rect.name = getColorName(i);
rect.fills = fillArray;
nodes.push(rect);
}
}
// group rects and select
if (msg.makeRectangles) {
const group = figma.group(nodes, figma.currentPage);
group.name = msg.folderName;
figma.currentPage.selection = [group];
}
}
// Make sure to close the plugin when you're done. Otherwise the plugin will
// keep running, which shows the cancel button at the bottom of the screen.
// figma.closePlugin();
};