Main.vue 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262
  1. <script 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. export default {
  10. setup() {
  11. onBeforeRouteUpdate((to, from, next) => {
  12. routeGuardAdmin(to, from, next);
  13. });
  14. const { t, locale } = useI18n();
  15. const mainStore = useMainStore();
  16. const mainStoreRef = storeToRefs(mainStore);
  17. const hasAdminAccess = mainStoreRef.readhasAdminAccess;
  18. const miniDrawer = mainStoreRef.readDashboardMiniDrawer;
  19. const showDrawer = mainStoreRef.readDashboardShowDrawer;
  20. function switchMiniDrawer() {
  21. mainStore.setDashboardMiniDrawer(
  22. !mainStoreRef.readDashboardMiniDrawer.value
  23. );
  24. }
  25. function switchShowDrawer() {
  26. mainStore.setDashboardShowDrawer(
  27. !mainStoreRef.readDashboardShowDrawer.value
  28. );
  29. }
  30. (function () {
  31. if (window.innerWidth < 600) {
  32. switchShowDrawer();
  33. }
  34. })();
  35. function logout() {
  36. mainStore.logOut();
  37. }
  38. const lang = reactive([
  39. { title: "English", text: "en" },
  40. { title: "中文", text: "zh" },
  41. ]);
  42. function setLang(lang: String) {
  43. locale.value = `${lang}`;
  44. localStorage.setItem("lang", `${lang}`);
  45. }
  46. return {
  47. t,
  48. locale,
  49. hasAdminAccess,
  50. miniDrawer,
  51. showDrawer,
  52. switchMiniDrawer,
  53. switchShowDrawer,
  54. logout,
  55. lang,
  56. setLang,
  57. appName,
  58. };
  59. },
  60. beforeRouteEnter(to, from, next) {
  61. routeGuardAdmin(to, from, next);
  62. },
  63. };
  64. const routeGuardAdmin = async (
  65. to: RouteLocationNormalized,
  66. from: RouteLocationNormalized,
  67. next: NavigationGuardNext
  68. ) => {
  69. const mainStore = useMainStore();
  70. const mainStoreRef = storeToRefs(mainStore);
  71. if (!mainStoreRef.readhasAdminAccess) {
  72. next("/main");
  73. } else {
  74. next();
  75. }
  76. };
  77. </script>
  78. <template>
  79. <div>
  80. <v-navigation-drawer persistent :rail="miniDrawer" v-model="showDrawer">
  81. <v-sheet class="d-flex flex-column fill-height">
  82. <v-sheet>
  83. <!-- <a href="https://ai.choozmo.com/ai-presenter/info/" class="d-flex justify-center mt-3">
  84. <img src="@/assets/img/Choozmo-logo.png" alt="" class="logo-img" />
  85. </a> -->
  86. <v-list>
  87. <v-list-item
  88. class="py-4"
  89. @click="switchShowDrawer"
  90. :prepend-icon="miniDrawer ? 'chevron_right' : 'chevron_left'"
  91. >
  92. </v-list-item>
  93. <!-- <v-list-subheader><span v-show="!miniDrawer">Main menu</span></v-list-subheader> -->
  94. <v-list-item to="/main/dashboard" prepend-icon="dashboard">
  95. <v-list-item-title>{{ t("dashboard") }}</v-list-item-title>
  96. </v-list-item>
  97. <v-list-item to="/main/make-video" prepend-icon="video_call">
  98. <v-list-item-title>{{ t("makeVideo") }}</v-list-item-title>
  99. </v-list-item>
  100. <v-list-item to="/main/progress" prepend-icon="list">
  101. <v-list-item-title>{{ t("progress") }}</v-list-item-title>
  102. </v-list-item>
  103. <v-list-item to="/main/make-article" prepend-icon="article">
  104. <v-list-item-title>{{ t("article") }}</v-list-item-title>
  105. </v-list-item>
  106. <v-list-item to="/main/make-image" prepend-icon="image">
  107. <v-list-item-title>圖片優化</v-list-item-title>
  108. </v-list-item>
  109. <!-- <v-list-item to="/main/profile/view" prepend-icon="person">
  110. <v-list-item-title>{{ t("userProfile") }}</v-list-item-title>
  111. </v-list-item> -->
  112. <v-list-item to="/main/profile/edit" prepend-icon="edit">
  113. <v-list-item-title>{{ t("editProfile") }}</v-list-item-title>
  114. </v-list-item>
  115. <v-list-item to="/main/profile/password" prepend-icon="key">
  116. <v-list-item-title>{{ t("changePassword") }}</v-list-item-title>
  117. </v-list-item>
  118. </v-list>
  119. </v-sheet>
  120. <v-divider></v-divider>
  121. <v-sheet class="">
  122. <v-list subheader v-show="hasAdminAccess">
  123. <v-list-subheader
  124. ><span v-show="!miniDrawer">Admin</span></v-list-subheader
  125. >
  126. <v-list-item to="/main/admin/users/all" prepend-icon="people">
  127. <v-list-item-title>Manage Users</v-list-item-title>
  128. </v-list-item>
  129. <v-list-item
  130. to="/main/admin/users/create"
  131. prepend-icon="person_add"
  132. >
  133. <v-list-item-title>Create User</v-list-item-title>
  134. </v-list-item>
  135. <v-list-item
  136. to="/main/admin/test-celery"
  137. prepend-icon="engineering"
  138. >
  139. <v-list-item-title>Test Celery</v-list-item-title>
  140. </v-list-item>
  141. <v-list-item
  142. to="/main/admin/test-ecpay"
  143. prepend-icon="payments"
  144. >
  145. <v-list-item-title>Test ECPay</v-list-item-title>
  146. </v-list-item>
  147. <v-list-item
  148. to="/main/admin/test-style-preview"
  149. prepend-icon="preview"
  150. >
  151. <v-list-item-title>Test Style Preview</v-list-item-title>
  152. </v-list-item>
  153. </v-list>
  154. </v-sheet>
  155. <!-- <v-spacer></v-spacer> -->
  156. <v-sheet class="mt-auto">
  157. <v-list>
  158. <v-list-item @click="logout" prepend-icon="logout">
  159. <v-list-item-title>{{ t("logout") }}</v-list-item-title>
  160. </v-list-item>
  161. <v-divider></v-divider>
  162. <a
  163. href="https://ai.choozmo.com/ai-presenter/info/"
  164. class="d-flex justify-center mt-3"
  165. target="_blank"
  166. >
  167. <img
  168. src="@/assets/img/Choozmo-logo.png"
  169. alt="Choozmo-logo"
  170. class="logo-img"
  171. />
  172. </a>
  173. <!-- <v-list-item
  174. @click="switchMiniDrawer"
  175. :prepend-icon="miniDrawer ? 'chevron_right' : 'chevron_left'"
  176. >
  177. <v-list-item-title>{{ t("collapse") }}</v-list-item-title>
  178. </v-list-item> -->
  179. </v-list>
  180. </v-sheet>
  181. </v-sheet>
  182. </v-navigation-drawer>
  183. <v-main>
  184. <v-toolbar class="navbar">
  185. <v-app-bar-nav-icon @click.stop="switchShowDrawer"></v-app-bar-nav-icon>
  186. <v-toolbar-title v-text="appName"></v-toolbar-title>
  187. <v-spacer></v-spacer>
  188. <v-menu bottom left offset-y :close-on-content-click="false">
  189. <template v-slot:activator="{ props }">
  190. <v-btn icon="more_vert" v-bind="props" />
  191. </template>
  192. <v-list>
  193. <!-- <v-list-item to="/main/profile" append-icon="person">
  194. <v-list-item-title>{{ t("userProfile") }}</v-list-item-title>
  195. </v-list-item> -->
  196. <!-- <v-list-item to="/main/profile" append-icon="language">
  197. <v-list-item-title>{{ t("language") }}</v-list-item-title>
  198. </v-list-item> -->
  199. <v-list-group value="Admin">
  200. <template v-slot:activator="{ props }">
  201. <v-list-item v-bind="props">
  202. <v-list-item-title>{{ t("language") }}</v-list-item-title>
  203. </v-list-item>
  204. </template>
  205. <v-list-item
  206. v-for="(item, index) in lang"
  207. :key="index"
  208. :value="item.text"
  209. @click="setLang(item.text)"
  210. >
  211. <v-list-item-title>{{ item.title }}</v-list-item-title>
  212. </v-list-item>
  213. </v-list-group>
  214. <v-list-item @click="logout" append-icon="logout">
  215. <v-list-item-title>{{ t("logout") }}</v-list-item-title>
  216. </v-list-item>
  217. </v-list>
  218. </v-menu>
  219. </v-toolbar>
  220. <router-view></router-view>
  221. </v-main>
  222. <v-footer class="pa-3" app>
  223. <v-spacer></v-spacer>
  224. <span>&copy; ChoozMo</span>
  225. </v-footer>
  226. </div>
  227. </template>
  228. <style lang="scss">
  229. .navbar {
  230. color: #fff;
  231. background-image: linear-gradient(
  232. -225deg,
  233. rgb(234, 84, 19) 35%,
  234. rgb(178, 69, 146) 100%
  235. );
  236. }
  237. .logo-img {
  238. max-width: 150px;
  239. }
  240. .card-title {
  241. letter-spacing: 1px !important;
  242. }
  243. </style>