diff --git a/src/App.vue b/src/App.vue
index fc9be59..159a217 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -48,13 +48,13 @@ import { Action, Getter } from "vuex-class";
import { mapGetters, mapActions } from "vuex";
-import Error from "@/components/states/Error.vue";
-import Loading from "@/components/states/Loading.vue";
-import Clock from "@/components/ui/Clock.vue";
-import Options from "@/components/ui/Options.vue";
+import Error from "@/components/App/Error.vue";
+import Loading from "@/components/App/Loading.vue";
+
+import Clock from "@/components/App/Clock.vue";
@Component({
- components: { Error, Loading, Clock, Options },
+ components: { Error, Loading, Clock },
})
export default class App extends Vue {
@Getter("getStations") stations;
@@ -78,12 +78,10 @@ export default class App extends Vue {
.view-anim {
&-enter {
- // transform: translateX(-5%);
opacity: 0.02;
}
&-leave-to {
- // transform: translateX(5%);
opacity: 0.02;
}
diff --git a/src/components/ui/Clock.vue b/src/components/App/Clock.vue
similarity index 100%
rename from src/components/ui/Clock.vue
rename to src/components/App/Clock.vue
diff --git a/src/components/states/Error.vue b/src/components/App/Error.vue
similarity index 100%
rename from src/components/states/Error.vue
rename to src/components/App/Error.vue
diff --git a/src/components/states/Loading.vue b/src/components/App/Loading.vue
similarity index 100%
rename from src/components/states/Loading.vue
rename to src/components/App/Loading.vue
diff --git a/src/components/ui/UpdatesCard.vue b/src/components/App/UpdatesCard.vue
similarity index 100%
rename from src/components/ui/UpdatesCard.vue
rename to src/components/App/UpdatesCard.vue
diff --git a/src/components/ui/LegendCard.vue b/src/components/StationsView/LegendCard.vue
similarity index 100%
rename from src/components/ui/LegendCard.vue
rename to src/components/StationsView/LegendCard.vue
diff --git a/src/components/ui/OptionCard.vue b/src/components/StationsView/OptionCard.vue
similarity index 100%
rename from src/components/ui/OptionCard.vue
rename to src/components/StationsView/OptionCard.vue
diff --git a/src/components/ui/Options.vue b/src/components/StationsView/Options.vue
similarity index 93%
rename from src/components/ui/Options.vue
rename to src/components/StationsView/Options.vue
index 73b9f11..4165496 100644
--- a/src/components/ui/Options.vue
+++ b/src/components/StationsView/Options.vue
@@ -34,8 +34,8 @@
+
+
\ No newline at end of file
diff --git a/src/components/StationsView/Table.vue b/src/components/StationsView/Table.vue
deleted file mode 100644
index 299e9cc..0000000
--- a/src/components/StationsView/Table.vue
+++ /dev/null
@@ -1,370 +0,0 @@
-
-
-
-
-
-
-
-
- changeSorter(i)">
-
-
-
-
-
{ setFocusedStation(station.stationName) }"
- >
-
- {{station.stationName}}
-
-
- {{ (station.reqLevel && station.reqLevel > -1) ? (parseInt(station.reqLevel) >= 2 ? station.reqLevel : "L") : "?" }}
-
- ?
-
-
-
- {{station.occupiedTo}}
-
-
- {{station.online ? station.dispatcherName : ""}}
-
- {{station.dispatcherExp < 2 ? 'L' : station.dispatcherExp}}
-
- {{station.online ? (station.currentUsers + "/" + station.maxUsers) : ""}}
-
-
-
-
-
-
-
-
-
-
-
- {{station.routes.twoWay.catenary}}
-
- {{station.routes.twoWay.noCatenary}}
-
-
-
- {{station.routes.oneWay.catenary}}
-
- {{station.routes.oneWay.noCatenary}}
-
-
-