-
Notifications
You must be signed in to change notification settings - Fork 0
/
code.js
53 lines (53 loc) · 2.75 KB
/
code.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
// This plugin will open a modal to prompt the user to enter a number, and
// it will then create that many rectangles on the screen.
// This file holds the main code for the plugins. It has access to the *document*.
// You can access browser APIs in the <script> tag inside "ui.html" which has a
// full browser enviroment (see documentation).
// This shows the HTML page in "ui.html".
figma.showUI(__html__);
// 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 = msg => {
// 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.type === 'create-update-colors') {
const importedColorKeys = Object.keys(msg.colors);
const documentColors = figma.getLocalPaintStyles();
const documentColorKeys = Object.keys(documentColors);
const tempColors = {};
for (let k = 0; k < documentColorKeys.length; k++) {
// TODO: Warn about colors with duplicate names
tempColors[documentColors[documentColorKeys[k]].name] = documentColors[documentColorKeys[k]];
}
console.log(tempColors);
for (let i = 0; i < importedColorKeys.length; i++) {
//Construct our color object
if (msg.colors[importedColorKeys[i]].value.indexOf("rgb") >= 0) { // Simple check to make sure we've got the right format
const colorValues = msg.colors[importedColorKeys[i]].value.match(/[0-9]{1,3}|\.[0-9]{1,3}/g);
const tempPaint = {
type: 'SOLID',
color: {
r: parseInt(colorValues[0]) / 255,
g: parseInt(colorValues[1]) / 255,
b: parseInt(colorValues[2]) / 255,
},
opacity: (colorValues.length > 3 ? colorValues[3] : 1),
};
if (typeof (tempColors[importedColorKeys[i]]) !== "undefined") {
// We're importing a color to overwrite the document one
figma.getStyleById(tempColors[importedColorKeys[i]].id).paints = [tempPaint];
}
else {
// We're creating a new one
const newStyle = figma.createPaintStyle();
newStyle.name = msg.colors[importedColorKeys[i]].name;
newStyle.paints = [tempPaint];
}
}
}
}
// 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();
};