-
-
Notifications
You must be signed in to change notification settings - Fork 153
/
main.js
400 lines (310 loc) · 9.77 KB
/
main.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
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
'use strict';
const { Color, LinearGradient, Rectangle, Ellipse, Artboard, Group } = require('scenegraph');
const { alert: showAlert, error: showError } = require('./lib/dialogs.js');
const { randomColor } = require('./lib/randomColor.js');
const fs = require('uxp').storage.localFileSystem;
async function getHtmlLayout(filename) {
const folder = await fs.getPluginFolder();
const entries = await folder.getEntries();
const file = entries.find(entry => entry.name == filename);
if (!file) {
throw new Error(
`Layout file "${filename}" not found. ` +
'Please reinstall the plugin.'
);
}
return await file.read();
}
async function showDialog(filename) {
let dialog = document.createElement('dialog');
// Get layout from a file and insert it to dialog
dialog.innerHTML = await getHtmlLayout(filename);
const form = dialog.querySelector('form');
const reset = form.querySelector('button[type="reset"]');
form.onsubmit = (e) => {
e.preventDefault();
let settings = {};
// Find all fileds
const fields = e.target.querySelectorAll('input, select');
// Collect settings to object
Array.from(fields).forEach(field => {
// Precaution to avoid intersection of ids
let key = field.id.replace('cg_', '');
if (field.type == 'checkbox') {
settings[key] = field.checked;
} else {
settings[key] = field.value;
}
});
// Close dialog and return settings
dialog.close(settings);
}
reset.onclick = (e) => {
e.preventDefault();
dialog.close('reasonCanceled');
}
// Update counter when input[type="range"] have been changed
form.addEventListener('input', (e) => {
if (e.target.type === 'range') {
let counter = e.target.parentNode.querySelector('.counter');
counter.textContent = e.target.value;
}
});
try {
document.appendChild(dialog);
return await dialog.showModal();
} finally {
dialog.remove();
}
}
async function invert(selection) {
// Get only correct items
const passedItems = selection.items.filter(item => {
const group = item instanceof Group;
const gradient = item.fill instanceof LinearGradient;
return !group && item.fillEnabled && gradient;
});
if (passedItems.length < 1) {
throw new Error(
'Need at least 1 element with enabled ' +
'linear gradient fill to be selected.'
);
}
return new Promise(resolve => {
passedItems.forEach(item => {
// Copy current gradient
const gradient = item.fill.clone();
const colorStops = gradient.colorStops;
// Reverse positions
colorStops.forEach(item => {
item.stop = 1 - item.stop;
});
// Sorting by position
colorStops.reverse();
// Apply new gradient to item
gradient.colorStops = colorStops;
item.fill = gradient;
});
resolve();
});
}
async function random(selection) {
// Get only correct items
const passedItems = selection.items.filter(item => {
const group = item instanceof Group;
const rectangle = item instanceof Rectangle;
const ellipse = item instanceof Ellipse;
const artboard = item instanceof Artboard;
return !group && (rectangle || ellipse || artboard);
});
if (passedItems.length < 1) {
throw new Error(
'Need at least 1 valid element to be selected. ' +
'Elements can be Rectangle, Ellipse or Artboard.'
);
}
// Show dialog with settings
const dialogData = await showDialog('random.html');
// Do nothing if dialog canceled
if (dialogData === 'reasonCanceled') return;
return new Promise(resolve => {
passedItems.forEach(item => {
const colorStops = [];
const gradient = new LinearGradient();
// Set output color format and reverse alpha
dialogData.format = 'rgba';
dialogData.alpha = 1 - dialogData.alpha;
const randomColors = randomColor(dialogData);
randomColors.forEach((color, idx) => {
colorStops.push({
color: new Color(color),
stop: Math.floor(idx / (dialogData.count - 1) * 100) / 100
});
});
// Setting gradient coordinates
gradient.setEndPoints(0.5, 0, 0.5, 1);
// Apply new gradient to item
gradient.colorStops = colorStops;
item.fill = gradient;
item.fillEnabled = true;
});
resolve();
});
}
async function simplify(selection) {
// Get only correct items
const passedItems = selection.items.filter(item => {
const group = item instanceof Group;
const gradient = item.fill instanceof LinearGradient;
return !group && item.fillEnabled && gradient;
});
if (passedItems.length < 1) {
throw new Error(
'Need at least 1 element with enabled ' +
'linear gradient fill to be selected.'
);
}
return new Promise(resolve => {
passedItems.forEach(item => {
// Copy current gradient
const gradient = item.fill.clone();
const colorStops = gradient.colorStops;
const numStops = colorStops.length;
const newStops = [];
// Build new gradient color stops
colorStops.forEach((item, idx, obj) => {
// Break on last color stop
if (idx == numStops - 1) return;
// Find correct position for stop pair
let stop = (idx + 1) / numStops;
// Round stop value
stop = Math.floor(stop * 100) / 100;
// Collect stop pair
newStops.push(
{ color: item.color, stop: stop },
{ color: obj[idx + 1].color, stop: stop }
);
});
// Add start and end stops
newStops.unshift(colorStops[0]);
newStops.push(colorStops[numStops - 1]);
// Apply new gradient to item
gradient.colorStops = newStops;
item.fill = gradient;
});
resolve();
});
}
async function repeating(selection) {
// Get only correct items
const passedItems = selection.items.filter(item => {
const group = item instanceof Group;
const gradient = item.fill instanceof LinearGradient;
return !group && item.fillEnabled && gradient;
});
if (passedItems.length < 1) {
throw new Error(
'Need at least 1 element with enabled ' +
'linear gradient fill to be selected.'
);
}
// Show dialog with settings
const dialogData = await showDialog('repeating.html');
// Do nothing if dialog canceled
if (dialogData === 'reasonCanceled') return;
return new Promise(resolve => {
passedItems.forEach(item => {
// Copy current gradient
const gradient = item.fill.clone();
const colorStops = gradient.colorStops;
const newStops = [];
// Loop for desired number of times
for (let idx = 0; idx < dialogData.count; idx++) {
colorStops.forEach(item => {
// Find correct position
const stop = (item.stop + idx) / dialogData.count;
// Add object with new properties
newStops.push({
color: { value: item.color.value },
stop: Math.floor(stop * 100) / 100
});
});
}
// Apply new gradient to item
gradient.colorStops = newStops;
item.fill = gradient;
});
resolve();
});
}
async function fromFill(selection) {
// Get only correct items
const passedItems = selection.items.filter(item => {
const group = item instanceof Group;
const color = item.fill instanceof Color;
return !group && item.fillEnabled && color;
});
if (passedItems.length < 2) {
throw new Error(
'Need at least 2 elements with enabled ' +
'solid color fill to be selected.'
);
}
return new Promise(resolve => {
let colorStops = [];
// Collect all colors and build color stops
passedItems.forEach((item, idx) => {
colorStops.push({
color: item.fill.clone(),
stop: Math.floor(idx / (passedItems.length - 1) * 100) / 100
});
});
// Build new gradient
const gradient = new LinearGradient();
gradient.colorStops = colorStops;
// Setting gradient coordinates
gradient.setEndPoints(0.5, 0, 0.5, 1);
const parent = selection.insertionParent;
const node = new Rectangle();
node.width = 100;
node.height = 200;
// Apply new gradient
node.fill = gradient;
// Get position to insert node at center
const posX = (parent.width - node.width) / 2;
const posY = (parent.height - node.height) / 2;
// Insert the node
parent.addChild(node);
node.moveInParentCoordinates(posX, posY);
resolve();
});
}
async function invoke(method, selection) {
let noErrors;
// Get groups (if any)
const groups = selection.items.filter(item => {
return item instanceof Group;
});
try {
// Show error if only groups are selected
if (selection.items.length) {
if (selection.items.length == groups.length) {
throw new Error(
'Groups are not supported. ' +
'Please ungroup or select elements one by one ' +
'with pressed Shift key before using this option.'
);
}
}
// Call method
await method(selection);
noErrors = true;
// Show warning if in addition to leaves groups were selected
if (groups.length) {
showAlert(
'Almost succeed',
'Valid items processed, but some groups was omitted.' +
'\n\n' +
'Please ungroup or select elements one by one ' +
'with pressed Shift key before using this option.' +
'\n\n' +
`<b>Number of omitted groups:</b> ${groups.length}`
);
}
} catch (err) {
await showError('Something went wrong', err.message);
}
return new Promise((resolve, reject) => {
noErrors ? resolve() : reject();
});
}
module.exports = {
commands: {
repeating: async selection => await invoke(repeating, selection),
simplify: async selection => await invoke(simplify, selection),
random: async selection => await invoke(random, selection),
fromFill: async selection => await invoke(fromFill, selection),
invert: async selection => await invoke(invert, selection),
about: async selection => await showDialog('about.html')
}
};