123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327 |
- <template>
- <div id="nav-dropdown">
- <div class="nav-dropdown-items" v-if="playlists.length > 0">
- <!-- <a class="nav-item" id="nightmode-toggle">
- <span>Nightmode</span>
- <label class="switch">
- <input type="checkbox" checked />
- <span class="slider round"></span>
- </label>
- </a> -->
- <button
- class="nav-item"
- href="#"
- v-for="(playlist, index) in playlists"
- :key="index"
- @click.prevent="toggleSongInPlaylist(index, playlist._id)"
- :title="playlist.displayName"
- >
- <p class="control is-expanded checkbox-control">
- <input
- type="checkbox"
- :id="index"
- v-model="playlist.hasSong"
- />
- <label :for="index">
- <span></span>
- <p>{{ playlist.displayName }}</p>
- </label>
- </p>
- </button>
- </div>
- <p class="nav-dropdown-items" id="no-playlists" v-else>
- You haven't created any playlists.
- </p>
- </div>
- </template>
- <script>
- import { mapState } from "vuex";
- import Toast from "toasters";
- import io from "../../../io";
- export default {
- data() {
- return {
- playlists: []
- };
- },
- computed: {
- ...mapState("station", {
- currentSong: state => state.currentSong
- })
- },
- mounted() {
- io.getSocket(socket => {
- this.socket = socket;
- this.socket.emit("playlists.indexMyPlaylists", false, res => {
- if (res.status === "success") {
- this.playlists = res.data;
- this.checkIfPlaylistsHaveSong();
- }
- });
- this.socket.on("event:songs.next", () => {
- this.checkIfPlaylistsHaveSong();
- });
- this.socket.on("event:playlist.create", playlist => {
- this.playlists.push(playlist);
- });
- this.socket.on("event:playlist.delete", playlistId => {
- this.playlists.forEach((playlist, index) => {
- if (playlist._id === playlistId) {
- this.playlists.splice(index, 1);
- }
- });
- });
- this.socket.on("event:playlist.updateDisplayName", data => {
- this.playlists.forEach((playlist, index) => {
- if (playlist._id === data.playlistId) {
- this.playlists[index].displayName = data.displayName;
- }
- });
- });
- });
- },
- methods: {
- toggleSongInPlaylist(index, playlistId) {
- if (!this.playlists[index].hasSong) {
- this.socket.emit(
- "playlists.addSongToPlaylist",
- false,
- this.currentSong.songId,
- playlistId,
- res => {
- new Toast({ content: res.message, timeout: 4000 });
- if (res.status === "success") {
- this.playlists[index].songs.push(this.currentSong);
- this.playlists[index].hasSong = true;
- }
- }
- );
- } else {
- this.socket.emit(
- "playlists.removeSongFromPlaylist",
- this.currentSong.songId,
- playlistId,
- res => {
- new Toast({ content: res.message, timeout: 4000 });
- if (res.status === "success") {
- this.playlists[index].songs.forEach(
- (song, index) => {
- if (song.songId === this.currentSong.songId)
- this.playlists[index].songs.splice(
- index,
- 1
- );
- }
- );
- this.playlists[index].hasSong = false;
- }
- }
- );
- }
- },
- checkIfPlaylistsHaveSong() {
- this.playlists.forEach((playlist, index) => {
- let hasSong = false;
- for (let song = 0; song < playlist.songs.length; song += 1) {
- if (playlist.songs[song].songId === this.currentSong.songId)
- hasSong = true;
- }
- this.$set(this.playlists[index], "hasSong", hasSong);
- });
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- @import "../../../styles/global.scss";
- .night-mode {
- .nav-dropdown-items {
- background-color: var(--dark-grey-2);
- border: 0 !important;
- .nav-item {
- background-color: var(--dark-grey);
- &:focus {
- outline-color: var(--dark-grey);
- }
- p {
- color: var(--white);
- }
- .checkbox-control label span {
- background-color: var(--dark-grey-2);
- }
- }
- }
- }
- #nav-dropdown {
- position: absolute;
- margin-left: 4px;
- z-index: 1;
- margin-bottom: 36px;
- }
- #nav-dropdown-triangle {
- border-style: solid;
- border-width: 15px 15px 0 15px;
- border-color: var(--dark-grey-2) transparent transparent transparent;
- }
- .nav-dropdown-items {
- border: 1px solid var(--light-grey-3);
- box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
- background-color: var(--white);
- padding: 5px;
- border-radius: 5px;
- position: relative;
- right: calc(100% - 110px);
- .nav-item {
- width: 100%;
- justify-content: flex-start;
- border: 0;
- padding: 10px;
- font-size: 15.5px;
- height: 36px;
- background: var(--light-grey);
- border-radius: 5px;
- cursor: pointer;
- .checkbox-control {
- display: flex;
- align-items: center;
- margin-bottom: 0 !important;
- input {
- margin-right: 5px;
- }
- input[type="checkbox"] {
- opacity: 0;
- position: absolute;
- }
- label {
- display: flex;
- flex-direction: row;
- align-items: center;
- span {
- cursor: pointer;
- width: 24px;
- height: 24px;
- background-color: var(--white);
- display: inline-block;
- border: 1px solid var(--dark-grey-2);
- position: relative;
- border-radius: 3px;
- }
- p {
- margin-left: 10px;
- cursor: pointer;
- color: var(--black);
- }
- }
- input[type="checkbox"]:checked + label span::after {
- content: "";
- width: 18px;
- height: 18px;
- left: 2px;
- top: 2px;
- border-radius: 3px;
- background-color: var(--station-theme);
- position: absolute;
- }
- }
- &:focus {
- outline-color: var(--light-grey-3);
- }
- &:not(:last-of-type) {
- margin-bottom: 5px;
- }
- }
- }
- #nightmode-toggle {
- display: flex;
- justify-content: space-evenly;
- }
- /* CSS - Toggle Switch */
- .switch {
- position: relative;
- display: inline-block;
- width: 50px;
- height: 24px;
- input {
- opacity: 0;
- width: 0;
- height: 0;
- }
- }
- .slider {
- position: absolute;
- cursor: pointer;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background-color: var(--light-grey-3);
- transition: 0.4s;
- border-radius: 34px;
- &:before {
- position: absolute;
- content: "";
- height: 16px;
- width: 16px;
- left: 4px;
- bottom: 4px;
- background-color: var(--white);
- transition: 0.4s;
- border-radius: 50%;
- }
- }
- input:checked + .slider {
- background-color: var(--primary-color);
- }
- input:focus + .slider {
- box-shadow: 0 0 1px var(--primary-color);
- }
- input:checked + .slider:before {
- transform: translateX(26px);
- }
- #no-playlists {
- padding: 10px;
- }
- </style>
|