-
-
Notifications
You must be signed in to change notification settings - Fork 162
/
Copy pathmain.js
397 lines (397 loc) · 18.2 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
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const func_1 = require("./app/func");
const LESS_1 = require("./app/LESS");
const xaml_generator_1 = require("./xaml/xaml-generator");
const MessageBox_1 = require("./system/MessageBox");
const xaml_provider_1 = require("./xaml/xaml-provider");
const xaml_checker_1 = require("./xaml/xaml-checker");
const WebGenerator_1 = require("./web/WebGenerator");
async function CopyForAndroidValue(selection) {
let outtext = "";
let DataCounter = 1;
if (selection.items.length > 0) {
outtext += "<!-- COLOR FROM SELECTED ITEMS -->\n";
var validelements = ["Rectangle", "Ellipse", "Path", "Artboard"];
selection.items.forEach(element => {
if (validelements.includes(element.constructor.name)) {
if (element.fillEnabled) {
var Fillcolor = element.fill;
if (Fillcolor.value) {
let rgbatext = Fillcolor.toHex();
outtext += `<color name="color_${func_1.GetName(element.constructor.name + "_" + element.name)}_bg">${rgbatext}</color>\n`;
DataCounter++;
}
}
if (element.strokeEnabled) {
var color = element.stroke;
if (color.value) {
let rgbatext = color.toHex();
outtext += `<color name="color_${func_1.GetName(element.constructor.name + "_" + element.name)}_fg">${rgbatext}</color>\n`;
DataCounter++;
}
}
}
else {
console.log("invalid name", element.constructor.name);
}
});
}
outtext += "\n\n<!-- COLOR FROM ASSETS PANEL -->\n";
var allColors = require("assets").colors.get();
allColors.forEach((ic) => {
if (ic.color) {
let rgbatext = ic.color.toHex();
outtext += `<color name="color_${func_1.GetName(ic.name ? ic.name : "assets-" + DataCounter)}">${rgbatext}</color>\n`;
DataCounter++;
}
});
if (DataCounter > 1) {
let clipboard = require("clipboard");
clipboard.copyText(outtext);
new MessageBox_1.MessageBox().ShowMessage("Exported colors for 'Android' is now available on the clipboard.");
}
else {
new MessageBox_1.MessageBox().ShowWarning("Please add your color to the asset panel or select at least one object.");
}
}
function CopyForCSSValue(selection) {
let outtext = ":root {";
let DataCounter = 1;
if (selection.items.length > 0) {
outtext += "/* COLOR FROM SELECTED ITEMS */\n";
var validelements = ["Rectangle", "Ellipse", "Path", "Artboard"];
selection.items.forEach(element => {
if (validelements.includes(element.constructor.name)) {
if (element.fillEnabled) {
var color = element.fill;
if (color.value) {
let rgbatext = LESS_1.CSS_RGBA(color);
outtext += `--color_${func_1.GetName(element.constructor.name + "_" + element.name)}_bg: ${rgbatext};\n`;
DataCounter++;
}
}
if (element.strokeEnabled) {
var strokecolor = element.stroke;
if (strokecolor && strokecolor.value) {
let rgbatext = LESS_1.CSS_RGBA(strokecolor);
outtext += `--color_${func_1.GetName(element.constructor.name + "_" + element.name)}_border: ${rgbatext};\n`;
DataCounter++;
}
}
}
else {
console.log("invalid name", element.constructor.name);
}
});
}
outtext += "\n\n/* COLOR FROM ASSETS PANEL */\n";
var allColors = require("assets").colors.get();
allColors.forEach((ic) => {
if (ic.color) {
let rgbatext = LESS_1.CSS_RGBA(ic.color);
outtext += `--color_${func_1.GetName(ic.name ? ic.name : "assets-" + DataCounter)}: ${rgbatext};\n`;
DataCounter++;
}
});
outtext += "\n}";
if (DataCounter > 1) {
let clipboard = require("clipboard");
clipboard.copyText(outtext);
new MessageBox_1.MessageBox().ShowMessage("Exported colors for 'CSS' is now available on the clipboard.");
}
else {
new MessageBox_1.MessageBox().ShowWarning("Please add your color to the asset panel or select at least one object.");
}
}
function CopyForLESSValue(selection) {
let outtext = "";
let DataCounter = 1;
if (selection.items.length > 0) {
outtext += "// COLOR FROM SELECTED ITEMS \n";
var validelements = ["Rectangle", "Ellipse", "Path", "Artboard"];
selection.items.forEach(element => {
if (validelements.includes(element.constructor.name)) {
if (element.fillEnabled) {
var color = element.fill;
if (color.value) {
let rgbatext = LESS_1.CSS_RGBA(color);
outtext += `@color_${func_1.GetName(element.constructor.name + "_" + element.name)}_bg: ${rgbatext};\n`;
DataCounter++;
}
}
if (element.strokeEnabled) {
var color = element.stroke;
if (color.value) {
let rgbatext = LESS_1.CSS_RGBA(color);
outtext += `@color_${func_1.GetName(element.constructor.name + "_" + element.name)}_border: ${rgbatext};\n`;
DataCounter++;
}
}
}
else {
console.log("invalid name", element.constructor.name);
}
});
}
outtext += "\n\n// COLOR FROM ASSETS PANEL \n";
var allColors = require("assets").colors.get();
allColors.forEach((ic) => {
if (ic.color) {
let rgbatext = LESS_1.CSS_RGBA(ic.color);
outtext += `@color_${func_1.GetName(ic.name ? ic.name : "assets-" + DataCounter)}: ${rgbatext};\n`;
DataCounter++;
}
});
if (DataCounter > 1) {
let clipboard = require("clipboard");
clipboard.copyText(outtext);
new MessageBox_1.MessageBox().ShowMessage("Exported colors for 'LESS' is now available on the clipboard.");
}
else {
new MessageBox_1.MessageBox().ShowWarning("Please add your color to the asset panel or select at least one object.");
}
}
function CopyForSCSSValue(selection) {
let outtext = "";
let DataCounter = 1;
if (selection.items.length > 0) {
outtext += "// COLOR FROM SELECTED ITEMS \n";
var validelements = ["Rectangle", "Ellipse", "Path", "Artboard"];
selection.items.forEach(element => {
if (validelements.includes(element.constructor.name)) {
if (element.fillEnabled) {
var color = element.fill;
if (color.value) {
let rgbatext = LESS_1.CSS_RGBA(color);
outtext += `$color_${func_1.GetName(element.constructor.name + "_" + element.name)}_bg: ${rgbatext};\n`;
DataCounter++;
}
}
if (element.strokeEnabled) {
var color = element.stroke;
if (color.value) {
let rgbatext = LESS_1.CSS_RGBA(color);
outtext += `$color_${func_1.GetName(element.constructor.name + "_" + element.name)}_border: ${rgbatext};\n`;
DataCounter++;
}
}
}
else {
console.log("invalid name", element.constructor.name);
}
});
}
outtext += "\n\n// COLOR FROM ASSETS PANEL \n";
var allColors = require("assets").colors.get();
allColors.forEach((ic) => {
if (ic.color) {
let rgbatext = LESS_1.CSS_RGBA(ic.color);
outtext += `$color_${func_1.GetName(ic.name ? ic.name : "assets-" + DataCounter)}: ${rgbatext};\n`;
DataCounter++;
}
});
if (DataCounter > 1) {
let clipboard = require("clipboard");
clipboard.copyText(outtext);
new MessageBox_1.MessageBox().ShowMessage("Exported colors for 'SCSS' is now available on the clipboard.");
}
else {
new MessageBox_1.MessageBox().ShowWarning("Please add your color to the asset panel or select at least one object.");
}
}
function noAction(selection) {
}
function CopyForXamlObject(selection) {
console.log(selection.items.length, `name:[${selection.items[0].constructor.name}]`);
if (selection.items.length == 1) {
var obj = selection.items[0];
if (new xaml_checker_1.XamlChecker().IsGraphicElement(obj)) {
let outtext = new xaml_provider_1.XamlProvider().GraphicElement(obj);
let clipboard = require("clipboard");
clipboard.copyText(outtext);
return;
}
if (obj.constructor.name == "Group") {
let gp = obj;
let canvaspoint = gp.topLeftInParent;
let canvasBound = gp.boundsInParent;
if (["input", "textbox", "text-box", "input-box", "textarea"].includes(obj.name.toLowerCase())) {
if (gp.children && gp.children.length == 2) {
let outtext = `<TextBox VerticalContentAlignment="Center"`;
if (gp.children.at(0).constructor.name == "Rectangle") {
let border = gp.children.at(0);
outtext += ` Width="${border.width}" Height="${border.height}"`;
outtext += new xaml_provider_1.XamlProvider().GetTheme(border, "Background", "BorderBrush");
}
if (gp.children.at(1).constructor.name == "Text") {
let txt = gp.children.at(1);
let objpoint = txt.topLeftInParent;
outtext += ` Padding="${objpoint.x - canvaspoint.x},0"`;
outtext += new xaml_provider_1.XamlProvider().GetTheme(txt, "Foreground");
outtext += ` Text="${txt.text}"`;
outtext += ` FontFamily="${txt.fontFamily}" FontSize="${txt.fontSize}"`;
}
outtext += "/>";
let clipboard = require("clipboard");
clipboard.copyText(outtext);
return;
}
}
if (gp.name.toLowerCase().trim() == "button") {
if (gp.children && gp.children.length == 1) {
let outtext = "<Button >";
if (gp.children.at(0).constructor.name == "Group") {
outtext += new xaml_generator_1.XamlGenerator().GetXamlAsCanvas(gp.children.at(0));
}
if (new xaml_checker_1.XamlChecker().IsGraphicElement(gp.children.at(0))) {
outtext += new xaml_provider_1.XamlProvider().GraphicElement(gp.children.at(0));
}
outtext += "</Button>";
let clipboard = require("clipboard");
clipboard.copyText(outtext);
return;
}
}
let outtext = new xaml_generator_1.XamlGenerator().GetXamlAsCanvas(gp);
let clipboard = require("clipboard");
clipboard.copyText(outtext);
return;
}
}
}
function getColorEfectForStyle(obj, bg, fg = "") {
let res = "";
if (obj.fillEnabled && obj.fill && obj.fill.value)
res += `\n ${bg}:${LESS_1.CSS_RGBA(obj.fill)};`;
if (fg.length > 0 && obj.stroke && obj.stroke && obj.stroke.value)
res += `\n ${fg}:${LESS_1.CSS_RGBA(obj.stroke)};`;
return res;
}
function StyleSingleElement(obj) {
let elname = "Nothing";
let addinfo = "";
if (obj.constructor.name == "Rectangle") {
let rec = obj;
elname = "div";
addinfo += `\n width:${rec.width}px;\n Height=${rec.height}px;`;
addinfo += getColorEfectForStyle(rec, "background-color", "border-color");
}
if (obj.constructor.name == "Text") {
let rec = obj;
elname = "p";
addinfo += `\n font-family:${rec.fontFamily};\n font-size:${rec.fontSize}px;`;
addinfo += getColorEfectForStyle(rec, "color");
}
return `${elname}{ ${addinfo}\n}`;
}
function CopyForStyle(selection) {
console.log(selection.items.length, `name:[${selection.items[0].constructor.name}]`);
if (selection.items.length == 1) {
var obj = selection.items[0];
if (new xaml_checker_1.XamlChecker().IsGraphicElement(obj)) {
let outtext = StyleSingleElement(obj);
let clipboard = require("clipboard");
clipboard.copyText(outtext);
return;
}
if (obj.constructor.name == "Group") {
let gp = obj;
let canvaspoint = gp.topLeftInParent;
let canvasBound = gp.boundsInParent;
if (["input", "textbox", "text-box", "input-box", "textarea"].includes(obj.name.toLowerCase())) {
if (gp.children && gp.children.length == 2) {
let outtext = `<TextBox VerticalContentAlignment="Center"`;
if (gp.children.at(0).constructor.name == "Rectangle") {
let border = gp.children.at(0);
outtext += ` Width="${border.width}" Height="${border.height}"`;
outtext += new xaml_provider_1.XamlProvider().GetTheme(border, "Background", "BorderBrush");
}
if (gp.children.at(1).constructor.name == "Text") {
let txt = gp.children.at(1);
let objpoint = txt.topLeftInParent;
outtext += ` Padding="${objpoint.x - canvaspoint.x},0"`;
outtext += new xaml_provider_1.XamlProvider().GetTheme(txt, "Foreground");
outtext += ` Text="${txt.text}"`;
outtext += ` FontFamily="${txt.fontFamily}" FontSize="${txt.fontSize}"`;
}
outtext += "/>";
let clipboard = require("clipboard");
clipboard.copyText(outtext);
return;
}
}
if (gp.name.toLowerCase().trim() == "button") {
if (gp.children && gp.children.length == 1) {
let outtext = "<Button>";
if (gp.children.at(0).constructor.name == "Group") {
outtext += new xaml_generator_1.XamlGenerator().GetXamlAsCanvas(gp.children.at(0));
}
if (new xaml_checker_1.XamlChecker().IsGraphicElement(gp.children.at(0))) {
outtext += new xaml_provider_1.XamlProvider().GraphicElement(gp.children.at(0));
}
outtext += "</Button>";
let clipboard = require("clipboard");
clipboard.copyText(outtext);
return;
}
}
let outtext = new xaml_generator_1.XamlGenerator().GetXamlAsCanvas(gp);
let clipboard = require("clipboard");
clipboard.copyText(outtext);
return;
}
}
}
function XamlExportArtboard(selection) {
if (selection.items.length != 1 || selection.items[0].constructor.name != "Artboard") {
new MessageBox_1.MessageBox().ShowWarning("Please Select One Artboard to Export" + selection.items[0].constructor.name);
console.log("'" + selection.items[0].pathData + "'");
return;
}
var XG = new xaml_generator_1.XamlGenerator();
var c = XG.GenerateFromArtboard(selection.items[0]);
let clipboard = require("clipboard");
clipboard.copyText(c);
new MessageBox_1.MessageBox().ShowMessage(`<div><span style="color:#1e88e5;">Xaml - Artbord Mockup Codes is now available on the clipboard. </span>`
+ "<span>You Can Paste Your Code To Your Xaml Editor</span>"
+ (XG.Warining.length > 0 ? `<div> <span >Warning: Export For ${XG.Warining.toString()} is not Available in this Version </span></div>` : ""));
}
function InfoArtboardNames(selection, documentRoot) {
var ArtList = [];
if (documentRoot.children)
documentRoot.children.forEach(item => {
if (item.constructor.name == "Artboard") {
ArtList.push(item.name);
}
});
let clipboard = require("clipboard");
clipboard.copyText(ArtList.join("\n"));
new MessageBox_1.MessageBox().ShowMessage(`<div><span style="color:#1e88e5;">[Info - Name of Artboards] is now available on the clipboard. </span>`
+ "<span>You Can Paste it into Your Text Editor</span>");
}
function WebExportArtboard(selection, documentRoot) {
console.log("start :", "");
if (selection.items.length != 1 || selection.items[0].constructor.name != "Artboard") {
new MessageBox_1.MessageBox().ShowWarning("Please Select One Artboard to Export " + selection.items[0].constructor.name);
console.log(selection.items[0]);
return;
}
console.log("check :", "");
var WG = new WebGenerator_1.WebGenerator();
var c = WG.GenerateFromArtboard(selection.items[0]);
}
module.exports = {
commands: {
CopyForAndroidValue: CopyForAndroidValue,
CopyForCSSValue: CopyForCSSValue,
CopyForLESSValue: CopyForLESSValue,
CopyForSCSSValue: CopyForSCSSValue,
CopyForStyle: CopyForStyle,
CopyForXamlObject: CopyForXamlObject,
XamlExportArtboard: XamlExportArtboard,
WebExportArtboard: WebExportArtboard,
InfoArtboardNames: InfoArtboardNames,
noAction: noAction
}
};