Main.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196
  1. <script setup lang="ts">
  2. import { appName } from "@/env";
  3. import { reactive } from "vue";
  4. import type { RouteLocationNormalized, NavigationGuardNext } from "vue-router";
  5. import { onBeforeRouteUpdate } from "vue-router";
  6. import { useMainStore } from "@/stores/main";
  7. import { storeToRefs } from "pinia";
  8. import { useI18n } from "vue-i18n";
  9. const { t, locale } = useI18n();
  10. const mainStore = useMainStore();
  11. const mainStoreRef = storeToRefs(mainStore);
  12. const hasAdminAccess = mainStoreRef.readhasAdminAccess;
  13. const miniDrawer = mainStoreRef.readDashboardMiniDrawer;
  14. const showDrawer = mainStoreRef.readDashboardShowDrawer;
  15. function switchMiniDrawer() {
  16. mainStore.setDashboardMiniDrawer(
  17. !mainStoreRef.readDashboardMiniDrawer.value
  18. );
  19. }
  20. function switchShowDrawer() {
  21. mainStore.setDashboardShowDrawer(
  22. !mainStoreRef.readDashboardShowDrawer.value
  23. );
  24. }
  25. function logout() {
  26. mainStore.logOut();
  27. }
  28. onBeforeRouteUpdate((to, from, next) => {
  29. routeGuardMain(to, from, next);
  30. });
  31. const lang = reactive([
  32. { title: "English", text: "en" },
  33. { title: "中文", text: "zh" },
  34. ]);
  35. function setLang(lang: String) {
  36. locale.value = `${lang}`;
  37. localStorage.setItem("lang", `${lang}`);
  38. }
  39. // beforeRouteEnter((to, from, next) =>{
  40. // routeGuardMain(to, from, next);
  41. // })
  42. const routeGuardMain = async (
  43. to: RouteLocationNormalized,
  44. from: RouteLocationNormalized,
  45. next: NavigationGuardNext
  46. ) => {
  47. if (to.path === "/main") {
  48. next("/main/dashboard");
  49. } else {
  50. next();
  51. }
  52. };
  53. </script>
  54. <template>
  55. <div>
  56. <v-navigation-drawer persistent :rail="miniDrawer" v-model="showDrawer">
  57. <v-sheet class="d-flex flex-column fill-height">
  58. <v-sheet class="">
  59. <v-list>
  60. <!-- <v-list-subheader><span v-show="!miniDrawer">Main menu</span></v-list-subheader> -->
  61. <v-list-item to="/main/dashboard" prepend-icon="dashboard">
  62. <v-list-item-title>{{ t("dashboard") }}</v-list-item-title>
  63. </v-list-item>
  64. <v-list-item to="/main/make-video" prepend-icon="video_call">
  65. <v-list-item-title>{{ t("makeVideo") }}</v-list-item-title>
  66. </v-list-item>
  67. <v-list-item to="/main/progress" prepend-icon="list">
  68. <v-list-item-title>{{ t("progress") }}</v-list-item-title>
  69. </v-list-item>
  70. <v-list-item to="/main/profile/view" prepend-icon="person">
  71. <v-list-item-title>{{ t("userProfile") }}</v-list-item-title>
  72. </v-list-item>
  73. <v-list-item to="/main/profile/edit" prepend-icon="edit">
  74. <v-list-item-title>{{ t("editProfile") }}</v-list-item-title>
  75. </v-list-item>
  76. <v-list-item to="/main/profile/password" prepend-icon="key">
  77. <v-list-item-title>{{ t("changePassword") }}</v-list-item-title>
  78. </v-list-item>
  79. </v-list>
  80. </v-sheet>
  81. <v-divider></v-divider>
  82. <v-sheet class="">
  83. <v-list subheader v-show="hasAdminAccess">
  84. <v-list-subheader
  85. ><span v-show="!miniDrawer">Admin</span></v-list-subheader
  86. >
  87. <v-list-item to="/main/admin/users/all" prepend-icon="people">
  88. <v-list-item-title>Manage Users</v-list-item-title>
  89. </v-list-item>
  90. <v-list-item
  91. to="/main/admin/users/create"
  92. prepend-icon="person_add"
  93. >
  94. <v-list-item-title>Create User</v-list-item-title>
  95. </v-list-item>
  96. <v-list-item
  97. to="/main/admin/test-celery"
  98. prepend-icon="engineering"
  99. >
  100. <v-list-item-title>Test Celery</v-list-item-title>
  101. </v-list-item>
  102. </v-list>
  103. </v-sheet>
  104. <!-- <v-spacer></v-spacer> -->
  105. <v-sheet class="mt-auto">
  106. <v-list>
  107. <v-list-item @click="logout" prepend-icon="logout">
  108. <v-list-item-title>{{ t("logout") }}</v-list-item-title>
  109. </v-list-item>
  110. <v-divider></v-divider>
  111. <v-list-item
  112. @click="switchMiniDrawer"
  113. :prepend-icon="miniDrawer ? 'chevron_right' : 'chevron_left'"
  114. >
  115. <v-list-item-title>{{ t("collapse") }}</v-list-item-title>
  116. </v-list-item>
  117. </v-list>
  118. </v-sheet>
  119. </v-sheet>
  120. </v-navigation-drawer>
  121. <v-main>
  122. <v-toolbar class="navbar">
  123. <v-app-bar-nav-icon @click.stop="switchShowDrawer"></v-app-bar-nav-icon>
  124. <v-toolbar-title v-text="appName"></v-toolbar-title>
  125. <v-spacer></v-spacer>
  126. <v-menu bottom left offset-y :close-on-content-click="false">
  127. <template v-slot:activator="{ props }">
  128. <v-btn icon="more_vert" v-bind="props" />
  129. </template>
  130. <v-list>
  131. <v-list-item to="/main/profile" append-icon="person">
  132. <v-list-item-title>{{ t("userProfile") }}</v-list-item-title>
  133. </v-list-item>
  134. <!-- <v-list-item to="/main/profile" append-icon="language">
  135. <v-list-item-title>{{ t("language") }}</v-list-item-title>
  136. </v-list-item> -->
  137. <v-list-group value="Admin">
  138. <template v-slot:activator="{ props }">
  139. <v-list-item v-bind="props">
  140. <v-list-item-title>{{ t("language") }}</v-list-item-title>
  141. </v-list-item>
  142. </template>
  143. <v-list-item
  144. v-for="(item, index) in lang"
  145. :key="index"
  146. :value="item.text"
  147. @click="setLang(item.text)"
  148. >
  149. <v-list-item-title>{{ item.title }}</v-list-item-title>
  150. </v-list-item>
  151. </v-list-group>
  152. <v-list-item @click="logout" append-icon="logout">
  153. <v-list-item-title>{{ t("logout") }}</v-list-item-title>
  154. </v-list-item>
  155. </v-list>
  156. </v-menu>
  157. </v-toolbar>
  158. <router-view></router-view>
  159. </v-main>
  160. <v-footer class="pa-3" app>
  161. <v-spacer></v-spacer>
  162. <span>&copy; {{ appName }}</span>
  163. </v-footer>
  164. </div>
  165. </template>
  166. <style lang="scss" scoped>
  167. .navbar {
  168. color: #fff;
  169. background-image: linear-gradient(
  170. -225deg,
  171. rgb(234, 84, 19) 35%,
  172. rgb(178, 69, 146) 100%
  173. );
  174. }
  175. </style>