mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-26 01:51:40 +00:00
* Fixup colored shape backend code * More colored shape stuff * Start adding shape change to drawing * Mostly works! * Add powercell image for shape test mode * Make super-duper-sure to release stuff Fixes colored shape leak * Move approx poly dp into Contour * Adjust epsilon threshold * Add dialog to change pipeline type * Run spotless * Make yes red :> * Move "no" button * Fix duplication/deletion name logic and switching * Fix compilation errors from rebase * Update VisionSourceManager.java * Update type dialog, remove duplicate popup The dropdown still switches even if the user says "no" tho Co-authored-by: Banks Troutman <btrout.dhrs@gmail.com>
132 lines
3.1 KiB
Vue
132 lines
3.1 KiB
Vue
<template>
|
|
<div>
|
|
<v-row
|
|
dense
|
|
align="center"
|
|
>
|
|
<v-col cols="2">
|
|
<tooltipped-label
|
|
:tooltip="tooltip"
|
|
:text="name"
|
|
/>
|
|
</v-col>
|
|
<v-col cols="10">
|
|
<v-range-slider
|
|
:value="localValue"
|
|
:max="max"
|
|
:min="min"
|
|
:disabled="disabled"
|
|
hide-details
|
|
class="align-center"
|
|
dark
|
|
color="accent"
|
|
:step="step"
|
|
@input="handleInput"
|
|
@mousedown="$emit('rollback', localValue)"
|
|
>
|
|
<template v-slot:prepend>
|
|
<v-text-field
|
|
dark
|
|
color="accent"
|
|
:value="localValue[0]"
|
|
:max="max"
|
|
:min="min"
|
|
class="mt-0 pt-0"
|
|
hide-details
|
|
single-line
|
|
type="number"
|
|
style="width: 60px"
|
|
:step="step"
|
|
@input="handleChange"
|
|
@focus="prependFocused = true"
|
|
@blur="prependFocused = false"
|
|
/>
|
|
</template>
|
|
|
|
<template v-slot:append>
|
|
<v-text-field
|
|
dark
|
|
color="accent"
|
|
:value="localValue[1]"
|
|
:max="max"
|
|
:min="min"
|
|
class="mt-0 pt-0"
|
|
hide-details
|
|
single-line
|
|
type="number"
|
|
style="width: 60px"
|
|
:step="step"
|
|
@input="handleChange"
|
|
@focus="appendFocused = true"
|
|
@blur="appendFocused = false"
|
|
/>
|
|
</template>
|
|
</v-range-slider>
|
|
</v-col>
|
|
</v-row>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import TooltippedLabel from "./cv-tooltipped-label";
|
|
|
|
export default {
|
|
name: "RangeSlider",
|
|
components: {
|
|
TooltippedLabel,
|
|
},
|
|
// eslint-disable-next-line vue/require-prop-types
|
|
props: ["name", "min", "max", "value", "step", "tooltip", "disabled"],
|
|
data() {
|
|
return {
|
|
prependFocused: false,
|
|
appendFocused: false,
|
|
currentTempVal: null,
|
|
};
|
|
},
|
|
computed: {
|
|
localValue: {
|
|
get() {
|
|
return Object.values(this.value || [0, 0]);
|
|
},
|
|
set(value) {
|
|
this.$emit("input", value);
|
|
},
|
|
},
|
|
},
|
|
methods: {
|
|
delay(ms) {
|
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
},
|
|
|
|
async handleChange(val) {
|
|
this.currentTempVal = val;
|
|
|
|
await this.delay(200).then(() => {
|
|
let i = 0;
|
|
if (this.prependFocused === false && this.appendFocused === true) {
|
|
i = 1;
|
|
}
|
|
|
|
// will get empty string if entry is not a number
|
|
if (this.currentTempVal !== val || val === "") return;
|
|
|
|
let parsed = parseFloat(val);
|
|
let tmp = this.localValue;
|
|
tmp[i] = Math.max(this.min, Math.min(parsed, this.max));
|
|
this.localValue = tmp;
|
|
|
|
this.$emit("rollback", this.localValue);
|
|
});
|
|
},
|
|
handleInput(val) {
|
|
if (!this.prependFocused || !this.appendFocused) {
|
|
this.localValue = val;
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="" scoped>
|
|
</style> |