123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391 |
- <template>
- <div>
- <nav class="nav">
- <div class="nav-left">
- <router-link
- class="nav-item is-brand"
- href="#"
- :to="{ path: '/' }"
- v-on:click="this.$dispatch('leaveStation', title)"
- >Musare</router-link>
- </div>
- <div class="nav-center stationDisplayName">{{$parent.station.displayName}}</div>
- <span class="nav-toggle" v-on:click="controlBar = !controlBar">
- <span></span>
- <span></span>
- <span></span>
- </span>
- <div class="nav-right nav-menu" :class="{ 'is-active': isMobile }">
- <router-link
- class="nav-item is-tab admin"
- href="#"
- :to="{ path: '/admin' }"
- v-if="$parent.$parent.role === 'admin'"
- >
- <strong>Admin</strong>
- </router-link>
- <router-link class="nav-item is-tab" to="/team">Team</router-link>
- <router-link class="nav-item is-tab" to="/about">About</router-link>
- <router-link class="nav-item is-tab" to="/news">News</router-link>
- <span class="grouped" v-if="$parent.$parent.loggedIn">
- <router-link
- class="nav-item is-tab"
- :to="{ path: '/u/' + $parent.$parent.username }"
- >Profile</router-link>
- <router-link class="nav-item is-tab" to="/settings">Settings</router-link>
- <a class="nav-item is-tab" href="#" v-on:click="$parent.$parent.logout()">Logout</a>
- </span>
- <span class="grouped" v-else>
- <a
- class="nav-item"
- href="#"
- v-on:click="toggleModal({ sector: 'header', modal: 'login' })"
- >Login</a>
- <a
- class="nav-item"
- href="#"
- v-on:click="toggleModal({ sector: 'header', modal: 'register' })"
- >Register</a>
- </span>
- </div>
- </nav>
- <div class="control-sidebar" :class="{ 'show-controlBar': controlBar }">
- <div class="inner-wrapper">
- <div v-if="isOwner()">
- <a class="sidebar-item" href="#" v-if="isOwner()" v-on:click="settings()">
- <span class="icon">
- <i class="material-icons">settings</i>
- </span>
- <span class="icon-purpose">Station settings</span>
- </a>
- <a v-if="isOwner()" class="sidebar-item" href="#" v-on:click="$parent.skipStation()">
- <span class="icon">
- <i class="material-icons">skip_next</i>
- </span>
- <span class="icon-purpose">Skip current song</span>
- </a>
- <a
- class="sidebar-item"
- href="#"
- v-if="isOwner() && $parent.paused"
- v-on:click="$parent.resumeStation()"
- >
- <span class="icon">
- <i class="material-icons">play_arrow</i>
- </span>
- <span class="icon-purpose">Resume station</span>
- </a>
- <a
- class="sidebar-item"
- href="#"
- v-if="isOwner() && !$parent.paused"
- v-on:click="$parent.pauseStation()"
- >
- <span class="icon">
- <i class="material-icons">pause</i>
- </span>
- <span class="icon-purpose">Pause station</span>
- </a>
- <hr />
- </div>
- <div v-if="$parent.$parent.loggedIn && !$parent.noSong">
- <a
- v-if="!isOwner() && $parent.$parent.loggedIn && !$parent.noSong"
- class="sidebar-item"
- href="#"
- v-on:click="$parent.voteSkipStation()"
- >
- <span class="icon">
- <i class="material-icons">skip_next</i>
- </span>
- <span class="skip-votes">{{ $parent.currentSong.skipVotes }}</span>
- <span class="icon-purpose">Skip current song</span>
- </a>
- <a
- v-if="$parent.$parent.loggedIn && !$parent.noSong"
- class="sidebar-item"
- href="#"
- v-on:click="toggleModal({
- sector: 'station',
- modal: 'addSongToPlaylist'
- })"
- >
- <span class="icon">
- <i class="material-icons">playlist_add</i>
- </span>
- <span class="icon-purpose">Add current song to playlist</span>
- </a>
- <hr />
- </div>
- <a
- class="sidebar-item"
- href="#"
- v-on:click="$parent.toggleSidebar('songslist')"
- v-if="$parent.station.partyMode === true"
- >
- <span class="icon">
- <i class="material-icons">queue_music</i>
- </span>
- <span class="icon-purpose">Show the station queue</span>
- </a>
- <a class="sidebar-item" href="#" v-on:click="$parent.toggleSidebar('users')">
- <span class="icon">
- <i class="material-icons">people</i>
- </span>
- <span class="icon-purpose">Display users in the station</span>
- </a>
- <a
- class="sidebar-item"
- href="#"
- v-on:click="$parent.toggleSidebar('playlist')"
- v-if="$parent.$parent.loggedIn"
- >
- <span class="icon">
- <i class="material-icons">library_music</i>
- </span>
- <span class="icon-purpose">Show your playlists</span>
- </a>
- </div>
- </div>
- </div>
- </template>
- <script>
- import { mapState, mapActions } from "vuex";
- export default {
- data() {
- return {
- title: this.$route.params.id,
- isMobile: false,
- controlBar: true
- };
- },
- methods: {
- isOwner: function() {
- return (
- this.$parent.$parent.loggedIn &&
- (this.$parent.$parent.role === "admin" ||
- this.$parent.$parent.userId === this.$parent.station.owner)
- );
- },
- settings() {
- this.editStation({
- _id: this.$parent.station._id,
- name: this.$parent.station.name,
- type: this.$parent.type,
- partyMode: this.$parent.station.partyMode,
- description: this.$parent.station.description,
- privacy: this.$parent.station.privacy,
- displayName: this.$parent.station.displayName
- });
- this.toggleModal({
- sector: "station",
- modal: "editStation"
- });
- },
- ...mapActions("modals", ["toggleModal"]),
- ...mapActions("station", ["editStation"])
- }
- };
- </script>
- <style lang='scss' scoped>
- .nav {
- background-color: #03a9f4;
- line-height: 64px;
- .is-brand {
- font-size: 2.1rem !important;
- line-height: 64px !important;
- padding: 0 20px;
- }
- }
- a.nav-item {
- color: hsl(0, 0%, 100%);
- font-size: 15px;
- &:hover {
- color: hsl(0, 0%, 100%);
- }
- .admin {
- color: #424242;
- }
- padding: 0 12px;
- .icon {
- height: 64px;
- i {
- font-size: 2rem;
- line-height: 64px;
- height: 64px;
- width: 34px;
- }
- }
- }
- .grouped {
- margin: 0;
- display: flex;
- text-decoration: none;
- }
- .skip-votes {
- position: relative;
- left: 11px;
- }
- .nav-toggle {
- height: 64px;
- }
- @media screen and (max-width: 998px) {
- .nav-menu {
- background-color: white;
- box-shadow: 0 4px 7px rgba(10, 10, 10, 0.1);
- left: 0;
- display: none;
- right: 0;
- top: 100%;
- position: absolute;
- }
- .nav-toggle {
- display: block;
- }
- }
- .logo {
- font-size: 2.1rem;
- line-height: 64px;
- padding-left: 20px !important;
- padding-right: 20px !important;
- }
- .nav-center {
- display: flex;
- align-items: center;
- color: #03a9f4;
- font-size: 22px;
- position: absolute;
- margin: auto;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- }
- .nav-right.is-active .nav-item {
- background: #03a9f4;
- border: 0;
- }
- .control-sidebar {
- position: fixed;
- z-index: 1;
- top: 0;
- left: 0;
- width: 64px;
- height: 100vh;
- background-color: #03a9f4;
- box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
- @media (max-width: 998px) {
- display: none;
- }
- .inner-wrapper {
- @media (min-width: 999px) {
- .mobile-only {
- display: none;
- }
- .desktop-only {
- display: flex;
- }
- }
- @media (max-width: 998px) {
- .mobile-only {
- display: flex;
- }
- .desktop-only {
- display: none;
- visibility: hidden;
- }
- }
- }
- }
- .show-controlBar {
- display: block;
- }
- .inner-wrapper {
- top: 64px;
- position: relative;
- }
- .control-sidebar .material-icons {
- width: 100%;
- font-size: 2rem;
- }
- .control-sidebar .sidebar-item {
- font-size: 2rem;
- height: 50px;
- color: white;
- -webkit-box-align: center;
- -ms-flex-align: center;
- align-items: center;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-flex: 0;
- -ms-flex-positive: 0;
- flex-grow: 0;
- -ms-flex-negative: 0;
- flex-shrink: 0;
- -webkit-box-pack: center;
- -ms-flex-pack: center;
- justify-content: center;
- width: 100%;
- position: relative;
- }
- .control-sidebar .sidebar-top-hr {
- margin: 0 0 20px 0;
- }
- .sidebar-item .icon-purpose {
- visibility: hidden;
- width: 160px;
- font-size: 12px;
- background-color: rgba(3, 169, 244, 0.8);
- color: #fff;
- text-align: center;
- border-radius: 6px;
- padding: 5px;
- position: absolute;
- z-index: 1;
- left: 115%;
- opacity: 0;
- transition: opacity 0.5s;
- display: none;
- }
- .sidebar-item .icon-purpose::after {
- content: "";
- position: absolute;
- top: 50%;
- right: 100%;
- margin-top: -5px;
- border-width: 5px;
- border-style: solid;
- border-color: transparent rgba(3, 169, 244, 0.8) transparent transparent;
- }
- .sidebar-item:hover .icon-purpose {
- visibility: visible;
- opacity: 1;
- display: block;
- }
- </style>
|