This repository was archived by the owner on Apr 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsigns.coffee
1148 lines (1053 loc) · 30 KB
/
signs.coffee
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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#Created by Andrey Izotov [email protected]
window.numbersOnly = (e) ->
unicode = if e.charCode then e.charCode else e.keyCode
if unicode != 8
if unicode < 48 or unicode > 57
return false
return
window.floatsOnly = (el, e) ->
has_decimal = el.value.indexOf('.') >= 0
unicode = if e.charCode then e.charCode else e.keyCode
if unicode == 8
return true
if has_decimal
if el.value.indexOf('.') < el.value.length - 1
return false
if unicode >= 48 and unicode <= 57
return true
if unicode == 46 and !has_decimal
return true
if unicode == 44 and !has_decimal
el.value = el.value + '.'
return false
false
signs = angular.module('Signs', ['file-model', 'ngModal'])
#first one is default
settings =
pixel_size: 8
magic_coeff: 0.65
step_coeff: 0.9
canvasHeight: 500
canvasWidth: 555
maxWidth: 690
maxHeight: 450
maxRadius: 450
minSize: 10
shapes: [
"rektangulär"
"rundad rektangulär"
"rund"
]
holes_radius: 9
min_hole_padd: 5
holes_interface: [
"Inga"
"2 hål"
"4 hål"
]
textStyles: [
"Normal"
"Kursiv"
"Fet"
]
hole_rect: {
width: 10
height: 5
}
materials: [
"Plast"
"Metall"
]
alignment: [
"Vänster"
"Mitten"
"Höger"
]
themes: [
{
name: "vit / svart"
textColor: "black"
bgColor: "white"
}
{
name: "gul / svart"
textColor: "black"
bgColor: "yellow"
}
{
name: "grön / vit"
textColor: "white"
bgColor: "green"
}
{
name: "röd / vit"
textColor: "white"
bgColor: "red"
}
{
name: "brun / vit"
textColor: "white"
bgColor: "#964B00"
}
{
name: "blå / vit"
textColor: "white"
bgColor: "blue"
}
{
name: "svart / vit"
textColor: "white"
bgColor: "black"
}
]
theme_metal: {
bgColor: "grey"
textColor: "black"
}
fonts: [
"Arial"
"Times New Roman"
"Arial Narrow"
"Calibri"
]
maxLinesOfText: 8
margin: 15 # in pixels
radius: 5 # in pixels
borderWidth: 1.5 #in pixels
rules:
indent: 25
width: 3
debug: no
roundTo: 5
orderBasicPrice: 50
hypotenuse = (a, b = a) ->
Math.sqrt(a * a + b * b)
copyObj = (obj) ->
JSON.parse(JSON.stringify(obj))
#here we can setup default settings
modelTemplate =
name: "Skylt"
shape: settings.shapes[0]
holes: {
"Top": false
"Top left corner": false
"Top right corner": false
"Middle left": false
"Middle right": false
"Bottom left corner": false
"Bottom right corner": false
}
holes_rect: false
material: settings.materials[0]
theme: settings.themes[0]
order: 1
texts: [
{
text: "Din text här"
size: 10
align: "Mitten"
style: "Normal"
}
]
size: {
width: 30 #in mms
height: 10 #ingored if auto is true
radius: 10 #for circle
autoRadius: true #for circle
autoHeight: true
autoWidth: true
}
font: "Arial"
tape: false
comment: ""
getModels = ->
if localStorage.models?
JSON.parse(localStorage['models'])
else
models = []
models.push copyObj(modelTemplate)
models
saveModels = (models) ->
localStorage.models = JSON.stringify(models)
roundRect = (x, y, width, height, radius, borderWidth, fillColor, strokeColor) ->
new Konva.Shape
sceneFunc: (ctx) ->
ctx.beginPath()
ctx.moveTo(x + radius, y)
ctx.lineTo(x + width - radius, y)
ctx.quadraticCurveTo(x + width, y, x + width, y + radius)
ctx.lineTo(x + width, y + height - radius)
ctx.quadraticCurveTo(x + width, y + height, x + width - radius, y + height)
ctx.lineTo(x + radius, y + height)
ctx.quadraticCurveTo(x, y + height, x, y + height - radius)
ctx.lineTo(x, y + radius)
ctx.quadraticCurveTo(x, y, x + radius, y)
ctx.closePath()
ctx.fillStrokeShape(@)
fill: fillColor || 'black'
stroke: strokeColor || 'black'
strokeWidth: borderWidth
shadowOffsetX: 3
shadowOffsetY: 2
shadowBlur: 15
rectKonva = (x, y, width, height, borderWidth, fillColor, strokeColor) ->
new Konva.Rect
x: x
y: y
width: width
height: height
strokeWidth: 1
fill: fillColor || 'black'
stroke: strokeColor || 'black'
strokeWidth: borderWidth
shadowOffsetX: 3
shadowOffsetY: 2
shadowBlur: 15
simpleRect = (x, y, width, height) ->
new Konva.Rect
x: x
y: y
width: width
height: height
# fill: 'white'
stroke: 'black'
strokeWidth: 1
whiteRect = (x, y, width, height) ->
new Konva.Rect
x: x
y: y
width: width
height: height
fill: 'white'
stroke: 'black'
strokeWidth: 1
simpleCircle = (x, y, radius) ->
new Konva.Circle
x: x,
y: y,
radius: radius || 6,
fill: 'white',
stroke: 'black',
strokeWidth: 1
circleKonva = (x, y, radius, borderWidth, fillColor, strokeColor) ->
new Konva.Circle
x: x + radius,
y: y + radius,
radius: radius,
fill: fillColor || 'white'
stroke: strokeColor || 'black'
strokeWidth: borderWidth
shadowOffsetX: 3
shadowOffsetY: 2
shadowBlur: 15
renderLeftRule = (size) ->
#left
x = size.sign.x - settings.rules.indent
new Konva.Shape
sceneFunc: (context) ->
context.beginPath()
context.moveTo(x, size.sign.y)
context.lineTo(x, size.sign.y + size.sign.height)
context.closePath()
context.fillStrokeShape(@)
context.fillText("#{size.sign.origin.height} mm", size.sign.x - 65, size.sign.y + size.sign.height / 2)
stroke: 'black',
strokeWidth: settings.rules.width
renderTopRule = (size) ->
#top
y = size.sign.y - settings.rules.indent
new Konva.Shape
sceneFunc: (context) ->
#line
context.beginPath()
context.moveTo(size.sign.x, y)
context.lineTo(size.sign.x + size.sign.width, y)
context.closePath()
context.fillStrokeShape(@)
context.fillText("#{size.sign.origin.width} mm", size.sign.x + size.sign.width / 2 - 10, y - 10)
#size
stroke: 'black',
strokeWidth: settings.rules.width
translateAlign = (align) ->
switch align
when "Vänster" then "left"
when "Mitten" then "center"
when "Höger" then "right"
translateTextStyle = (style) ->
switch style
when "Normal" then "normal"
when "Kursiv" then "italic"
when "Fet" then "bold"
createText = (align, str, x, y, width, font, size, color, style = "Normal") ->
new Konva.Text
x: x
y: y
text: str
fontSize: toPixel(size)
fontFamily: font
fontStyle: translateTextStyle(style)
fill: color
width: width
wrap: 'none'
# padding: 20
align: translateAlign(align)
createText2 = (align, str, x, y, font, size, color, style = "Normal") ->
new Konva.Text
x: x
y: y
text: str
fontSize: toPixel(size)
fontFamily: font
fontStyle: translateTextStyle(style)
fill: color
# padding: 20
align: translateAlign(align)
simpleCreateText = (layer, model, obj) ->
textObj = createText(obj.align, obj.text, 0, 0, 0,
model.font, obj.size, model.theme.textColor)
console.log(textObj.getTextHeight())
layer.add textObj
textObj
createTextWarning = (stage, str) ->
sett = settings.errMsg
layer = new Konva.Layer
stage.add(layer)
msg = new Konva.Text
text: str
fontSize: sett.size
w = msg.getTextWidth()
h = msg.getTextHeight()
x = getSpace(settings.canvasWidth, w);
y = getSpace(settings.canvasHeight, h);
msg = createText2(null, str, x, y, null, 60, 'red')
layer.add roundRect(x - sett.padd.x, y - sett.padd.y, w + 2 * sett.padd.x, h + 2 * sett.padd.y,
settings.radius, 2, 'white', 'red');
layer.add msg
layer.draw
getSpace = (width, squareWidth) ->
width / 2 - squareWidth / 2
###
# Размер строк в пикселях
# @param model in mm
# @return размеры в пикселях
###
getRenderTextSizes = (model, k = 1) ->
sizes = []
for text in model.texts
textObj = createText2(text.align, text.text, 0, 0,
model.font, text.size * k, model.theme.textColor, text.style)
sizes.push {
width: textObj.getTextWidth()
height: textObj.getTextHeight()
}
sizes
###
# Максимальный размер шрифта в миллиметрах
# max size of font in mm
# @param texts массив объектов с размерами текста в мм
# @return mm
###
getMaxTextSize = (texts) ->
max = 0
for text in texts
if text.size > max then max = text.size
toPixel(max)
###
# Размер прямоугольника вокруг строк
# @param sizes
# @param texts
###
getRectForText = (sizes) ->
width = 0
height = 0
for size in sizes
if size.width > width then width = size.width
height += size.height
{
width: width
height: height
}
###
# Округление
###
roundTo = (x, to = 1) ->
Math.ceil(x / to) * to;
###
# Ширина текста в мм
###
getTextWidth = (sizes) ->
maxLen = 0
for size in sizes
if size.width > maxLen then maxLen = size.width
maxLen
###
# Высота текста в мм
###
getTextHeight = (sizes) ->
sum = 0
for size in sizes
sum += size.height
sum
###
# Размер знака в пикселях
###
getSignSize = (textSize, padding, round = false) ->
if round
{
width: toPixel(roundTo(toMillimeters(textSize.width + padding.width()), settings.roundTo))
height: toPixel(roundTo(toMillimeters(textSize.height + padding.height()), settings.roundTo))
padding: padding
}
else
{
width: textSize.width + padding.width()
height: textSize.height + padding.height()
padding: padding
}
getSignWidth = (size, padding) ->
size + padding
getSignHeight = (size, padding) ->
size + padding
toPixel = (mm) ->
mm * settings.pixel_size
toMillimeters = (px) ->
px / settings.pixel_size
getMax = (a, b) ->
if (a > b) then a else b
getPadding = (model, maxTextSize) ->
padding = maxTextSize / 2
h = model.holes
is_left = h["Middle left"] || h["Top left corner"] || h["Bottom left corner"]
is_right = h["Middle right"] || h["Top right corner"] || h["Bottom right corner"]
{
top: padding
bottom: padding
left: if (is_left) then padding + toPixel(2.5) else padding
right: if (is_right) then padding + toPixel(2.5) else padding
width: () -> this.left + this.right
height: () -> this.top + this.bottom
hole: padding
text: 0
}
getRoundPadding = (model, maxTextSize) ->
padding = maxTextSize * 2
h = model.holes
is_left = h["Middle left"] || h["Top left corner"] || h["Bottom left corner"]
is_right = h["Middle right"] || h["Top right corner"] || h["Bottom right corner"]
padding_ = if is_left || is_right then padding + toPixel(2.5) else padding
{
indent: padding_
text: 0
hole: padding
}
getBalancingCoefficient = (width, height, canvasWidth, canvasHeight) ->
fatalWidth = width / canvasWidth
fatalHeight = height / canvasHeight
oneWeUse = if fatalHeight > fatalWidth then fatalHeight else fatalWidth
if oneWeUse > settings.magic_coeff
new_k = oneWeUse
while new_k > settings.magic_coeff
new_k *= settings.step_coeff
(new_k / oneWeUse).toFixed(4)
else
1
getHoles = (model, signBegin, signSize, padding, k) ->
holes = {}
holes.radius = k * settings.holes_radius
padding = if (holes.radius * 2 < settings.min_hole_padd) then settings.min_hole_padd else holes.radius * 2
top = signBegin.y + padding
bottom = signBegin.y + signSize.height - padding
middle = signBegin.y + signSize.height / 2
left = signBegin.x + padding
right = signBegin.x + signSize.width - padding
middle_ = signBegin.x + signSize.width / 2
holes.coord = {
"Top": {
x: middle_
y: top
}
"Top left corner": {
x: left
y: top
},
"Top right corner": {
x: right
y: top
},
"Middle left": {
x: left
y: middle
},
"Middle right": {
x: right
y: middle
},
"Bottom left corner": {
x: left
y: bottom
},
"Bottom right corner": {
x: right
y: bottom
}
}
holes
###
# @params in mm
###
checkSize = (width, height, radius = false) ->
str = null;
if (height < settings.minSize) then str = "Höjden på skylten är för liten"
if (width < settings.minSize) then str = "Bredden på skylten är för liten"
if (height > settings.maxHeight) then str = "Höjden på skylten är för stor"
if (width > settings.maxWidth) then str = "Bredden på skylten är för stor"
if radius
if (radius < settings.minSize) then str = "Diametern för skylten är för liten"
if (radius > settings.maxHeight) then str = "Diametern för skylten är för stor"
return str || false;
clearStage = (stage) ->
stage.clear()
stage.getLayers().toArray().forEach((la) -> la.destroy())
return
onChange = (stage, model, errorCallback, updateSize) ->
calcRound = (text, maxTextSize) ->
sign = {}
padding = getRoundPadding(model, maxTextSize)
if (model.size.autoRadius)
sign.width = getSignWidth(text.width, padding.indent) # в функцию getWidthSign для каждого model.shape
sign.height = getSignHeight(text.height, padding.indent)
sign.height = sign.width = getMax(sign.width, sign.height)
else
# размер вручную
sign.width = sign.height = toPixel(model.size.radius) # <- diameter
if (settings.debug)
console.log(padding.indent)
return false if (toPixel(model.size.radius) < text.width + padding.indent)
sign
calcRect = (text, maxTextSize) ->
padding = getPadding(model, maxTextSize)
sign = getSignSize(text, padding)
if (!model.size.autoWidth)
return 'w' if (toPixel(model.size.width) < sign.width)
sign.width = toPixel(model.size.width)
#text.width = sign.width - padding.width()
if (!model.size.autoHeight)
return 'h' if (toPixel(model.size.height) < sign.height)
sign.height = toPixel(model.size.height)
text.height = sign.height - padding.height()
padding.text = (text.height - getTextHeight(sizes)) / model.texts.length
sign
getSignBegin = (signSize) ->
{
x: getSpace(settings.canvasWidth, signSize.width)
y: getSpace(settings.canvasHeight, signSize.height)
}
getTextBegin = (begin, text, padding) ->
textBegin = {}
if model.shape is 'rund'
textBegin.x = getSpace(settings.canvasWidth, text.width)
textBegin.y = getSpace(settings.canvasHeight, text.height)
else
textBegin.x = begin.x + padding.left
textBegin.y = begin.y + (padding.top + padding.text / 2)
textBegin
console.clear()
if (!model.size.width || !model.size.height)
errorCallback('Недопустимый размер')
clearStage(stage)
return
if (!model.size.autoHeight || !model.size.autoWidth || !model.size.autoRadius)
if ((str = checkSize(model.size.width, model.size.height, model.size.radius)) != false)
errorCallback(str)
clearStage(stage)
return
sizes = getRenderTextSizes(model)
textRect = getRectForText(sizes)
if model.shape is 'rund'
signSize = calcRound(textRect, getMaxTextSize(model.texts))
if !signSize
errorCallback("För liten diameter")
clearStage(stage)
return
else
signSize = calcRect(textRect, getMaxTextSize(model.texts))
padding = signSize.padding
if typeof signSize == 'string'
errors =
w: "För liten bredd"
h: "För liten höjd"
errorCallback(errors[signSize])
clearStage(stage)
return
if ((str = checkSize(toMillimeters(signSize.width), toMillimeters(signSize.height))) != false)
clearStage(stage)
errorCallback(str)
return
k = getBalancingCoefficient(signSize.width, signSize.height, settings.canvasWidth, settings.canvasHeight)
if model.shape is 'rund'
sizes = getRenderTextSizes(model, k)
textRect = getRectForText(sizes) # уже за zoom-ено
padding = getRoundPadding(model, getMaxTextSize(model.texts) * k)
signSize.width *= k
signSize.height *= k
padding.indent *= k
else
textRect.height *= k
textRect.width *= k
_signSize = signSize
if model.size.autoWidth || model.size.autoHeight
_padding = getPadding(model, getMaxTextSize(model.texts) * k)
_signSize = getSignSize(textRect, _padding)
console.warn("INITIAL: ", (toMillimeters(_signSize.width) / k), toMillimeters(_signSize.height) / k)
# rounding width
#_signSize.width = toPixel(roundTo(toMillimeters(_signSize.width / k).toFixed(0)), settings.roundTo) * k
_signSize.width = toPixel(roundTo(toMillimeters(_signSize.width / k), settings.roundTo).toFixed(0)) * k
console.warn("ROUNDED: ", _signSize)
if model.size.autoWidth
signSize.width = _signSize.width
textRect.width = _signSize.width - _padding.width()
padding.left = _padding.left
padding.right = _padding.right
else
signSize.width *= k
padding.left *= k
padding.right *= k
textRect.width = signSize.width - padding.width()
if model.size.autoHeight
signSize.height = _signSize.height
padding.top = _padding.top
padding.bottom = _padding.bottom
padding.text = _padding.text
else
signSize.height *= k
padding.top *= k
padding.bottom *= k
padding.text *= k
signBegin = getSignBegin(signSize)
textBegin = getTextBegin(signBegin, textRect, padding)
size = {
k: k #to delete
sign:
x: signBegin.x
y: signBegin.y
width: signSize.width
height: signSize.height
origin:
width: +toMillimeters(signSize.width / k).toFixed(0)
height: +toMillimeters(signSize.height / k).toFixed(0)
text:
x: textBegin.x
y: textBegin.y
width: textRect.width
height: textRect.height
font: sizes
padding: padding #to delete
holes: getHoles(model, signBegin, signSize, padding.hole, k)
}
console.log "k: #{size.k}"
console.log("text")
console.log("x: #{size.text.x}; y: #{size.text.y}")
console.log("width: #{size.text.width}; height: #{size.text.height}")
console.log("sign")
console.log("x: #{size.sign.x}; y: #{size.sign.y}")
console.log("width: #{size.sign.width}; height: #{size.sign.height}")
console.log "text padding: #{padding.text}"
#putting new sizes to model
if model.size.autoWidth
# console.warn "Updated width"
updateSize.width(size.sign.origin.width)
if model.size.autoHeight
# console.warn "Updated height"
updateSize.height(size.sign.origin.height)
errorCallback(null)
reRender(stage, model, size)
reRender = (stage, model, size) ->
clearStage(stage)
color = {}
if (model.material is 'Plast')
color.bgColor = model.theme.bgColor
color.textColor = model.theme.textColor
else
color.bgColor = settings.theme_metal.bgColor
color.textColor = settings.theme_metal.textColor
shapeLayer = new Konva.Layer()
textLayer = new Konva.Layer()
stage.add shapeLayer
stage.add textLayer
posY = size.text.y
for text, id in model.texts
textKonva = createText(text.align, text.text, size.text.x, posY, size.text.width,
model.font, size.k * text.size, color.textColor, text.style)
if (settings.debug)
rect = simpleRect(size.text.x, size.text.y, size.text.width, textKonva.getHeight())
posY += textKonva.getHeight() + size.padding.text
if (settings.debug)
textLayer.add(rect)
textLayer.add(textKonva)
# forEnd
switch model.shape
when 'rektangulär'
shape = rectKonva(size.sign.x, size.sign.y, size.sign.width, size.sign.height,
settings.borderWidth, color.bgColor, color.textColor)
when 'rund'
shape = circleKonva(size.sign.x, size.sign.y, size.sign.width / 2,
settings.borderWidth, color.bgColor, color.textColor)
if (settings.debug)
debug = simpleRect(size.sign.x, size.sign.y, size.sign.width, size.sign.height)
else
shape = roundRect(size.sign.x, size.sign.y, size.sign.width, size.sign.height,
settings.radius, settings.borderWidth, color.bgColor, color.textColor)
shapeLayer.add(shape)
if (settings.debug && debug?)
shapeLayer.add(debug)
for hole, isShow of model.holes
if (isShow)
if (model.holes_rect)
hole = whiteRect(size.holes.coord[hole].x, size.holes.coord[hole].y,
settings.hole_rect.width, settings.hole_rect.height)
else
hole = simpleCircle(size.holes.coord[hole].x, size.holes.coord[hole].y, size.holes.radius)
shapeLayer.add(hole)
leftRule = renderLeftRule(size)
topRule = renderTopRule(size)
shapeLayer.add(leftRule)
shapeLayer.add(topRule)
shapeLayer.draw()
textLayer.draw()
#controllers
signs.controller 'shapesController', ($scope, $rootScope) ->
$scope.shapes = settings.shapes
$scope.showShapes = (material) ->
material == "Plast"
$scope.setShape = (shape) ->
$scope.model.shape = shape
if shape == "rund"
$rootScope.setHole("Inga")
signs.controller 'holesController', ($scope, $rootScope) ->
$scope.holes = settings.holes_interface
$scope.showHoles = (material) ->
material == "Plast"
$scope.getHoleName = (model = $scope.model) ->
if model.holes["Middle left"] and model.holes["Middle right"]
return "2 hål"
else if model.holes["Top left corner"] and model.holes["Top right corner"] and model.holes["Bottom left corner"] and model.holes["Top right corner"]
return "4 hål"
"Inga"
$rootScope.getHoleName = $scope.getHoleName
$scope.setHole = (hole) ->
for key, value of $scope.model.holes
$scope.model.holes[key] = false
switch hole
when '2 hål'
$scope.model.holes["Middle left"] = true
$scope.model.holes["Middle right"] = true
when '4 hål'
$scope.model.holes["Top left corner"] = true
$scope.model.holes["Top right corner"] = true
$scope.model.holes["Bottom left corner"] = true
$scope.model.holes["Bottom right corner"] = true
$rootScope.setHole = $scope.setHole
$scope.showHole = (hole) ->
if hole == "4 hål" and $scope.model.shape == "rund"
return false
true
signs.controller 'fontsController', ($scope) ->
$scope.fonts = settings.fonts
$scope.showFonts = (material) ->
material == "Plast" or material == "Metall"
signs.controller 'materialsController', ($scope) ->
$scope.materials = settings.materials
$scope.changeMaterial = (material) ->
unless $scope.model.material is material
unless JSON.stringify($scope.model) == JSON.stringify(modelTemplate)
swal
title: "Är du säker?"
text: "Du kommer att förlora alla nuvarande inställningar om du byter material!"
type: "warning"
showCancelButton: true
confirmButtonColor: "green"
confirmButtonText: "Ja"
cancelButtonText: "Ångra"
closeOnConfirm: yes
, ->
$scope.$apply ->
model = copyObj(modelTemplate)
$scope.models[$scope.current] = model
$scope.updateCurrentModel($scope.current)
$scope.model.material = material
else
$scope.model.material = material
signs.controller 'sizeController', ($scope) ->
$scope.showSize = ->
$scope.model.material == "Plast" or $scope.model.material == "Metall"
$scope.showRadius = ->
$scope.model.shape == "rund"
$scope.showWidthHeight = ->
$scope.model.shape == "rektangulär" or $scope.model.shape == "rundad rektangulär"
$scope.showRadiusError = () ->
$scope.sizeError == "För liten diameter"
$scope.showWidthError = () ->
$scope.sizeError == "För liten bredd"
$scope.showHeightError = () ->
$scope.sizeError == "För liten höjd"
#something here
signs.controller 'themesController', ($scope) ->
$scope.themes = settings.themes
$scope.showThemes = (material) ->
material == "Plast"
signs.controller 'textController', ($scope) ->
$scope.alignment = settings.alignment
$scope.textStyles = settings.textStyles
$scope.isDisabled = -> $scope.model.texts.length >= settings.maxLinesOfText
$scope.addText = () ->
unless $scope.isDisabled()
$scope.model.texts.push copyObj(modelTemplate.texts[0])
$scope.removeText = ($index) ->
$scope.model.texts.splice($index, 1)
$scope.setAlign = (align, index) ->
$scope.model.texts[index].align = align
$scope.setStyle = (style, index) ->
$scope.model.texts[index].style = style
$scope.increaseSize = (index, size = 1) ->
$scope.model.texts[index].size = parseInt($scope.model.texts[index].size) + size
$scope.decreaseSize = (index, size = 1) ->
if $scope.model.texts[index].size >= 1
$scope.increaseSize(index, -size)
signs.controller 'modelsController', ($scope) ->
$scope.minSize = settings.minSize
$scope.maxHeight = settings.maxHeight
$scope.maxWidth = settings.maxWidth
$scope.maxRadius = settings.maxRadius
$scope.blockRendering = false
$scope.updateSizes = (width, height) ->
$scope.blockRendering = true
$scope.model.size.width = width
$scope.model.size.height = height
$scope.model.size.radius = width
setTimeout ->
$scope.blockRendering = false
, 1
$scope.updateSize =
width: (width) ->
$scope.blockRendering = true
$scope.model.size.width = width
setTimeout ->
$scope.blockRendering = false
, 1
height: (height) ->
$scope.blockRendering = true
$scope.model.size.height = height
setTimeout ->
$scope.blockRendering = false
, 1
radius: (radius) ->
$scope.blockRendering = true
$scope.model.size.radius = radius
setTimeout ->
$scope.blockRendering = false
, 1
$scope.errorCallback = (error) ->
if error?
console.warn error
$scope.sizeError = error
switch error
when "För liten höjd"
1
when "För liten bredd"
2
when "För liten diameter"
3
$scope.removeSign = ($index) ->
$scope.models.splice($index, 1)
unless $scope.models.length == 0
$scope.updateCurrentModel($scope.models.length - 1)
else
$scope.newSign()
return
$scope.copySign = ($index) ->
$scope.models.push(copyObj($scope.models[$index]))
$scope.init = ->
$scope.stage = new Konva.Stage
container: 'preview'
width: settings.canvasWidth
height: settings.canvasHeight
$scope.file = {}
$scope.$watch 'file', (newVal) ->
reader = new FileReader()
reader.readAsBinaryString(newVal)
$scope.addTextRow = (model, row, rowIndex, textIndex, sizeIndex) ->
if row[rowIndex]? and row[sizeIndex]?
defaultText = copyObj(modelTemplate.texts[0])
model.texts[textIndex] = defaultText
model.texts[textIndex].text = row[rowIndex]
model.texts[textIndex].size = row[sizeIndex]
$scope.addTheme = (model, row, rowIndex) ->
model.theme = switch row[rowIndex]
when 'Röd-Vit' then {
name: "röd / vit"
textColor: "white"
bgColor: "red"
}
when 'Vit-Svart' then {
name: "vit / svart"
textColor: "black"
bgColor: "white"
}
when 'Gul-Svart' then {
name: "gul / svart"
textColor: "black"
bgColor: "yellow"
}
when 'Grön-Vit' then {
name: "grön / vit"
textColor: "white"
bgColor: "green"
}
when 'Brun-Vit' then {
name: "brun / vit"
textColor: "white"
bgColor: "#964B00"
}
when 'Blå-Vit' then {
name: "blå / vit"