@@ -52,22 +52,42 @@ export default {
52
52
let limits = this.modifyLimits(
53
53
this.limitsSettings[this.selectedLimitsSet],
54
54
)
55
- this.calcLimits(limits)
56
- return {
57
- '--height': this.height + 'px',
58
- '--width': this.width + 'px',
59
- '--container-width': this.width - 5 + 'px',
60
- '--position': this.calcPosition(value, limits) + '%',
61
- '--redlow-height': this.redLow + '%',
62
- '--redhigh-height': this.redHigh + '%',
63
- '--yellowlow-height': this.yellowLow + '%',
64
- '--yellowhigh-height': this.yellowHigh + '%',
65
- '--greenlow-height': this.greenLow + '%',
66
- '--greenhigh-height': this.greenHigh + '%',
67
- '--blue-height': this.blue + '%',
55
+ if (limits) {
56
+ this.calcLimits(limits)
57
+ return {
58
+ '--height': this.height + 'px',
59
+ '--width': this.width + 'px',
60
+ '--container-width': this.width - 5 + 'px',
61
+ '--position': this.calcPosition(value, limits) + '%',
62
+ '--redlow-height': this.redLow + '%',
63
+ '--redhigh-height': this.redHigh + '%',
64
+ '--yellowlow-height': this.yellowLow + '%',
65
+ '--yellowhigh-height': this.yellowHigh + '%',
66
+ '--greenlow-height': this.greenLow + '%',
67
+ '--greenhigh-height': this.greenHigh + '%',
68
+ '--blue-height': this.blue + '%',
69
+ }
70
+ } else {
71
+ // See errorCaptured in Openc3Screen.vue for how this is parsed
72
+ throw {
73
+ line: this.line,
74
+ lineNumber: this.lineNumber,
75
+ keyword: 'LIMITSCOLUMN',
76
+ parameters: this.parameters,
77
+ message: 'Item has no limits settings',
78
+ usage: 'Only items with limits',
79
+ }
68
80
}
69
81
},
70
82
},
83
+ created() {
84
+ this.verifyNumParams(
85
+ 'LIMITSCOLUMN',
86
+ 3,
87
+ 6,
88
+ 'LIMITSCOLUMN <TARGET> <PACKET> <ITEM> <TYPE> <WIDTH> <HEIGHT>',
89
+ )
90
+ },
71
91
}
72
92
</script>
73
93
0 commit comments