-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcode.ts
58 lines (48 loc) · 1.5 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
// 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 environment (see documentation).
// This shows the HTML page in "ui.html".
figma.showUI(__html__, { width: 400, height: 580, title: "Layers with Bob (Mr. Incredible)" });
// 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 === 'start-sesh') {
// i declare the layers
const layers = figma.currentPage.children;
// get the layer array name
const layerNames = layers.map(a => a.name);
const searchTerms = [
"Rectangle",
"Frame",
"Group",
"Ellipse",
"Line",
"Polygon",
"Shape",
"Star",
"Text",
"Lorem ipsum",
"Vector",
"Path",
]
let counter = 0;
function result() {
layerNames.forEach(layer => {
searchTerms.forEach(keyword => {
if (layer.includes(keyword)) {
let increment = counter++;
// console.log(counter);
}
})
})
}
result()
figma.ui.postMessage(counter)
}
if (msg.type === 'close') {
figma.closePlugin();
}
};