Skip to content

Commit

Permalink
Merge pull request #62 from simonsobs/dev
Browse files Browse the repository at this point in the history
Reorganize components in accordance with backend plugins
  • Loading branch information
TaiSakuma authored May 31, 2024
2 parents bc9a967 + 912d20a commit e7e9843
Show file tree
Hide file tree
Showing 32 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/app/AppBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import { useDisplay } from "vuetify";
import { useConfig } from "@/utils/config";
import ToggleDarkModeButton from "@/components/utils/ToggleDarkModeButtonWithTooltip.vue";
import AutoModeButton from "@/components/auto-mode-button/AutoModeButton.vue";
import { AutoModeButton } from "@/components/schedule";
import TabNavi from "./TabNavi.vue";
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useRoute } from "vue-router";
import { useRdbRunQuery } from "@/graphql/codegen/generated";
import RunCard from "@/components/History/RunCard.vue";
import RunCard from "./RunCard.vue";
const route = useRoute();
const runNo = Number(route.params.runNo);
Expand Down
File renamed without changes.
1 change: 1 addition & 0 deletions src/components/schedule/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export { default as AutoModeButton } from "./auto-mode/auto-mode-button/AutoModeButton.vue";
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
</template>

<script setup lang="ts">
import QueueFrame from "@/components/queue/QueueFrame.vue";
import QueueFrame from "./QueueFrame.vue";
</script>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions src/plugins/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { createRouter, createWebHistory } from "vue-router";
import type { RouteRecordRaw } from "vue-router";

import HomeView from "@/views/main/HomeView.vue";
import RunsView from "@/views/db/RunsView.vue";
import RunView from "@/views/db/RunView.vue";
import RunsView from "@/components/rdb/RunsView.vue";
import RunView from "@/components/rdb/RunView.vue";

const routes: RouteRecordRaw[] = [
{
Expand All @@ -19,7 +19,7 @@ const routes: RouteRecordRaw[] = [
{
path: "/queue",
name: "queue",
component: () => import("@/views/QueueView.vue"),
component: () => import("@/components/schedule/queue/QueueView.vue"),
},
{
path: "/db/runs",
Expand Down

0 comments on commit e7e9843

Please sign in to comment.