2023-08-21 01:51:35 -04:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import { computed } from "vue";
|
|
|
|
|
import CamerasCard from "@/components/dashboard/CamerasCard.vue";
|
|
|
|
|
import CameraAndPipelineSelectCard from "@/components/dashboard/CameraAndPipelineSelectCard.vue";
|
|
|
|
|
import StreamConfigCard from "@/components/dashboard/StreamConfigCard.vue";
|
|
|
|
|
import PipelineConfigCard from "@/components/dashboard/ConfigOptions.vue";
|
|
|
|
|
import { useCameraSettingsStore } from "@/stores/settings/CameraSettingsStore";
|
|
|
|
|
import { useStateStore } from "@/stores/StateStore";
|
2025-01-01 03:04:20 -05:00
|
|
|
import { PlaceholderCameraSettings } from "@/types/SettingTypes";
|
2023-08-21 01:51:35 -04:00
|
|
|
|
|
|
|
|
const cameraViewType = computed<number[]>({
|
|
|
|
|
get: (): number[] => {
|
|
|
|
|
// Only show the input stream in Color Picking Mode
|
2023-08-31 16:56:58 -04:00
|
|
|
if (useStateStore().colorPickingMode) return [0];
|
2023-08-21 01:51:35 -04:00
|
|
|
|
|
|
|
|
// Only show the output stream in Driver Mode or Calibration Mode
|
2023-08-31 16:56:58 -04:00
|
|
|
if (useCameraSettingsStore().isDriverMode || useCameraSettingsStore().isCalibrationMode) return [1];
|
2023-08-21 01:51:35 -04:00
|
|
|
|
|
|
|
|
const ret: number[] = [];
|
2023-08-31 16:56:58 -04:00
|
|
|
if (useCameraSettingsStore().currentPipelineSettings.inputShouldShow) {
|
2023-08-21 01:51:35 -04:00
|
|
|
ret.push(0);
|
|
|
|
|
}
|
2023-08-31 16:56:58 -04:00
|
|
|
if (useCameraSettingsStore().currentPipelineSettings.outputShouldShow) {
|
2023-08-21 01:51:35 -04:00
|
|
|
ret.push(1);
|
|
|
|
|
}
|
|
|
|
|
|
2023-08-31 16:56:58 -04:00
|
|
|
if (ret.length === 0) return [0];
|
2023-08-21 01:51:35 -04:00
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
|
},
|
2023-08-31 16:56:58 -04:00
|
|
|
set: (v) => {
|
|
|
|
|
useCameraSettingsStore().changeCurrentPipelineSetting(
|
|
|
|
|
{
|
|
|
|
|
inputShouldShow: v.includes(0),
|
|
|
|
|
outputShouldShow: v.includes(1)
|
|
|
|
|
},
|
|
|
|
|
true
|
|
|
|
|
);
|
2023-08-21 01:51:35 -04:00
|
|
|
}
|
|
|
|
|
});
|
2025-01-01 03:04:20 -05:00
|
|
|
|
|
|
|
|
// TODO - deduplicate with needsCamerasConfigured
|
|
|
|
|
const warningShown = computed<boolean>(() => {
|
|
|
|
|
return (
|
|
|
|
|
useCameraSettingsStore().cameras.length === 0 || useCameraSettingsStore().cameras[0] === PlaceholderCameraSettings
|
|
|
|
|
);
|
|
|
|
|
});
|
2023-08-21 01:51:35 -04:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2023-08-31 16:56:58 -04:00
|
|
|
<v-container class="pa-3" fluid>
|
|
|
|
|
<v-row no-gutters align="center" justify="center">
|
|
|
|
|
<v-col cols="12" class="pb-3 pr-lg-3" lg="8" align-self="stretch">
|
2023-08-21 01:51:35 -04:00
|
|
|
<CamerasCard v-model="cameraViewType" />
|
|
|
|
|
</v-col>
|
2023-08-31 16:56:58 -04:00
|
|
|
<v-col cols="12" class="pb-3" lg="4" style="display: flex; flex-direction: column" align-self="stretch">
|
2023-08-21 01:51:35 -04:00
|
|
|
<CameraAndPipelineSelectCard />
|
|
|
|
|
<StreamConfigCard v-model="cameraViewType" />
|
|
|
|
|
</v-col>
|
|
|
|
|
</v-row>
|
|
|
|
|
<PipelineConfigCard />
|
2025-01-01 03:04:20 -05:00
|
|
|
|
|
|
|
|
<!-- TODO - not sure this belongs here -->
|
|
|
|
|
<v-dialog :persistent="false" v-model="warningShown" v-if="warningShown" max-width="1500" dark>
|
|
|
|
|
<v-card dark flat color="primary">
|
|
|
|
|
<v-card-title>Setup some cameras to get started!</v-card-title>
|
|
|
|
|
<v-card-text>
|
|
|
|
|
No cameras activated - head to the <a href="#/cameraConfigs">Camera matching tab</a> to set some up!
|
|
|
|
|
</v-card-text>
|
|
|
|
|
</v-card>
|
|
|
|
|
</v-dialog>
|
2023-08-21 01:51:35 -04:00
|
|
|
</v-container>
|
|
|
|
|
</template>
|
2025-01-01 03:04:20 -05:00
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
a:link {
|
|
|
|
|
color: #ffd843;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
a:visited {
|
|
|
|
|
color: #ffd843;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
a:hover {
|
|
|
|
|
color: pink;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
text-decoration: underline;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
a:active {
|
|
|
|
|
color: yellow;
|
|
|
|
|
background-color: transparent;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
</style>
|