| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 | <template>	<div class='sidebar' transition='slide' v-if='$parent.sidebars.playlist'>		<div class='inner-wrapper'>			<div class='title'>Playlists</div>			<aside class='menu' v-if='playlists.length > 0'>				<ul class='menu-list'>					<li v-for='playlist in playlists'>						<span>{{ playlist.displayName }}</span>						<!--Will play playlist in community station Kris-->						<div class='icons-group'>							<a href='#' @click='selectPlaylist(playlist._id)' v-if="isNotSelected(playlist._id) && !this.$parent.$parent.station.partyMode">								<i class='material-icons'>play_arrow</i>							</a>							<a href='#' @click='editPlaylist(playlist._id)'>								<i class='material-icons'>edit</i>							</a>						</div>					</li>				</ul>			</aside>			<div class='none-found' v-else>No Playlists found</div>			<a class='button create-playlist' href='#' @click='$parent.modals.createPlaylist = !$parent.modals.createPlaylist'>Create Playlist</a>		</div>	</div></template><script>	import { Toast } from 'vue-roaster';	import { Edit } from '../Modals/Playlists/Edit.vue';	import io from '../../io';	export default {		data() {			return {				playlists: []			}		},		methods: {			editPlaylist: function(id) {				this.$parent.editPlaylist(id);			},			selectPlaylist: function(id) {				this.socket.emit('stations.selectPrivatePlaylist', this.$parent.station._id, id, (res) => {					if (res.status === 'failure') return Toast.methods.addToast(res.message, 8000);					Toast.methods.addToast(res.message, 4000);				});			},			isNotSelected: function(id) {				let _this = this;				//TODO Also change this once it changes for a station				if (_this.$parent.station && _this.$parent.station.privatePlaylist === id) return false;				return true;			}		},		ready: function () {			// TODO: Update when playlist is removed/created			let _this = this;			io.getSocket((socket) => {				_this.socket = socket;				_this.socket.emit('playlists.indexForUser', res => {					if (res.status == 'success') _this.playlists = res.data;				});				_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.addSong', (data) => {					_this.playlists.forEach((playlist, index) => {						if (playlist._id === data.playlistId) {							_this.playlists[index].songs.push(data.song);						}					});				});				_this.socket.on('event:playlist.removeSong', (data) => {					_this.playlists.forEach((playlist, index) => {						if (playlist._id === data.playlistId) {							_this.playlists[index].songs.forEach((song, index2) => {								if (song._id === data.songId) {									_this.playlists[index].songs.splice(index2, 1);								}							});						}					});				});				_this.socket.on('event:playlist.updateDisplayName', (data) => {					_this.playlists.forEach((playlist, index) => {						if (playlist._id === data.playlistId) {							_this.playlists[index].displayName = data.displayName;						}					});				});			});		}	}</script><style type='scss' scoped>	.sidebar {		position: fixed;		z-index: 1;		top: 0;		right: 0;		width: 300px;		height: 100vh;		background-color: #fff;		box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);	}	.icons-group a {		display: flex;    	align-items: center;	}	.menu-list li { align-items: center; }	.inner-wrapper {			top: 64px;		position: relative;	}	.slide-transition {		transition: transform 0.6s ease-in-out;		transform: translateX(0);	}	.slide-enter, .slide-leave { transform: translateX(100%); }	.title {		background-color: rgb(3, 169, 244);		text-align: center;		padding: 10px;		color: white;		font-weight: 600;	}	.create-playlist {		width: 100%;    	margin-top: 20px;		height: 40px;		border-radius: 0;		background: rgba(3, 169, 244, 1);    	color: #fff !important;		border: 0;		&:active, &:focus { border: 0; }	}	.create-playlist:focus { background: #029ce3; }	.none-found { text-align: center; }</style>
 |