123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164 |
- <template>
- <div id="tabs-container">
- <div id="tab-selection">
- <button
- class="button is-default"
- :class="{ selected: tab === 'queue' }"
- @click="showTab('queue')"
- >
- Queue
- </button>
- <button
- class="button is-default"
- :class="{ selected: tab === 'users' }"
- @click="showTab('users')"
- >
- Users
- </button>
- <button
- v-if="loggedIn"
- class="button is-default"
- :class="{ selected: tab === 'my-playlists' }"
- @click="showTab('my-playlists')"
- >
- My Playlists
- </button>
- </div>
- <queue class="tab" v-show="tab === 'queue'" />
- <users class="tab" v-show="tab === 'users'" />
- <my-playlists class="tab" v-show="tab === 'my-playlists'" />
- </div>
- </template>
- <script>
- import { mapActions, mapState } from "vuex";
- import Queue from "./Queue/index.vue";
- import Users from "./Users.vue";
- import MyPlaylists from "./MyPlaylists.vue";
- export default {
- components: { Queue, Users, MyPlaylists },
- data() {
- return {
- tab: "queue"
- };
- },
- computed: mapState({
- users: state => state.station.users,
- userCount: state => state.station.userCount,
- loggedIn: state => state.user.auth.loggedIn
- }),
- mounted() {
- if (
- this.$route.query.tab === "queue" ||
- this.$route.query.tab === "users" ||
- this.$route.query.tab === "my-playlists"
- )
- this.tab = this.$route.query.tab;
- },
- methods: {
- ...mapActions("modalVisibility", ["openModal"]),
- showTab(tab) {
- const queries = this.$route.query.tab
- ? this.$route.query
- : { ...this.$route.query, tab };
- queries.tab = tab;
- this.$route.query.tab = tab;
- this.tab = this.$route.query.tab;
- // eslint-disable-next-line no-restricted-globals
- history.pushState(
- {},
- null,
- `${this.$route.path}?${Object.keys(queries)
- .map(key => {
- return `${encodeURIComponent(key)}=${encodeURIComponent(
- queries[key]
- )}`;
- })
- .join("&")}`
- );
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- @import "../../../../styles/global.scss";
- #tabs-container .tab {
- width: 100%;
- height: calc(100% - 36px);
- position: absolute;
- border: 1px solid $light-grey-2;
- border-top: 0;
- }
- #tab-selection {
- display: flex;
- .button {
- border-radius: 5px 5px 0 0;
- border: 0;
- text-transform: uppercase;
- font-size: 17px;
- color: $night-mode-bg-secondary;
- background-color: $night-mode-text;
- flex-grow: 1;
- &:not(:first-of-type) {
- margin-left: 5px;
- }
- }
- .selected {
- background-color: $night-mode-bg-secondary;
- color: #fff;
- }
- }
- /deep/ .tab-actionable-button {
- width: calc(100% - 20px);
- height: 40px;
- border-radius: 5px;
- margin: 10px;
- position: absolute;
- bottom: 0;
- border: 0;
- &:active,
- &:focus {
- border: 0;
- }
- }
- /deep/ .scrollable-list {
- width: 100%;
- overflow: auto;
- max-height: calc(100% - 20px - 40px);
- padding: 10px;
- .queue-item:not(:last-of-type) {
- margin-bottom: 10px;
- }
- }
- /deep/ ::-webkit-scrollbar {
- width: 10px;
- }
- /deep/ ::-webkit-scrollbar-track {
- background-color: #fff;
- border: 1px solid $light-grey-2;
- }
- /deep/ ::-webkit-scrollbar-thumb {
- background-color: $dark-grey;
- &:hover {
- background-color: darken($dark-grey, 10%);
- }
- }
- </style>
|