diff --git a/photon-client/src/components/dashboard/PipelineConfigCard.vue b/photon-client/src/components/dashboard/ConfigOptions.vue similarity index 87% rename from photon-client/src/components/dashboard/PipelineConfigCard.vue rename to photon-client/src/components/dashboard/ConfigOptions.vue index eb2733f0b9..ca878ceacd 100644 --- a/photon-client/src/components/dashboard/PipelineConfigCard.vue +++ b/photon-client/src/components/dashboard/ConfigOptions.vue @@ -3,15 +3,15 @@ import type { Component } from "vue"; import { computed, getCurrentInstance, onBeforeUpdate, ref } from "vue"; import { useCameraSettingsStore } from "@/stores/settings/CameraSettingsStore"; import { useStateStore } from "@/stores/StateStore"; -import InputTab from "@/components/dashboard/PipelineConfigTabs/InputTab.vue"; -import ThresholdTab from "@/components/dashboard/PipelineConfigTabs/ThresholdTab.vue"; -import ContoursTab from "@/components/dashboard/PipelineConfigTabs/ContoursTab.vue"; -import AprilTagTab from "@/components/dashboard/PipelineConfigTabs/AprilTagTab.vue"; -import ArucoTab from "@/components/dashboard/PipelineConfigTabs/ArucoTab.vue"; -import OutputTab from "@/components/dashboard/PipelineConfigTabs/OutputTab.vue"; -import TargetsTab from "@/components/dashboard/PipelineConfigTabs/TargetsTab.vue"; -import PnPTab from "@/components/dashboard/PipelineConfigTabs/PnPTab.vue"; -import Map3DTab from "@/components/dashboard/PipelineConfigTabs/Map3DTab.vue"; +import InputTab from "@/components/dashboard/tabs/InputTab.vue"; +import ThresholdTab from "@/components/dashboard/tabs/ThresholdTab.vue"; +import ContoursTab from "@/components/dashboard/tabs/ContoursTab.vue"; +import AprilTagTab from "@/components/dashboard/tabs/AprilTagTab.vue"; +import ArucoTab from "@/components/dashboard/tabs/ArucoTab.vue"; +import OutputTab from "@/components/dashboard/tabs/OutputTab.vue"; +import TargetsTab from "@/components/dashboard/tabs/TargetsTab.vue"; +import PnPTab from "@/components/dashboard/tabs/PnPTab.vue"; +import Map3DTab from "@/components/dashboard/tabs/Map3DTab.vue"; import { WebsocketPipelineType } from "@/types/WebsocketDataTypes"; interface ConfigOption { diff --git a/photon-client/src/components/dashboard/PipelineConfigTabs/AprilTagTab.vue b/photon-client/src/components/dashboard/tabs/AprilTagTab.vue similarity index 100% rename from photon-client/src/components/dashboard/PipelineConfigTabs/AprilTagTab.vue rename to photon-client/src/components/dashboard/tabs/AprilTagTab.vue diff --git a/photon-client/src/components/dashboard/PipelineConfigTabs/ArucoTab.vue b/photon-client/src/components/dashboard/tabs/ArucoTab.vue similarity index 100% rename from photon-client/src/components/dashboard/PipelineConfigTabs/ArucoTab.vue rename to photon-client/src/components/dashboard/tabs/ArucoTab.vue diff --git a/photon-client/src/components/dashboard/PipelineConfigTabs/ContoursTab.vue b/photon-client/src/components/dashboard/tabs/ContoursTab.vue similarity index 100% rename from photon-client/src/components/dashboard/PipelineConfigTabs/ContoursTab.vue rename to photon-client/src/components/dashboard/tabs/ContoursTab.vue diff --git a/photon-client/src/components/dashboard/PipelineConfigTabs/InputTab.vue b/photon-client/src/components/dashboard/tabs/InputTab.vue similarity index 100% rename from photon-client/src/components/dashboard/PipelineConfigTabs/InputTab.vue rename to photon-client/src/components/dashboard/tabs/InputTab.vue diff --git a/photon-client/src/components/dashboard/PipelineConfigTabs/Map3DTab.vue b/photon-client/src/components/dashboard/tabs/Map3DTab.vue similarity index 100% rename from photon-client/src/components/dashboard/PipelineConfigTabs/Map3DTab.vue rename to photon-client/src/components/dashboard/tabs/Map3DTab.vue diff --git a/photon-client/src/components/dashboard/PipelineConfigTabs/OutputTab.vue b/photon-client/src/components/dashboard/tabs/OutputTab.vue similarity index 100% rename from photon-client/src/components/dashboard/PipelineConfigTabs/OutputTab.vue rename to photon-client/src/components/dashboard/tabs/OutputTab.vue diff --git a/photon-client/src/components/dashboard/PipelineConfigTabs/PnPTab.vue b/photon-client/src/components/dashboard/tabs/PnPTab.vue similarity index 100% rename from photon-client/src/components/dashboard/PipelineConfigTabs/PnPTab.vue rename to photon-client/src/components/dashboard/tabs/PnPTab.vue diff --git a/photon-client/src/components/dashboard/PipelineConfigTabs/TargetsTab.vue b/photon-client/src/components/dashboard/tabs/TargetsTab.vue similarity index 100% rename from photon-client/src/components/dashboard/PipelineConfigTabs/TargetsTab.vue rename to photon-client/src/components/dashboard/tabs/TargetsTab.vue diff --git a/photon-client/src/components/dashboard/PipelineConfigTabs/ThresholdTab.vue b/photon-client/src/components/dashboard/tabs/ThresholdTab.vue similarity index 100% rename from photon-client/src/components/dashboard/PipelineConfigTabs/ThresholdTab.vue rename to photon-client/src/components/dashboard/tabs/ThresholdTab.vue diff --git a/photon-client/src/views/DashboardView.vue b/photon-client/src/views/DashboardView.vue index 8aa4f2389b..aa57a9be7f 100644 --- a/photon-client/src/views/DashboardView.vue +++ b/photon-client/src/views/DashboardView.vue @@ -3,7 +3,7 @@ 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/PipelineConfigCard.vue"; +import PipelineConfigCard from "@/components/dashboard/ConfigOptions.vue"; import { useCameraSettingsStore } from "@/stores/settings/CameraSettingsStore"; import { useStateStore } from "@/stores/StateStore";