forked from andylei/paperbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tuckbox.js
506 lines (465 loc) · 15.1 KB
/
tuckbox.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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
function pt(x, y) {
return {x: x, y: y};
}
function add(p1, x, y) {
return pt(p1.x + x, p1.y + y);
}
function CMrot(deg) {
return [Math.cos(deg), Math.sin(deg), -Math.sin(deg), Math.cos(deg), 0, 0];
}
function CMtranslate(x, y) {
return [1, 0, 0, 1, x * 72, y * 72];
}
function CMcomp(m0, m1) {
return [
m0[0] * m1[0] + m0[1] * m1[2],
m0[0] * m1[1] + m0[1] * m1[3],
m0[2] * m1[0] + m0[3] * m1[2],
m0[2] * m1[1] + m0[3] * m1[3],
m0[4] * m1[0] + m0[5] * m1[2] + m1[4],
m0[4] * m1[1] + m0[5] * m1[3] + m1[5]
];
}
function CMstr(m) {
round = function(n) { return n.toFixed(3); };
posZero = function(n) { return n === 0 ? 0 : n; };
return m.map(round).map(posZero).join(' ') + ' cm';
}
function dir2deg(orient) {
var deg = 0;
if (orient === 'left') {
deg = Math.PI / 2;
} else if (orient === 'down') {
deg = Math.PI;
} else if (orient === 'right') {
deg = 3 * Math.PI / 2;
}
return deg
}
function hexToRgb(hex) {
var bigint = parseInt(hex, 16);
var r = (bigint >> 16) & 255;
var g = (bigint >> 8) & 255;
var b = bigint & 255;
return [r, g, b];
}
function PDFDrawer(paperSize) {
this.paperSize = paperSize;
this.doc = new jsPDF('l', 'in', paperSize);
this.resetCenter();
this.doc.setLineWidth(1/128);
return this;
}
PDFDrawer.prototype.resetCenter = function() {
this.center = pt(
this.doc.internal.pageSize.width / 2,
this.doc.internal.pageSize.height / 2
);
};
PDFDrawer.prototype.setLineDash = function(segments) {
segments = segments ? segments : [];
this.doc.internal.write('[' + segments.join(' ') + '] 0 d');
}
PDFDrawer.prototype.rect = function(cent, size, fill) {
cent = cent ? cent : this.center;
fill = fill ? fill : 'S';
this.doc.rect(
cent.x - size.x/2,
cent.y - size.y/2,
size.x,
size.y,
fill
);
};
PDFDrawer.prototype.line = function(p0, p1) {
this.doc.line(p0.x, p0.y, p1.x, p1.y);
};
PDFDrawer.prototype.rotate = function(about, deg) {
var y = this.doc.internal.pageSize.height - about.y;
var t0 = CMtranslate(-about.x, -y);
var r = CMrot(deg);
var t1 = CMtranslate(about.x, y);
var cm = CMstr(CMcomp(CMcomp(t0, r), t1));
this.doc.internal.write(cm);
};
PDFDrawer.prototype.flap = function(cent, width, height, attenuation, orient, fill) {
fill = fill ? fill : 'S';
// bottom left
var x0 = cent.x - width / 2;
var y0 = cent.y + height / 2;
this.doc.internal.write('q');
this.rotate(cent, dir2deg(orient));
this.doc.lines([
[width, 0],
[0, attenuation - height],
[0, -attenuation, -attenuation, -attenuation, -attenuation, -attenuation],
[-(width - 2 * attenuation), 0],
[-attenuation, 0, -attenuation, attenuation, -attenuation, attenuation]
], x0, y0, [1, 1], fill, true);
this.doc.internal.write('Q');
};
/** Draws a flap with only one curved corner */
PDFDrawer.prototype.flapSingle = function(cent, width, height, attenuation, orient, flip, fill) {
fill = fill ? fill : 'S';
// bottom left
var x0 = cent.x - width / 2;
var y0 = cent.y + height / 2;
this.doc.internal.write('q');
this.rotate(cent, dir2deg(orient));
if(flip) {
this.doc.lines([
[width, 0],
[0, -height],
[attenuation - width, 0],
[-attenuation, 0, -attenuation, attenuation, -attenuation, attenuation],
], x0, y0, [1, 1], fill, true);
}
else {
this.doc.lines([
[width, 0],
[0, attenuation - height],
[0, -attenuation, -attenuation, -attenuation, -attenuation, -attenuation],
[attenuation - width, 0]
], x0, y0, [1, 1], fill, true);
}
this.doc.internal.write('Q');
};
PDFDrawer.prototype.trap = function(cent, width, height, attenuation, orient, fill) {
fill = fill ? fill : 'S';
// bottom left
var x0 = cent.x - width / 2;
var y0 = cent.y + height / 2;
this.doc.internal.write('q');
this.rotate(cent, dir2deg(orient));
this.doc.lines([
[width, 0],
[-attenuation, -height],
[-(width - 2 * attenuation), 0]
], x0, y0, [1, 1], fill, true);
this.doc.internal.write('Q');
};
PDFDrawer.prototype.p = function(x, y) {
return add(this.center, x, y);
};
/** Adds text
* @param s: The text
* @param cent: Text will be centered (horizontally & vertically) on this point
* @param size: Size (in pts) for the text
* @param orient: Orientation for the text: 'up' | 'down' | 'left' | 'right'
*/
PDFDrawer.prototype.text = function(s, cent, size, orient) {
this.doc.setFontSize(size);
// The * 0.6 is needed, for whatever reason, to make it centered
var textHeight = this.doc.internal.getLineHeight() / 72 * 0.6;
var textWidth = this.doc.getStringUnitWidth(s) * size / 72;
var rot = dir2deg(orient)
var r = CMrot(rot)
var rv = CMcomp([textWidth / 2, textHeight / 2], r)
var textX = cent.x - rv[0]
var textY = cent.y + rv[1]
this.doc.text(s, textX, textY, null, rot * 180 / Math.PI)
}
PDFDrawer.prototype.buildPdfUriString = function() {
return this.doc.output('datauristring');
};
PDFDrawer.prototype.save = function() {
this.doc.save('tuckbox');
};
PDFDrawer.prototype.flush = function() {
document.getElementById('pdf-preview').src = this.buildPdfUriString();
}
function drawSleeve(_drawer, _width, _length, _depth, _fill) {
var d = _drawer;
var size = pt(_width, _length);
var depth = _depth;
var frontLength = size.x / 2;
var tabLength = 1/4;
d.doc.setDrawColor(160);
var fill = null;
if (_fill) {
d.doc.setFillColor.apply(d, hexToRgb(_fill));
fill = 'DF';
}
var totalLength = frontLength + depth + size.x + tabLength;
var currCenter = frontLength + depth + size.x / 2;
d.resetCenter();
d.center = d.p( - totalLength / 2 + currCenter, 0);
d.rect(null, size, fill);
var botX = (size.x + depth) / - 2;
//bottom
d.rect(d.p(botX, 0), pt(depth, size.y), fill);
//front
d.rect(d.p(botX - (frontLength + depth) / 2, 0), pt(frontLength, size.y), fill);
//bottom flaps
var flapLength = Math.min(frontLength, depth);
d.trap(d.p(botX, (size.y + flapLength) / 2), depth, flapLength, 1/16, 'down', fill);
d.trap(d.p(botX, (size.y + flapLength) / - 2), depth, flapLength, 1/16, 'up', fill);
// left side
var leftAnchor = d.p(-size.x / 2, -size.y / 2);
d.doc.lines([
[0, -depth],
[frontLength, 0],
[size.x - frontLength, depth]
], leftAnchor.x, leftAnchor.y, [1,1], fill, true);
// right side
var rightAnchorAnchor = d.p(-size.x / 2, size.y / 2);
d.doc.lines([
[0, depth],
[frontLength, 0],
[size.x - frontLength, -depth]
], rightAnchorAnchor.x, rightAnchorAnchor.y, [1,1], fill, true);
// lr flaps
var lrFlapLength = Math.min(size.y / 2, depth);
var lrFlapX = d.p((size.x - frontLength) / -2, 0).x;
var lrFlapYOffset = size.y / 2 + depth + lrFlapLength / 2;
d.trap(pt(lrFlapX, d.p(0, -lrFlapYOffset).y), frontLength, lrFlapLength, 1/16, 'up', fill);
d.trap(pt(lrFlapX, d.p(0, lrFlapYOffset).y), frontLength, lrFlapLength, 1/16, 'down', fill);
// tab
d.flap(d.p(size.x / 2 + tabLength / 2, 0), 1/2, tabLength, tabLength / 2, 'right', fill);
}
function drawDrawer(_drawer, _width, _length, _height, _gap, _fill) {
var size = pt(_width, _length);
var height = _height;
var gap_width = _gap;
var d = _drawer;
d.doc.setDrawColor(160);
var fill = null;
if (_fill) {
d.doc.setFillColor.apply(d, hexToRgb(_fill));
fill = 'DF';
}
//base
d.rect(null, size, fill);
//left-right wings
var x_offset = size.x / 2 + height / 2;
d.rect(d.p(x_offset, 0), pt(height, size.y), fill);
d.rect(d.p(-x_offset, 0), pt(height, size.y), fill);
//top-bottom winglets
var y_offset = size.y / 2 + height / 2;
var winglet_width = (size.x - gap_width) / 2;
x_offset = (gap_width + winglet_width) / 2;
d.rect(d.p(x_offset, y_offset), pt(winglet_width, height), fill);
d.rect(d.p(-x_offset, y_offset), pt(winglet_width, height), fill);
d.rect(d.p(x_offset, -y_offset), pt(winglet_width, height), fill);
d.rect(d.p(-x_offset, -y_offset), pt(winglet_width, height), fill);
// flaps
var flap_length = Math.min(height, winglet_width);
x_offset = size.x / 2 + height / 2;
y_offset = size.y / 2 + flap_length / 2;
d.trap(d.p(x_offset, y_offset), height, flap_length, 1/16, 'down', fill);
d.trap(d.p(-x_offset, y_offset), height, flap_length, 1/16, 'down', fill);
d.trap(d.p(x_offset, -y_offset), height, flap_length, 1/16, 'up', fill);
d.trap(d.p(-x_offset, -y_offset), height, flap_length, 1/16, 'up', fill);
}
function drawBox(_drawer, _width, _length, _height, _fill, _title, _imgs) {
var d = _drawer;
var depths = {
side_flap: _height * 0.9,
bot_flap: _height
}
var size = {
main: pt(_length, _width),
side_panel: pt(_height, _width),
side_flap: pt(depths.side_flap, _width),
lr_flap: pt(_height, Math.min(depths.bot_flap, 5/8)),
bt_flap: pt(_length, depths.bot_flap),
top_top_flap: pt(_length, Math.max(_height / 2, 1/2))
}
var height = _height;
d.doc.setDrawColor(160);
var fill = null;
if (_fill) {
d.doc.setFillColor.apply(d, hexToRgb(_fill));
fill = 'DF';
}
var frontImage = _imgs.boxFront;
var backImage = _imgs.boxBack;
var sideImage = _imgs.boxSide;
var topImage = _imgs.boxTop;
var totalLength = size.main.x * 2 + size.side_panel.x * 2 + size.side_flap.x;
var currCenterX = size.main.x * 1.5 + size.side_panel.x;
var totalHeight = size.main.y + size.bt_flap.y * 2 + size.top_top_flap.y;
var currCenterY = size.bt_flap.y + size.main.y / 2;
d.resetCenter();
d.center = d.p(
(totalLength / 2 - currCenterX) / 2,
(totalHeight / 2 - currCenterY) / 2
);
var panels = {
top: {
loc: d.p(size.main.x / 2, 0),
size: size.main
},
bottom: {
loc: d.p(-size.main.x / 2 - height, 0),
size: size.main
},
left: {
loc: d.p(-height / 2, 0),
size: size.side_panel
},
right: {
loc: d.p(size.main.x + height / 2, 0),
size: size.side_panel
}
}
var flaps = {
side: {
loc: pt(panels.bottom.loc.x - (size.main.x + depths.side_flap) / 2, panels.bottom.loc.y),
size: pt(size.side_flap.y, depths.side_flap),
orient: 'left',
kind: 'inside'
},
bot_bot: {
loc: add(panels.bottom.loc, 0, (panels.bottom.size.y + size.bt_flap.y) / 2),
size: size.bt_flap,
orient: 'down',
kind: 'inside'
},
l_bot: {
loc: add(panels.left.loc, 0, (panels.bottom.size.y + size.lr_flap.y) / 2),
size: size.lr_flap,
orient: 'down',
kind: 'inside'
},
l_top: {
loc: add(panels.left.loc, 0, (-panels.bottom.size.y - size.lr_flap.y) / 2),
size: size.lr_flap,
orient: 'up',
kind: 'curvedLeft'
},
r_bot: {
loc: add(panels.right.loc, 0, (panels.bottom.size.y + size.lr_flap.y) / 2),
size: size.lr_flap,
orient: 'down',
kind: 'inside'
},
r_top: {
loc: add(panels.right.loc, 0, (-panels.bottom.size.y - size.lr_flap.y) / 2),
size: size.lr_flap,
orient: 'up',
kind: 'curvedRight'
},
top_bot: {
loc: add(panels.top.loc, 0, (panels.bottom.size.y + size.bt_flap.y) / 2),
size: size.bt_flap,
kind: 'outside'
},
top_top: {
loc: add(panels.top.loc, 0, - (panels.bottom.size.y + size.bt_flap.y) / 2),
size: size.bt_flap,
kind: 'outside'
},
top_top_top: {
loc: add(
panels.top.loc, 0,
- size.bt_flap.y - (panels.bottom.size.y + size.top_top_flap.y) / 2),
size: size.top_top_flap,
kind: 'curved',
orient: 'up'
}
}
function drawPanel(pan) {
d.rect(pan.loc, pan.size, fill);
}
function drawFlap(flap) {
if (flap.kind === 'outside') {
d.rect(flap.loc, flap.size, fill);
} else if (flap.kind === 'curved') {
var att = Math.min(flap.size.x / 2, flap.size.y)
d.flap(flap.loc, flap.size.x, flap.size.y, att, flap.orient, fill);
} else if (flap.kind === 'curvedRight') {
var att = Math.min(flap.size.x, flap.size.y)
d.flapSingle(flap.loc, flap.size.x, flap.size.y, att, flap.orient, false, fill);
} else if (flap.kind === 'curvedLeft') {
var att = Math.min(flap.size.x, flap.size.y)
d.flapSingle(flap.loc, flap.size.x, flap.size.y, att, flap.orient, true, fill);
} else {
var att = 1/16;
d.trap(flap.loc, flap.size.x, flap.size.y, att, flap.orient, fill);
}
}
function imagePanel(img, pos, size, rot) {
var imageX = pos.x - size.x / 2;
var imageY = pos.y - size.y / 2;
d.doc.addImage(img, 'JPEG', imageX, imageY, size.x, size.y, null, null, rot);
}
if (frontImage) {
imagePanel(frontImage, panels.top.loc, panels.top.size, 0);
}
if (backImage) {
imagePanel(backImage, panels.bottom.loc, panels.bottom.size, 0);
//TO DO - display bottom image in flap so visible behind thumb hole
}
if (sideImage) {
imagePanel(sideImage, panels.left.loc, panels.left.size, 0);
imagePanel(sideImage, panels.right.loc, panels.right.size, 0);
}
if (topImage) {
imagePanel(topImage, flaps.top_top.loc, flaps.top_top.size, 0);
imagePanel(topImage, flaps.top_bot.loc, flaps.top_bot.size, 0);
}
_.values(panels).forEach(drawPanel);
_.values(flaps).forEach(drawFlap);
// Add title text to panels
d.doc.setFont('helvetica', 'bold');
d.text(_title, flaps.top_top.loc, 20, 'down');
d.text(_title, flaps.top_bot.loc, 20, 'up');
d.text(_title, panels.left.loc, 23, 'right');
d.text(_title, panels.right.loc, 23, 'left');
d.text(_title, add(panels.top.loc, 0, panels.top.size.y * 0.25), 20, 'up');
d.text(_title, add(panels.bottom.loc, 0, panels.bottom.size.y * 0.25), 20, 'up');
(function drawThumbCutout() {
var r = 1/3;
var x = panels.bottom.loc.x - r, y = panels.bottom.loc.y - size.main.y / 2;
var xOffset = 2 * r, yOffset = 4 / 3 * r
d.doc.lines([[0, yOffset, xOffset, yOffset, xOffset, 0]], x, y);
})();
// Add cut points
d.doc.setDrawColor(0);
var cutLength = 3/8;
// Top flap
var topMid = pt(flaps.top_top.loc.x, flaps.top_top.loc.y - flaps.top_top.size.y / 2);
var halfWidth = size.main.x / 2;
d.line(add(topMid, -halfWidth, 0), add(topMid, cutLength - halfWidth, 0));
d.line(add(topMid, halfWidth, 0), add(topMid, halfWidth - cutLength, 0));
// Back
topMid = pt(panels.top.loc.x, panels.top.loc.y - panels.top.size.y / 2);
halfWidth = size.main.x / 2;
d.line(add(topMid, -halfWidth, 0), add(topMid, -halfWidth, cutLength));
d.line(add(topMid, halfWidth, 0), add(topMid, halfWidth, cutLength));
}
function makeBox(
paper,
cardWidth,
cardHeight,
boxDepth,
inside,
fillColor,
title,
images
) {
images = images || {};
//paper = paper === 'a4' ? 'a4' : 'letter';
var drawer = new PDFDrawer(paper);
var hasInside = false;
if (inside === 'sleeve') {
drawSleeve(drawer, cardWidth, cardHeight, boxDepth, fillColor);
drawer.doc.addPage();
hasInside = true;
} else if (inside === 'tray') {
drawer.resetCenter();
drawer.doc.setLineWidth(1/128);
drawDrawer(drawer, cardWidth, cardHeight, boxDepth, 1, fillColor);
drawer.doc.addPage();
hasInside = true;
}
drawer.doc.setLineWidth(1/128);
if (hasInside) {
cardWidth += 1 / 16;
cardHeight += 1 / 16;
boxDepth += 1 / 16;
}
drawBox(drawer, cardWidth, cardHeight, boxDepth, fillColor, title, images);
return drawer;
}