-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
424 lines (330 loc) · 9.1 KB
/
script.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
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
let canvas = document.getElementById("canvas");
let selectedPanel = null;
let options = {
"width": document.getElementById("option-size-width"),
"height": document.getElementById("option-size-height"),
"padding": document.getElementById("option-format-padding"),
"spacing": document.getElementById("option-format-spacing"),
"rows": document.getElementById("option-format-rows"),
"thickness": document.getElementById("option-format-thickness"),
"relativeWidth": document.getElementById("option-cur-width")
};
// initialize options object
let optionValues = Object.entries(options);
for(let i = 0; i<optionValues.length; i++){
let cur = optionValues[i];
cur[1].addEventListener("change", function(){
updateOptions();
});
Object.defineProperty(options, cur[0], {
get: function(){
return cur[1].value;
},
set: function(val){
cur[1].value = val;
}
});
}
function setAttributes(element, attributes){
for(let key in attributes){
element.setAttribute(key, attributes[key]);
}
}
function createPanel(x, y, w, h, p){
let panel = document.createElementNS(canvas.namespaceURI, "rect");
setAttributes(panel, {
"x": x,
"y": y,
"width": w,
"height": h,
"fill": "white",
"stroke": "black",
"stroke-width": options.thickness
});
panel.addEventListener("mouseenter", function(){
if(panel.className.baseVal != "selected")
panel.setAttribute("fill", "#EEE");
});
panel.addEventListener("mouseleave", function(){
if(panel.className.baseVal != "selected")
panel.setAttribute("fill", "white");
});
panel.addEventListener("click", function(){
panel.setAttribute("fill", "#3E9");
select(panel, p);
options.relativeWidth = selectedPanel.width;
});
return panel;
}
class Panel {
constructor(width){
this.x = 0;
this.y = 0;
this.width = width;
this.height = 1;
this.element = createPanel(this.x, this.y, width, this.height, this);
canvas.appendChild(this.element);
}
get ex(){
return parseFloat(this.element.getAttribute("x"));
}
set ex(value){
this.element.setAttribute("x", value);
}
get ey(){
return parseFloat(this.element.getAttribute("y"));
}
set ey(value){
this.element.setAttribute("y", value);
}
get ewidth(){
return parseFloat(this.element.getAttribute("width"));
}
set ewidth(value){
this.element.setAttribute("width", value);
}
get eheight(){
return parseFloat(this.element.getAttribute("height"));
}
set eheight(value){
this.element.setAttribute("height", value);
}
}
class Row {
constructor(panels){
this.panels = panels;
this.fit();
}
removeElements(){
for(let i = 0; i<this.panels.length; i++){
this.panels[i].element.remove();
}
}
get width(){
return parseFloat(options.width) - (parseFloat(options.padding) * 2);
}
get height(){
return this.panels[0].height;
}
set height(value){
for(let i = 0; i<this.panels.length; i++){
this.panels[i].height = value;
}
}
get ey(){
return this.panels[0].ey;
}
set ey(value){
for(let i = 0; i<this.panels.length; i++){
this.panels[i].ey = value;
}
}
get eheight(){
return this.panels[0].eheight;
}
set eheight(value){
for(let i = 0; i<this.panels.length; i++){
this.panels[i].eheight = value;
}
}
fit(){
let totalWidth = 0;
for(let r = 0; r<this.panels.length; r++){
let cur = this.panels[r];
totalWidth += cur.width;
}
let scale = (this.width - (parseFloat(options.spacing) * (this.panels.length-1))) / totalWidth;
let xOff = 0;
for(let r = 0; r<this.panels.length; r++){
let cur = this.panels[r];
cur.ewidth = cur.width * scale;
cur.ex = parseFloat(options.padding) + xOff;
xOff += cur.ewidth + parseFloat(options.spacing);
cur.ey = parseFloat(options.padding);
}
}
/*
fit(){
let totalWidth = 0;
for(let r = 0; r<this.panels.length; r++){
let cur = this.panels[r];
totalWidth += cur.width + (
r == 0 ? 0 : parseFloat(options.spacing)
);
}
let scale = this.width / totalWidth;
let xOff = 0;
for(let r = 0; r<this.panels.length; r++){
let cur = this.panels[r];
cur.ewidth = cur.width * scale;
cur.ex = parseFloat(options.padding) + xOff;
xOff += cur.ewidth + parseFloat(options.spacing) * scale;
cur.ey = parseFloat(options.padding);
}
}
*/
}
let panels = [
// row
new Row([new Panel(2), new Panel(1), new Panel(1), new Panel(1)]),
new Row([new Panel(2), new Panel(1), new Panel(1), new Panel(1)])
];
function initExport(){
selectedPanel = null;
for(let r = 0; r<panels.length; r++){
for(let p = 0; p<panels[r].panels.length; p++){
let c = panels[r].panels[p].element;
c.className.baseVal = "";
c.setAttribute("fill", "white");
}
}
}
let svgButton = document.getElementById("option-export-svg");
svgButton.addEventListener("click", function(){
initExport();
// https://stackoverflow.com/questions/57798877/button-for-downloading-svg-in-javascript-html
const svg = canvas.outerHTML;
const blob = new Blob([svg.toString()]);
const element = document.createElement("a");
element.download = "comic.svg";
element.href = window.URL.createObjectURL(blob);
element.click();
element.remove();
});
// I don't know where this is from but it isn't mine
function triggerDownload (imgURI) {
var evt = new MouseEvent('click', {
view: window,
bubbles: false,
cancelable: true
});
var a = document.createElement('a');
a.setAttribute('download', 'comic.png');
a.setAttribute('href', imgURI);
a.setAttribute('target', '_blank');
a.dispatchEvent(evt);
}
let pngButton = document.getElementById("option-export-png");
pngButton.addEventListener('click', function () {
initExport();
let svg = canvas;
if(!svg) return;
var pcanvas = document.createElement('canvas');
var ctx = pcanvas.getContext('2d');
var data = (new XMLSerializer()).serializeToString(svg);
var DOMURL = window.URL || window.webkitURL || window;
var box = svg.getBoundingClientRect();
pcanvas.width = box.width;
pcanvas.height = box.height;
var img = new Image();
var svgBlob = new Blob([data], {type: 'image/svg+xml;charset=utf-8'});
var url = DOMURL.createObjectURL(svgBlob);
img.onload = function () {
ctx.drawImage(img, 0, 0);
DOMURL.revokeObjectURL(url);
var imgURI = pcanvas
.toDataURL('image/png')
.replace('image/png', 'image/octet-stream');
triggerDownload(imgURI);
ctx.clearRect(0, 0, box.width, box.height);
};
img.src = url;
});
function select(panel, p){
for(let r = 0; r<panels.length; r++){
for(let p = 0; p<panels[r].panels.length; p++){
let c = panels[r].panels[p].element;
if(c == panel) continue;
c.className.baseVal = "";
c.setAttribute("fill", "white");
}
}
panel.className.baseVal = "selected";
selectedPanel = p;
}
document.getElementById("option-cur-delete").addEventListener("click", function(){
if(selectedPanel == null) return;
for(let r = 0; r<panels.length; r++){
for(let p = 0; p<panels[r].panels.length; p++){
let c = panels[r].panels[p].element;
if(c == selectedPanel.element){
panels[r].panels.splice(p, 1);
c.remove();
updateOptions();
return;
}
}
}
});
document.getElementById("option-cur-ar").addEventListener("click", function(){
if(selectedPanel == null) return;
for(let r = 0; r<panels.length; r++){
for(let p = 0; p<panels[r].panels.length; p++){
let c = panels[r].panels[p].element;
if(c == selectedPanel.element){
let np = new Panel(1);
panels[r].panels.splice(p + 1, 0, np);
updateOptions();
return;
}
}
}
});
function setSize(width, height){
canvas.setAttribute("viewBox", `0 0 ${width} ${height}`);
options.width = width;
options.height = height;
}
function updateOptions(){
setSize(options.width, options.height);
selectedPanel == null ? 0 : selectedPanel.width = parseFloat(options.relativeWidth);
selectedPanel == null ? 0 : options.relativeWidth = selectedPanel.width;
let rows = parseFloat(options.rows);
if(rows >= 1){
if(rows > panels.length){
while(rows > panels.length){
panels.push(new Row([new Panel(1), new Panel(1), new Panel(1)]))
}
} else if(rows < panels.length) {
for(let i = panels.length-1; i>rows-1; i--){
panels[i].removeElements();
panels.pop();
}
}
} else {
options.rows = 1;
}
panels.forEach(function(row){
row.fit();
});
let totalHeight = 0;
for(let r = 0; r<panels.length; r++){
let cur = panels[r];
totalHeight += cur.height;
}
let height = parseFloat(options.height) - parseFloat(options.padding) * 2;
let scale = (height - (parseFloat(options.spacing) * (panels.length-1))) / totalHeight;
let yOff = 0;
for(let r = 0; r<panels.length; r++){
let cur = panels[r];
cur.eheight = cur.height * scale;
cur.ey = parseFloat(options.padding) + yOff;
yOff += cur.eheight + parseFloat(options.spacing);
//cur.ey = parseFloat(options.padding);
}
for(let r = 0; r<panels.length; r++){
for(let p = 0; p<panels[r].panels.length; p++){
let c = panels[r].panels[p].element;
c.setAttribute("stroke-width", options.thickness);
}
}
}
document.getElementById("option-size-swap").addEventListener("click", function(){
let temp = options.width;
options.width = options.height;
options.height = temp;
updateOptions();
});
window.addEventListener("load", function(){
updateOptions();
});