Skip to content

Commit 3467e57

Browse files
authored
Merge pull request #1786 from OpenC3/limits_widgets
Nice error message for widget items without limits
2 parents 91f43eb + c368633 commit 3467e57

9 files changed

+80
-26
lines changed

openc3-cosmos-init/plugins/packages/openc3-vue-common/src/components/EditScreenDialog.vue

+9-8
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
</v-tooltip>
5353
</div>
5454
</v-toolbar>
55-
<v-card-text>
55+
<v-card-text style="max-height: 90vh">
5656
<v-row class="mt-3"> Upload a screen file. </v-row>
5757
<v-row no-gutters align="center">
5858
<v-btn
@@ -88,10 +88,13 @@
8888
</v-list>
8989
</v-menu>
9090
</v-row>
91-
<v-row v-for="(error, index) in editErrors" :key="index" class="my-3">
92-
<span class="text-red" v-text="error"></span>
91+
<!-- Make the error messages a max height and scrollable -->
92+
<v-row style="max-height: 120px; overflow-y: auto">
93+
<div v-for="(error, index) in editErrors" :key="index">
94+
<span class="text-red" v-text="error"></span>
95+
</div>
9396
</v-row>
94-
<v-row>
97+
<v-row class="mt-5">
9598
<span
9699
>Ctrl-space brings up autocomplete. Right click keywords for
97100
documentation.</span
@@ -168,10 +171,8 @@ export default {
168171
if (this.errors.length !== 0) {
169172
let messages = new Set()
170173
let result = []
174+
this.errors.sort((a, b) => a.lineNumber - b.lineNumber)
171175
for (const error of this.errors) {
172-
if (messages.has(error.message)) {
173-
continue
174-
}
175176
let msg = `At ${error.lineNumber}: (${error.line}) ${error.message}.`
176177
if (error.usage) {
177178
msg += ` Usage: ${error.usage}`
@@ -322,7 +323,7 @@ export default {
322323
</style>
323324
<style scoped>
324325
.editor {
325-
height: 50vh;
326+
height: 45vh;
326327
width: 75vw;
327328
position: relative;
328329
font-size: 16px;

openc3-cosmos-init/plugins/packages/openc3-vue-common/src/components/Openc3Screen.vue

+3-1
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@
163163
/>
164164

165165
<!-- Error dialog -->
166-
<v-dialog v-model="errorDialog" max-width="600">
166+
<v-dialog v-model="errorDialog" width="60vw">
167167
<v-toolbar height="24">
168168
<v-spacer />
169169
<span> Screen: {{ target }} {{ screen }} Errors </span>
@@ -778,5 +778,7 @@ export default {
778778
}
779779
.v-textarea :deep(textarea) {
780780
padding: 5px;
781+
-webkit-mask-image: unset;
782+
mask-image: unset;
781783
}
782784
</style>

openc3-cosmos-init/plugins/packages/openc3-vue-common/src/widgets/BarColumn.js

+3
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,9 @@ export default {
101101
},
102102
methods: {
103103
modifyLimits(limitsSettings) {
104+
if (!limitsSettings) {
105+
return
106+
}
104107
// By default the red bars take 10% of the display
105108
this.redLow = 10
106109
this.redHigh = 10

openc3-cosmos-init/plugins/packages/openc3-vue-common/src/widgets/LabelvaluelimitsbarWidget.vue

+2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@
3535
:settings="[...appliedSettings]"
3636
:screen-values="screenValues"
3737
:widget-index="2"
38+
:line="line"
39+
:lineNumber="lineNumber"
3840
/>
3941
</div>
4042
</template>

openc3-cosmos-init/plugins/packages/openc3-vue-common/src/widgets/LabelvaluelimitscolumnWidget.vue

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
:settings="[...appliedSettings]"
3535
:screen-values="screenValues"
3636
:widget-index="2"
37+
:line="line"
38+
:lineNumber="lineNumber"
3739
/>
3840
<value-widget
3941
v-bind="$attrs"

openc3-cosmos-init/plugins/packages/openc3-vue-common/src/widgets/LimitsbarWidget.vue

+24-4
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,34 @@ export default {
5252
computed: {
5353
limitsRange() {
5454
let values = this.limitsSettings[this.selectedLimitsSet]
55-
// Format like the DetailsDialog formatLimit function
56-
if (values.length === 4) {
57-
return `RL/${values[0]} YL/${values[1]} YH/${values[2]} RH/${values[3]}`
55+
if (values) {
56+
// Format like the DetailsDialog formatLimit function
57+
if (values.length === 4) {
58+
return `RL/${values[0]} YL/${values[1]} YH/${values[2]} RH/${values[3]}`
59+
} else {
60+
return `RL/${values[0]} YL/${values[1]} YH/${values[2]} RH/${values[3]} GL/${values[4]} GH/${values[5]}`
61+
}
5862
} else {
59-
return `RL/${values[0]} YL/${values[1]} YH/${values[2]} RH/${values[3]} GL/${values[4]} GH/${values[5]}`
63+
// See errorCaptured in Openc3Screen.vue for how this is parsed
64+
throw {
65+
line: this.line,
66+
lineNumber: this.lineNumber,
67+
keyword: 'LIMITSBAR',
68+
parameters: this.parameters,
69+
message: 'Item has no limits settings',
70+
usage: 'Only items with limits',
71+
}
6072
}
6173
},
6274
},
75+
created() {
76+
this.verifyNumParams(
77+
'LIMITSBAR',
78+
3,
79+
6,
80+
'LIMITSBAR <TARGET> <PACKET> <ITEM> <TYPE> <WIDTH> <HEIGHT>',
81+
)
82+
},
6383
}
6484
</script>
6585

openc3-cosmos-init/plugins/packages/openc3-vue-common/src/widgets/LimitscolumnWidget.vue

+33-13
Original file line numberDiff line numberDiff line change
@@ -52,22 +52,42 @@ export default {
5252
let limits = this.modifyLimits(
5353
this.limitsSettings[this.selectedLimitsSet],
5454
)
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+
}
6880
}
6981
},
7082
},
83+
created() {
84+
this.verifyNumParams(
85+
'LIMITSCOLUMN',
86+
3,
87+
6,
88+
'LIMITSCOLUMN <TARGET> <PACKET> <ITEM> <TYPE> <WIDTH> <HEIGHT>',
89+
)
90+
},
7191
}
7292
</script>
7393

openc3-cosmos-init/plugins/packages/openc3-vue-common/src/widgets/ValuelimitsbarWidget.vue

+2
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@
3636
:settings="[...appliedSettings]"
3737
:screen-values="screenValues"
3838
:widget-index="1"
39+
:line="line"
40+
:lineNumber="lineNumber"
3941
/>
4042
</div>
4143
</template>

openc3-cosmos-init/plugins/packages/openc3-vue-common/src/widgets/ValuelimitscolumnWidget.vue

+2
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
:settings="[...appliedSettings]"
3030
:screen-values="screenValues"
3131
:widget-index="1"
32+
:line="line"
33+
:lineNumber="lineNumber"
3234
/>
3335
<value-widget
3436
v-bind="$attrs"

0 commit comments

Comments
 (0)