123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901 |
- <script setup lang="ts">
- import {
- defineAsyncComponent,
- ref,
- watch,
- onMounted,
- onBeforeUnmount
- } from "vue";
- import { useRoute, useRouter } from "vue-router";
- import { useWebsocketsStore } from "@/stores/websockets";
- import { useUserAuthStore } from "@/stores/userAuth";
- import keyboardShortcuts from "@/keyboardShortcuts";
- const MainHeader = defineAsyncComponent(
- () => import("@/components/MainHeader.vue")
- );
- const MainFooter = defineAsyncComponent(
- () => import("@/components/MainFooter.vue")
- );
- const FloatingBox = defineAsyncComponent(
- () => import("@/components/FloatingBox.vue")
- );
- const route = useRoute();
- const router = useRouter();
- const { socket } = useWebsocketsStore();
- const { hasPermission } = useUserAuthStore();
- const currentTab = ref("");
- const siteSettings = ref({
- logo: "",
- sitename: ""
- });
- const sidebarActive = ref(true);
- const sidebarPadding = ref(0);
- const keyboardShortcutsHelper = ref();
- const childrenActive = ref({
- songs: false,
- users: false,
- youtube: false
- });
- const toggleChildren = payload => {
- if (typeof payload.force === "undefined")
- childrenActive.value[payload.child] =
- !childrenActive.value[payload.child];
- else childrenActive.value[payload.child] = payload.force;
- };
- const getTabFromPath = (path?) => {
- const localPath = path || route.path;
- return localPath.substr(0, 7) === "/admin/"
- ? localPath.substr(7, localPath.length)
- : null;
- };
- const onRouteChange = () => {
- if (currentTab.value.startsWith("songs")) {
- toggleChildren({ child: "songs", force: false });
- } else if (currentTab.value.startsWith("users")) {
- toggleChildren({ child: "users", force: false });
- } else if (currentTab.value.startsWith("youtube")) {
- toggleChildren({ child: "youtube", force: false });
- }
- currentTab.value = getTabFromPath();
- // if (this.$refs[`${currentTab.value}-tab`])
- // this.$refs[`${currentTab.value}-tab`].scrollIntoView({
- // inline: "center",
- // block: "nearest"
- // });
- localStorage.setItem("lastAdminPage", currentTab.value);
- if (currentTab.value.startsWith("songs"))
- toggleChildren({ child: "songs", force: true });
- else if (currentTab.value.startsWith("users"))
- toggleChildren({ child: "users", force: true });
- else if (currentTab.value.startsWith("youtube"))
- toggleChildren({ child: "youtube", force: true });
- };
- const toggleKeyboardShortcutsHelper = () => {
- keyboardShortcutsHelper.value.toggleBox();
- };
- const resetKeyboardShortcutsHelper = () => {
- keyboardShortcutsHelper.value.resetBox();
- };
- const toggleSidebar = () => {
- sidebarActive.value = !sidebarActive.value;
- localStorage.setItem("admin-sidebar-active", `${sidebarActive.value}`);
- };
- const calculateSidebarPadding = () => {
- const scrollTop = document.documentElement.scrollTop || 0;
- if (scrollTop <= 64) sidebarPadding.value = 64 - scrollTop;
- else sidebarPadding.value = 0;
- };
- watch(
- () => route.path,
- path => {
- if (getTabFromPath(path)) onRouteChange();
- }
- );
- onMounted(async () => {
- if (getTabFromPath()) {
- onRouteChange();
- } else if (localStorage.getItem("lastAdminPage")) {
- router.push(`/admin/${localStorage.getItem("lastAdminPage")}`);
- } else {
- router.push(`/admin/songs`);
- }
- siteSettings.value = await lofig.get("siteSettings");
- sidebarActive.value = JSON.parse(
- localStorage.getItem("admin-sidebar-active")
- );
- if (sidebarActive.value === null)
- sidebarActive.value = !(document.body.clientWidth <= 768);
- calculateSidebarPadding();
- window.addEventListener("scroll", calculateSidebarPadding);
- keyboardShortcuts.registerShortcut("admin.toggleKeyboardShortcutsHelper", {
- keyCode: 191, // '/' key
- ctrl: true,
- preventDefault: true,
- handler: () => {
- toggleKeyboardShortcutsHelper();
- }
- });
- keyboardShortcuts.registerShortcut("admin.resetKeyboardShortcutsHelper", {
- keyCode: 191, // '/' key
- ctrl: true,
- shift: true,
- preventDefault: true,
- handler: () => {
- resetKeyboardShortcutsHelper();
- }
- });
- });
- onBeforeUnmount(() => {
- socket.dispatch("apis.leaveRooms");
- window.removeEventListener("scroll", calculateSidebarPadding);
- const shortcutNames = [
- "admin.toggleKeyboardShortcutsHelper",
- "admin.resetKeyboardShortcutsHelper"
- ];
- shortcutNames.forEach(shortcutName => {
- keyboardShortcuts.unregisterShortcut(shortcutName);
- });
- });
- </script>
- <template>
- <div class="app">
- <div class="admin-area">
- <main-header :class="{ 'admin-sidebar-active': sidebarActive }" />
- <div class="admin-content">
- <div
- class="admin-sidebar"
- :class="{ minimised: !sidebarActive }"
- >
- <div class="inner">
- <div
- class="bottom"
- :style="`padding-bottom: ${sidebarPadding}px`"
- >
- <div
- class="sidebar-item toggle-sidebar"
- @click="toggleSidebar()"
- content="Expand"
- v-tippy="{ onShow: () => !sidebarActive }"
- >
- <i class="material-icons">menu_open</i>
- <span>Minimise</span>
- </div>
- <div
- v-if="
- hasPermission('admin.view.songs') &&
- sidebarActive
- "
- class="sidebar-item with-children"
- :class="{ 'is-active': childrenActive.songs }"
- >
- <span>
- <router-link to="/admin/songs">
- <i class="material-icons">music_note</i>
- <span>Songs</span>
- </router-link>
- <i
- class="material-icons toggle-sidebar-children"
- @click="
- toggleChildren({ child: 'songs' })
- "
- >
- {{
- childrenActive.songs
- ? "expand_less"
- : "expand_more"
- }}
- </i>
- </span>
- <div class="sidebar-item-children">
- <router-link
- class="sidebar-item-child"
- to="/admin/songs"
- >
- Songs
- </router-link>
- <router-link
- v-if="
- hasPermission('admin.view.import')
- "
- class="sidebar-item-child"
- to="/admin/songs/import"
- >
- Import
- </router-link>
- </div>
- </div>
- <router-link
- v-else-if="
- hasPermission('admin.view.songs') &&
- !sidebarActive
- "
- class="sidebar-item songs"
- to="/admin/songs"
- content="Songs"
- v-tippy="{
- theme: 'info',
- onShow: () => !sidebarActive
- }"
- >
- <i class="material-icons">music_note</i>
- <span>Songs</span>
- </router-link>
- <router-link
- v-if="hasPermission('admin.view.reports')"
- class="sidebar-item reports"
- to="/admin/reports"
- content="Reports"
- v-tippy="{
- theme: 'info',
- onShow: () => !sidebarActive
- }"
- >
- <i class="material-icons">flag</i>
- <span>Reports</span>
- </router-link>
- <router-link
- v-if="hasPermission('admin.view.stations')"
- class="sidebar-item stations"
- to="/admin/stations"
- content="Stations"
- v-tippy="{
- theme: 'info',
- onShow: () => !sidebarActive
- }"
- >
- <i class="material-icons">radio</i>
- <span>Stations</span>
- </router-link>
- <router-link
- v-if="hasPermission('admin.view.playlists')"
- class="sidebar-item playlists"
- to="/admin/playlists"
- content="Playlists"
- v-tippy="{
- theme: 'info',
- onShow: () => !sidebarActive
- }"
- >
- <i class="material-icons">library_music</i>
- <span>Playlists</span>
- </router-link>
- <div
- v-if="
- hasPermission('admin.view.users') &&
- sidebarActive
- "
- class="sidebar-item with-children"
- :class="{ 'is-active': childrenActive.users }"
- >
- <span>
- <router-link to="/admin/users">
- <i class="material-icons">people</i>
- <span>Users</span>
- </router-link>
- <i
- class="material-icons toggle-sidebar-children"
- @click="
- toggleChildren({ child: 'users' })
- "
- >
- {{
- childrenActive.users
- ? "expand_less"
- : "expand_more"
- }}
- </i>
- </span>
- <div class="sidebar-item-children">
- <router-link
- class="sidebar-item-child"
- to="/admin/users"
- >
- Users
- </router-link>
- <router-link
- v-if="
- hasPermission(
- 'admin.view.dataRequests'
- )
- "
- class="sidebar-item-child"
- to="/admin/users/data-requests"
- >
- Data Requests
- </router-link>
- <router-link
- v-if="
- hasPermission(
- 'admin.view.punishments'
- )
- "
- class="sidebar-item-child"
- to="/admin/users/punishments"
- >
- Punishments
- </router-link>
- </div>
- </div>
- <router-link
- v-else-if="
- hasPermission('admin.view.users') &&
- !sidebarActive
- "
- class="sidebar-item users"
- to="/admin/users"
- content="Users"
- v-tippy="{
- theme: 'info',
- onShow: () => !sidebarActive
- }"
- >
- <i class="material-icons">people</i>
- <span>Users</span>
- </router-link>
- <router-link
- v-if="hasPermission('admin.view.news')"
- class="sidebar-item news"
- to="/admin/news"
- content="News"
- v-tippy="{
- theme: 'info',
- onShow: () => !sidebarActive
- }"
- >
- <i class="material-icons">chrome_reader_mode</i>
- <span>News</span>
- </router-link>
- <router-link
- v-if="hasPermission('admin.view.statistics')"
- class="sidebar-item statistics"
- to="/admin/statistics"
- content="Statistics"
- v-tippy="{
- theme: 'info',
- onShow: () => !sidebarActive
- }"
- >
- <i class="material-icons">show_chart</i>
- <span>Statistics</span>
- </router-link>
- <div
- v-if="
- (hasPermission('admin.view.youtube') ||
- hasPermission(
- 'admin.view.youtubeVideos'
- )) &&
- sidebarActive
- "
- class="sidebar-item with-children"
- :class="{ 'is-active': childrenActive.youtube }"
- >
- <span>
- <router-link
- :to="`/admin/youtube${
- hasPermission('admin.view.youtube')
- ? ''
- : '/videos'
- }`"
- >
- <i class="material-icons"
- >smart_display</i
- >
- <span>YouTube</span>
- </router-link>
- <i
- class="material-icons toggle-sidebar-children"
- @click="
- toggleChildren({ child: 'youtube' })
- "
- >
- {{
- childrenActive.youtube
- ? "expand_less"
- : "expand_more"
- }}
- </i>
- </span>
- <div class="sidebar-item-children">
- <router-link
- v-if="
- hasPermission('admin.view.youtube')
- "
- class="sidebar-item-child"
- to="/admin/youtube"
- >
- YouTube
- </router-link>
- <router-link
- v-if="
- hasPermission(
- 'admin.view.youtubeVideos'
- )
- "
- class="sidebar-item-child"
- to="/admin/youtube/videos"
- >
- Videos
- </router-link>
- </div>
- </div>
- <router-link
- v-else-if="
- (hasPermission('admin.view.youtube') ||
- hasPermission(
- 'admin.view.youtubeVideos'
- )) &&
- !sidebarActive
- "
- class="sidebar-item youtube"
- :to="`/admin/youtube${
- hasPermission('admin.view.youtube')
- ? ''
- : '/videos'
- }`"
- content="YouTube"
- v-tippy="{
- theme: 'info',
- onShow: () => !sidebarActive
- }"
- >
- <i class="material-icons">smart_display</i>
- <span>YouTube</span>
- </router-link>
- </div>
- </div>
- </div>
- <div class="admin-container">
- <div class="admin-tab-container">
- <router-view></router-view>
- </div>
- <main-footer />
- </div>
- </div>
- </div>
- <floating-box
- id="keyboardShortcutsHelper"
- ref="keyboardShortcutsHelper"
- title="Admin Keyboard Shortcuts"
- >
- <template #body>
- <div>
- <div>
- <span class="biggest"
- ><b>Keyboard shortcuts helper</b></span
- >
- <span
- ><b>Ctrl + /</b> - Toggles this keyboard shortcuts
- helper</span
- >
- <span
- ><b>Ctrl + Shift + /</b> - Resets the position of
- this keyboard shortcuts helper</span
- >
- <hr />
- </div>
- <div>
- <span class="biggest"><b>Table</b></span>
- <span class="bigger"><b>Navigation</b></span>
- <span
- ><b>Up / Down arrow keys</b> - Move between
- rows</span
- >
- <hr />
- </div>
- <div>
- <span class="bigger"><b>Page navigation</b></span>
- <span
- ><b>Ctrl + Left/Right arrow keys</b> - Previous/next
- page</span
- >
- <span
- ><b>Ctrl + Shift + Left/Right arrow keys</b> -
- First/last page</span
- >
- <hr />
- </div>
- <div>
- <span class="bigger"><b>Reset localStorage</b></span>
- <span><b>Ctrl + F5</b> - Resets localStorage</span>
- <hr />
- </div>
- <div>
- <span class="bigger"><b>Selecting</b></span>
- <span><b>Space</b> - Selects/unselects a row</span>
- <span><b>Ctrl + A</b> - Selects all rows</span>
- <span
- ><b>Shift + Up/Down arrow keys</b> - Selects all
- rows in between</span
- >
- <span
- ><b>Ctrl + Up/Down arrow keys</b> - Unselects all
- rows in between</span
- >
- <hr />
- </div>
- <div>
- <span class="bigger"><b>Popup actions</b></span>
- <span><b>Ctrl + 1-9</b> - Execute action 1-9</span>
- <span><b>Ctrl + 0</b> - Select action 1</span>
- <hr />
- </div>
- </div>
- </template>
- </floating-box>
- </div>
- </template>
- <style lang="less" scoped>
- .night-mode {
- .main-container .admin-area {
- .admin-sidebar .inner {
- .top {
- background-color: var(--dark-grey-3);
- }
- .bottom {
- background-color: var(--dark-grey-2);
- .sidebar-item {
- background-color: var(--dark-grey-2);
- border-color: var(--dark-grey-3);
- &,
- &.with-children .sidebar-item-child,
- &.with-children > span > a {
- color: var(--white);
- }
- }
- }
- }
- :deep(.admin-content .admin-container .admin-tab-container) {
- .admin-tab {
- .card {
- background-color: var(--dark-grey-3);
- p {
- color: var(--light-grey-2);
- }
- }
- }
- }
- }
- }
- .main-container {
- height: auto;
- .admin-area {
- display: flex;
- flex-direction: column;
- min-height: 100vh;
- :deep(.nav) {
- .nav-menu.is-active {
- left: 45px;
- }
- &.admin-sidebar-active .nav-menu.is-active {
- left: 200px;
- }
- }
- .admin-sidebar {
- display: flex;
- min-width: 200px;
- width: 200px;
- @media screen and (max-width: 768px) {
- min-width: 45px;
- width: 45px;
- }
- .inner {
- display: flex;
- flex-direction: column;
- max-height: 100vh;
- width: 200px;
- position: sticky;
- top: 0;
- bottom: 0;
- left: 0;
- z-index: 5;
- box-shadow: @box-shadow;
- .bottom {
- overflow-y: auto;
- height: 100%;
- max-height: 100%;
- display: flex;
- flex-direction: column;
- flex: 1 0 auto;
- background-color: var(--white);
- .sidebar-item {
- display: flex;
- padding: 0 20px;
- line-height: 40px;
- font-size: 16px;
- font-weight: 600;
- color: var(--primary-color);
- background-color: var(--white);
- border-bottom: 1px solid var(--light-grey-2);
- transition: filter 0.2s ease-in-out;
- & > .material-icons {
- line-height: 40px;
- margin-right: 5px;
- }
- &:hover,
- &:focus,
- &.router-link-active,
- &.is-active {
- filter: brightness(95%);
- }
- &.toggle-sidebar {
- cursor: pointer;
- font-weight: 400;
- }
- &.with-children {
- flex-direction: column;
- & > span {
- display: flex;
- line-height: 40px;
- cursor: pointer;
- & > a {
- display: flex;
- }
- & > .material-icons,
- & > a > .material-icons {
- line-height: 40px;
- margin-right: 5px;
- }
- }
- .toggle-sidebar-children {
- margin-left: auto;
- }
- .sidebar-item-children {
- display: none;
- }
- &.is-active .sidebar-item-children {
- display: flex;
- flex-direction: column;
- .sidebar-item-child {
- display: flex;
- flex-direction: column;
- margin-left: 30px;
- font-size: 14px;
- line-height: 30px;
- position: relative;
- &::before {
- content: "";
- position: absolute;
- width: 1px;
- height: 30px;
- top: 0;
- left: -20px;
- background-color: var(--light-grey-3);
- }
- &:last-child::before {
- height: 16px;
- }
- &::after {
- content: "";
- position: absolute;
- width: 15px;
- height: 1px;
- top: 15px;
- left: -20px;
- background-color: var(--light-grey-3);
- }
- &.router-link-active {
- filter: brightness(95%);
- }
- }
- }
- }
- }
- }
- }
- &.minimised {
- min-width: 45px;
- width: 45px;
- .inner {
- max-width: 45px;
- .top {
- justify-content: center;
- .full-logo {
- display: none;
- }
- .minimised-logo {
- display: flex;
- }
- }
- .sidebar-item {
- justify-content: center;
- padding: 0;
- & > span {
- display: none;
- }
- }
- }
- }
- }
- .admin-content {
- display: flex;
- flex-direction: row;
- flex-grow: 1;
- .admin-container {
- display: flex;
- flex-direction: column;
- flex-grow: 1;
- overflow: hidden;
- :deep(.admin-tab-container) {
- display: flex;
- flex-direction: column;
- flex: 1 0 auto;
- padding: 10px 10px 20px 10px;
- .admin-tab {
- display: flex;
- flex-direction: column;
- width: 100%;
- max-width: 1900px;
- margin: 0 auto;
- padding: 0 10px;
- .card {
- display: flex;
- flex-grow: 1;
- flex-direction: column;
- padding: 20px;
- margin: 10px 0;
- border-radius: @border-radius;
- background-color: var(--white);
- color: var(--dark-grey);
- box-shadow: @box-shadow;
- h1 {
- font-size: 36px;
- margin: 0 0 5px 0;
- }
- h4 {
- font-size: 22px;
- margin: 0;
- }
- h5 {
- font-size: 18px;
- margin: 0;
- }
- hr {
- margin: 10px 0;
- }
- &.tab-info {
- flex-direction: row;
- flex-wrap: wrap;
- .info-row {
- display: flex;
- flex-grow: 1;
- flex-direction: column;
- }
- .button-row {
- display: flex;
- flex-direction: row;
- flex-wrap: wrap;
- justify-content: center;
- margin: auto 0;
- padding: 5px 0;
- & > .button,
- & > span {
- margin: auto 0;
- &:not(:first-child) {
- margin-left: 5px;
- }
- }
- & > span > .control.has-addons {
- margin-bottom: 0 !important;
- }
- }
- }
- }
- @media screen and (min-width: 980px) {
- &.container {
- margin: 0 auto;
- max-width: 960px;
- }
- }
- @media screen and (min-width: 1180px) {
- &.container {
- max-width: 1200px;
- }
- }
- }
- }
- }
- }
- }
- }
- :deep(.box) {
- box-shadow: @box-shadow;
- display: block;
- &:not(:last-child) {
- margin-bottom: 20px;
- }
- }
- #keyboardShortcutsHelper {
- .box-body {
- .biggest {
- font-size: 18px;
- }
- .bigger {
- font-size: 16px;
- }
- span {
- display: block;
- }
- }
- }
- </style>
|