Main.vue 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  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-item to="/main/admin/test-ecpay" prepend-icon="payments">
  119. <v-list-item-title>網紅加速器</v-list-item-title>
  120. </v-list-item>
  121. </v-list>
  122. </v-sheet>
  123. <v-divider></v-divider>
  124. <v-sheet class="">
  125. <v-list subheader v-show="hasAdminAccess">
  126. <v-list-subheader
  127. ><span v-show="!miniDrawer">Admin</span></v-list-subheader
  128. >
  129. <v-list-item to="/main/admin/users/all" prepend-icon="people">
  130. <v-list-item-title>Manage Users</v-list-item-title>
  131. </v-list-item>
  132. <v-list-item
  133. to="/main/admin/users/create"
  134. prepend-icon="person_add"
  135. >
  136. <v-list-item-title>Create User</v-list-item-title>
  137. </v-list-item>
  138. <v-list-item
  139. to="/main/admin/test-celery"
  140. prepend-icon="engineering"
  141. >
  142. <v-list-item-title>Test Celery</v-list-item-title>
  143. </v-list-item>
  144. <v-list-item
  145. to="/main/admin/test-ecpay"
  146. prepend-icon="payments"
  147. >
  148. <v-list-item-title>Test ECPay</v-list-item-title>
  149. </v-list-item>
  150. <v-list-item
  151. to="/main/admin/test-style-preview"
  152. prepend-icon="preview"
  153. >
  154. <v-list-item-title>Test Style Preview</v-list-item-title>
  155. </v-list-item>
  156. </v-list>
  157. </v-sheet>
  158. <!-- <v-spacer></v-spacer> -->
  159. <v-sheet class="mt-auto">
  160. <v-list>
  161. <v-list-item @click="logout" prepend-icon="logout">
  162. <v-list-item-title>{{ t("logout") }}</v-list-item-title>
  163. </v-list-item>
  164. <v-divider></v-divider>
  165. <a
  166. href="https://ai.choozmo.com/ai-presenter/info/"
  167. class="d-flex justify-center mt-3"
  168. target="_blank"
  169. >
  170. <img
  171. src="@/assets/img/Choozmo-logo.png"
  172. alt="Choozmo-logo"
  173. class="logo-img"
  174. />
  175. </a>
  176. <!-- <v-list-item
  177. @click="switchMiniDrawer"
  178. :prepend-icon="miniDrawer ? 'chevron_right' : 'chevron_left'"
  179. >
  180. <v-list-item-title>{{ t("collapse") }}</v-list-item-title>
  181. </v-list-item> -->
  182. </v-list>
  183. </v-sheet>
  184. </v-sheet>
  185. </v-navigation-drawer>
  186. <v-main>
  187. <v-toolbar class="navbar">
  188. <v-app-bar-nav-icon @click.stop="switchShowDrawer"></v-app-bar-nav-icon>
  189. <v-toolbar-title v-text="appName"></v-toolbar-title>
  190. <v-spacer></v-spacer>
  191. <v-menu bottom left offset-y :close-on-content-click="false">
  192. <template v-slot:activator="{ props }">
  193. <v-btn icon="more_vert" v-bind="props" />
  194. </template>
  195. <v-list>
  196. <!-- <v-list-item to="/main/profile" append-icon="person">
  197. <v-list-item-title>{{ t("userProfile") }}</v-list-item-title>
  198. </v-list-item> -->
  199. <!-- <v-list-item to="/main/profile" append-icon="language">
  200. <v-list-item-title>{{ t("language") }}</v-list-item-title>
  201. </v-list-item> -->
  202. <v-list-group value="Admin">
  203. <template v-slot:activator="{ props }">
  204. <v-list-item v-bind="props">
  205. <v-list-item-title>{{ t("language") }}</v-list-item-title>
  206. </v-list-item>
  207. </template>
  208. <v-list-item
  209. v-for="(item, index) in lang"
  210. :key="index"
  211. :value="item.text"
  212. @click="setLang(item.text)"
  213. >
  214. <v-list-item-title>{{ item.title }}</v-list-item-title>
  215. </v-list-item>
  216. </v-list-group>
  217. <v-list-item @click="logout" append-icon="logout">
  218. <v-list-item-title>{{ t("logout") }}</v-list-item-title>
  219. </v-list-item>
  220. </v-list>
  221. </v-menu>
  222. </v-toolbar>
  223. <router-view></router-view>
  224. </v-main>
  225. <v-footer class="pa-3" app>
  226. <v-spacer></v-spacer>
  227. <span>&copy; ChoozMo</span>
  228. </v-footer>
  229. </div>
  230. </template>
  231. <style lang="scss">
  232. .navbar {
  233. color: #fff;
  234. background-image: linear-gradient(
  235. -225deg,
  236. rgb(234, 84, 19) 35%,
  237. rgb(178, 69, 146) 100%
  238. );
  239. }
  240. .logo-img {
  241. max-width: 150px;
  242. }
  243. .card-title {
  244. letter-spacing: 1px !important;
  245. }
  246. </style>