index.vue 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359
  1. <template>
  2. <div class="app admin-area">
  3. <main-header />
  4. <div class="tabs is-centered">
  5. <ul>
  6. <li
  7. :class="{ 'is-active': currentTab == 'test' }"
  8. ref="test-tab"
  9. @click="showTab('test')"
  10. >
  11. <router-link class="tab test" to="/admin/test">
  12. <i class="material-icons">music_note</i>
  13. <span>&nbsp;Test</span>
  14. </router-link>
  15. </li>
  16. <li
  17. :class="{ 'is-active': currentTab == 'songs' }"
  18. ref="songs-tab"
  19. @click="showTab('songs')"
  20. >
  21. <router-link class="tab songs" to="/admin/songs">
  22. <i class="material-icons">music_note</i>
  23. <span>&nbsp;Songs</span>
  24. </router-link>
  25. </li>
  26. <li
  27. :class="{ 'is-active': currentTab == 'stations' }"
  28. ref="stations-tab"
  29. @click="showTab('stations')"
  30. >
  31. <router-link class="tab stations" to="/admin/stations">
  32. <i class="material-icons">radio</i>
  33. <span>&nbsp;Stations</span>
  34. </router-link>
  35. </li>
  36. <li
  37. :class="{ 'is-active': currentTab == 'playlists' }"
  38. ref="playlists-tab"
  39. @click="showTab('playlists')"
  40. >
  41. <router-link class="tab playlists" to="/admin/playlists">
  42. <i class="material-icons">library_music</i>
  43. <span>&nbsp;Playlists</span>
  44. </router-link>
  45. </li>
  46. <li
  47. :class="{ 'is-active': currentTab == 'reports' }"
  48. ref="reports-tab"
  49. @click="showTab('reports')"
  50. >
  51. <router-link class="tab reports" to="/admin/reports">
  52. <i class="material-icons">flag</i>
  53. <span>&nbsp;Reports</span>
  54. </router-link>
  55. </li>
  56. <li
  57. :class="{ 'is-active': currentTab == 'news' }"
  58. ref="news-tab"
  59. @click="showTab('news')"
  60. >
  61. <router-link class="tab news" to="/admin/news">
  62. <i class="material-icons">chrome_reader_mode</i>
  63. <span>&nbsp;News</span>
  64. </router-link>
  65. </li>
  66. <li
  67. :class="{ 'is-active': currentTab == 'users' }"
  68. ref="users-tab"
  69. @click="showTab('users')"
  70. >
  71. <router-link class="tab users" to="/admin/users">
  72. <i class="material-icons">people</i>
  73. <span>&nbsp;Users</span>
  74. </router-link>
  75. </li>
  76. <li
  77. :class="{ 'is-active': currentTab == 'statistics' }"
  78. ref="statistics-tab"
  79. @click="showTab('statistics')"
  80. >
  81. <router-link class="tab statistics" to="/admin/statistics">
  82. <i class="material-icons">show_chart</i>
  83. <span>&nbsp;Statistics</span>
  84. </router-link>
  85. </li>
  86. <li
  87. :class="{ 'is-active': currentTab == 'punishments' }"
  88. ref="punishments-tab"
  89. @click="showTab('punishments')"
  90. >
  91. <router-link
  92. class="tab punishments"
  93. to="/admin/punishments"
  94. >
  95. <i class="material-icons">gavel</i>
  96. <span>&nbsp;Punishments</span>
  97. </router-link>
  98. </li>
  99. </ul>
  100. </div>
  101. <div class="admin-container">
  102. <test v-if="currentTab == 'test'" />
  103. <songs v-if="currentTab == 'songs'" />
  104. <stations v-if="currentTab == 'stations'" />
  105. <playlists v-if="currentTab == 'playlists'" />
  106. <reports v-if="currentTab == 'reports'" />
  107. <news v-if="currentTab == 'news'" />
  108. <users v-if="currentTab == 'users'" />
  109. <statistics v-if="currentTab == 'statistics'" />
  110. <punishments v-if="currentTab == 'punishments'" />
  111. </div>
  112. <main-footer />
  113. </div>
  114. </template>
  115. <script>
  116. import { mapGetters } from "vuex";
  117. import { defineAsyncComponent } from "vue";
  118. import MainHeader from "@/components/layout/MainHeader.vue";
  119. import MainFooter from "@/components/layout/MainFooter.vue";
  120. export default {
  121. components: {
  122. MainHeader,
  123. MainFooter,
  124. Test: defineAsyncComponent(() => import("./tabs/Test.vue")),
  125. Songs: defineAsyncComponent(() => import("./tabs/Songs.vue")),
  126. Stations: defineAsyncComponent(() => import("./tabs/Stations.vue")),
  127. Playlists: defineAsyncComponent(() => import("./tabs/Playlists.vue")),
  128. Reports: defineAsyncComponent(() => import("./tabs/Reports.vue")),
  129. News: defineAsyncComponent(() => import("./tabs/News.vue")),
  130. Users: defineAsyncComponent(() => import("./tabs/Users.vue")),
  131. Statistics: defineAsyncComponent(() => import("./tabs/Statistics.vue")),
  132. Punishments: defineAsyncComponent(() =>
  133. import("./tabs/Punishments.vue")
  134. )
  135. },
  136. data() {
  137. return {
  138. currentTab: ""
  139. };
  140. },
  141. computed: mapGetters({
  142. socket: "websockets/getSocket"
  143. }),
  144. watch: {
  145. $route(route) {
  146. this.changeTab(route.path);
  147. }
  148. },
  149. mounted() {
  150. this.changeTab(this.$route.path);
  151. },
  152. beforeUnmount() {
  153. this.socket.dispatch("apis.leaveRooms");
  154. },
  155. methods: {
  156. changeTab(path) {
  157. switch (path) {
  158. case "/admin/test":
  159. this.showTab("test");
  160. break;
  161. case "/admin/songs":
  162. this.showTab("songs");
  163. break;
  164. case "/admin/stations":
  165. this.showTab("stations");
  166. break;
  167. case "/admin/playlists":
  168. this.showTab("playlists");
  169. break;
  170. case "/admin/reports":
  171. this.showTab("reports");
  172. break;
  173. case "/admin/news":
  174. this.showTab("news");
  175. break;
  176. case "/admin/users":
  177. this.showTab("users");
  178. break;
  179. case "/admin/statistics":
  180. this.showTab("statistics");
  181. break;
  182. case "/admin/punishments":
  183. this.showTab("punishments");
  184. break;
  185. default:
  186. if (path.startsWith("/admin")) {
  187. if (localStorage.getItem("lastAdminPage")) {
  188. this.$router.push(
  189. `/admin/${localStorage.getItem(
  190. "lastAdminPage"
  191. )}`
  192. );
  193. } else {
  194. this.$router.push(`/admin/songs`);
  195. }
  196. }
  197. }
  198. },
  199. showTab(tab) {
  200. if (this.$refs[`${tab}-tab`])
  201. this.$refs[`${tab}-tab`].scrollIntoView({
  202. inline: "center",
  203. block: "nearest"
  204. });
  205. this.currentTab = tab;
  206. localStorage.setItem("lastAdminPage", tab);
  207. }
  208. }
  209. };
  210. </script>
  211. <style lang="scss">
  212. .christmas-mode .admin-area .christmas-lights {
  213. top: 102px !important;
  214. }
  215. .main-container .container {
  216. .button-row {
  217. display: flex;
  218. flex-direction: row;
  219. flex-wrap: wrap;
  220. justify-content: center;
  221. margin-bottom: 5px;
  222. & > .button,
  223. & > span {
  224. margin: 5px 0;
  225. &:not(:first-child) {
  226. margin-left: 5px;
  227. }
  228. }
  229. }
  230. }
  231. </style>
  232. <style lang="scss" scoped>
  233. .night-mode {
  234. .tabs {
  235. background-color: var(--dark-grey-2);
  236. border: 0;
  237. ul {
  238. border-bottom: 0;
  239. }
  240. }
  241. }
  242. /deep/ .container {
  243. position: relative;
  244. }
  245. /deep/ .box {
  246. box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
  247. display: block;
  248. &:not(:last-child) {
  249. margin-bottom: 20px;
  250. }
  251. }
  252. .main-container {
  253. height: auto;
  254. .admin-container {
  255. flex: 1 0 auto;
  256. margin-bottom: 20px;
  257. }
  258. }
  259. .tabs {
  260. padding-top: 10px;
  261. margin-top: -10px;
  262. background-color: var(--white);
  263. display: flex;
  264. line-height: 24px;
  265. overflow-y: hidden;
  266. overflow-x: auto;
  267. margin-bottom: 20px;
  268. user-select: none;
  269. ul {
  270. display: flex;
  271. align-items: center;
  272. /* -webkit-box-flex: 1; */
  273. flex-grow: 1;
  274. flex-shrink: 0;
  275. justify-content: center;
  276. border-bottom: 1px solid var(--light-grey-2);
  277. }
  278. .songs {
  279. color: var(--primary-color);
  280. border-color: var(--primary-color);
  281. }
  282. .stations {
  283. color: var(--purple);
  284. border-color: var(--purple);
  285. }
  286. .playlists {
  287. color: var(--light-purple);
  288. border-color: var(--light-purple);
  289. }
  290. .reports {
  291. color: var(--yellow);
  292. border-color: var(--yellow);
  293. }
  294. .news {
  295. color: var(--light-pink);
  296. border-color: var(--light-pink);
  297. }
  298. .users {
  299. color: var(--dark-pink);
  300. border-color: var(--dark-pink);
  301. }
  302. .statistics {
  303. color: var(--orange);
  304. border-color: var(--orange);
  305. }
  306. .punishments {
  307. color: var(--dark-orange);
  308. border-color: var(--dark-orange);
  309. }
  310. .tab {
  311. transition: all 0.2s ease-in-out;
  312. font-weight: 500;
  313. border-bottom: solid 0px;
  314. padding: 6px 12px;
  315. display: flex;
  316. margin-bottom: -1px;
  317. }
  318. .tab:hover {
  319. border-width: 3px;
  320. transition: all 0.2s ease-in-out;
  321. font-weight: 600;
  322. }
  323. .is-active .tab {
  324. font-weight: 600;
  325. border-width: 3px;
  326. }
  327. }
  328. @media screen and (min-width: 980px) {
  329. /deep/ .container {
  330. margin: 0 auto;
  331. max-width: 960px;
  332. }
  333. }
  334. @media screen and (min-width: 1180px) {
  335. /deep/ .container {
  336. max-width: 1200px;
  337. }
  338. }
  339. </style>