2018-03-19 16:39:03 +00:00
|
|
|
<template>
|
2018-03-20 18:57:34 +00:00
|
|
|
<modal @update:show="update" :show="$store.state.playlists.showModal">
|
2020-07-03 12:20:47 +00:00
|
|
|
<h4 class="header">
|
2019-12-07 16:06:24 +00:00
|
|
|
<template v-if="track">
|
|
|
|
|
<h2 class="ui header">
|
|
|
|
|
<translate translate-context="Popup/Playlist/Title/Verb">Add to playlist</translate>
|
|
|
|
|
<div
|
|
|
|
|
class="ui sub header"
|
2019-03-20 10:36:16 +00:00
|
|
|
translate-context="Popup/Playlist/Paragraph"
|
2018-06-30 13:28:47 +00:00
|
|
|
v-translate="{artist: track.artist.name, title: track.title}"
|
2018-07-21 12:47:12 +00:00
|
|
|
:translate-params="{artist: track.artist.name, title: track.title}">
|
2018-06-30 13:28:47 +00:00
|
|
|
"%{ title }", by %{ artist }
|
2019-12-07 16:06:24 +00:00
|
|
|
</div>
|
|
|
|
|
</h2>
|
|
|
|
|
</template>
|
|
|
|
|
<translate v-else translate-context="Popup/Playlist/Title/Verb">Manage playlists</translate>
|
2020-07-03 12:20:47 +00:00
|
|
|
</h4>
|
2019-12-07 16:06:24 +00:00
|
|
|
<div class="scrolling content">
|
|
|
|
|
<playlist-form :key="formKey"></playlist-form>
|
|
|
|
|
<div class="ui divider"></div>
|
|
|
|
|
<div v-if="playlists.length > 0">
|
2020-06-19 19:13:42 +00:00
|
|
|
<div v-if="showDuplicateTrackAddConfirmation" role="alert" class="ui warning message">
|
2019-04-24 09:31:46 +00:00
|
|
|
<p translate-context="Popup/Playlist/Paragraph"
|
|
|
|
|
v-translate="{track: track.title, playlist: duplicateTrackAddInfo.playlist_name}"
|
|
|
|
|
:translate-params="{track: track.title, playlist: duplicateTrackAddInfo.playlist_name}"><strong>%{ track }</strong> is already in <strong>%{ playlist }</strong>.</p>
|
|
|
|
|
<button
|
2019-12-07 16:06:24 +00:00
|
|
|
@click="duplicateTrackAddConfirm(false)"
|
2020-02-23 14:31:03 +00:00
|
|
|
class="ui small basic cancel button"><translate translate-context="*/*/Button.Label/Verb">Cancel</translate>
|
2019-04-24 09:31:46 +00:00
|
|
|
</button>
|
|
|
|
|
<button
|
2020-05-15 12:12:36 +00:00
|
|
|
class="ui small success button"
|
2019-04-24 09:31:46 +00:00
|
|
|
@click="addToPlaylist(lastSelectedPlaylist, true)">
|
|
|
|
|
<translate translate-context="*/Playlist/Button.Label/Verb">Add anyways</translate></button>
|
|
|
|
|
</div>
|
2020-06-19 19:13:42 +00:00
|
|
|
<div v-if="errors.length > 0" role="alert" class="ui negative message">
|
2020-07-03 12:20:47 +00:00
|
|
|
<h4 class="header"><translate translate-context="Popup/Playlist/Error message.Title">The track can't be added to a playlist</translate></h4>
|
2018-03-20 22:41:15 +00:00
|
|
|
<ul class="list">
|
|
|
|
|
<li v-for="error in errors">{{ error }}</li>
|
|
|
|
|
</ul>
|
2018-03-19 16:39:03 +00:00
|
|
|
</div>
|
2019-03-08 11:37:02 +00:00
|
|
|
<h4 class="ui header"><translate translate-context="Popup/Playlist/Title">Available playlists</translate></h4>
|
2019-12-07 16:06:24 +00:00
|
|
|
<div class="ui form">
|
|
|
|
|
<div class="fields">
|
|
|
|
|
<div class="field">
|
|
|
|
|
<label for="playlist-name-filter"><translate translate-context="Popup/Playlist/Label">Filter</translate></label>
|
2020-08-01 09:11:51 +00:00
|
|
|
<input id="playlist-name-filter" v-model="playlistNameFilter" type="text" class="inline" :placeholder="labels.filterPlaylistField" />
|
2019-12-07 16:06:24 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<table v-if="sortedPlaylists.length > 0" class="ui unstackable very basic table">
|
2018-03-20 22:41:15 +00:00
|
|
|
<thead>
|
|
|
|
|
<tr>
|
2020-08-01 09:11:51 +00:00
|
|
|
<th><span class="visually-hidden"><translate translate-context="*/*/*/Verb">Edit</translate></span></th>
|
2019-03-18 09:07:58 +00:00
|
|
|
<th><translate translate-context="*/*/*/Noun">Name</translate></th>
|
2019-03-08 11:37:02 +00:00
|
|
|
<th class="sorted descending"><translate translate-context="Popup/Playlist/Table.Label/Short">Last modification</translate></th>
|
2019-10-01 13:19:55 +00:00
|
|
|
<th><translate translate-context="*/*/*">Tracks</translate></th>
|
2018-03-20 22:41:15 +00:00
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
<tr v-for="playlist in sortedPlaylists">
|
|
|
|
|
<td>
|
|
|
|
|
<router-link
|
|
|
|
|
class="ui icon basic small button"
|
2020-08-01 09:11:51 +00:00
|
|
|
:to="{name: 'library.playlists.detail', params: {id: playlist.id }, query: {mode: 'edit'}}"><i class="ui pencil icon"></i>
|
|
|
|
|
<span class="visually-hidden"><translate translate-context="*/*/*/Verb">Edit</translate></span></router-link>
|
2018-03-20 22:41:15 +00:00
|
|
|
</td>
|
2020-08-01 09:11:51 +00:00
|
|
|
<td>
|
2019-06-24 09:04:05 +00:00
|
|
|
<router-link v-on:click.native="update(false)" :to="{name: 'library.playlists.detail', params: {id: playlist.id }}">{{ playlist.name }}</router-link></td>
|
2018-03-20 22:41:15 +00:00
|
|
|
<td><human-date :date="playlist.modification_date"></human-date></td>
|
|
|
|
|
<td>{{ playlist.tracks_count }}</td>
|
|
|
|
|
<td>
|
2020-08-11 12:07:06 +00:00
|
|
|
<button
|
2018-03-20 22:41:15 +00:00
|
|
|
v-if="track"
|
2020-05-15 12:12:36 +00:00
|
|
|
class="ui success icon basic small right floated button"
|
2018-07-01 19:50:50 +00:00
|
|
|
:title="labels.addToPlaylist"
|
2020-08-11 12:07:06 +00:00
|
|
|
@click.prevent="addToPlaylist(playlist.id, false)">
|
2019-03-08 11:37:02 +00:00
|
|
|
<i class="plus icon"></i> <translate translate-context="Popup/Playlist/Table.Button.Label/Verb">Add track</translate>
|
2020-08-11 12:07:06 +00:00
|
|
|
</button>
|
2018-03-20 22:41:15 +00:00
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
2019-12-07 16:06:24 +00:00
|
|
|
<template v-else>
|
2020-05-15 12:12:36 +00:00
|
|
|
<div class="ui small placeholder segment component-placeholder">
|
2020-07-03 12:20:47 +00:00
|
|
|
<h4 class="ui header">
|
2019-12-07 16:06:24 +00:00
|
|
|
<translate translate-context="Popup/Playlist/EmptyState">No results matching your filter</translate>
|
2020-07-03 12:20:47 +00:00
|
|
|
</h4>
|
2019-12-07 16:06:24 +00:00
|
|
|
</div>
|
|
|
|
|
</template>
|
2019-10-17 12:15:33 +00:00
|
|
|
<template v-else>
|
|
|
|
|
<div class="ui placeholder segment">
|
|
|
|
|
<div class="ui icon header">
|
|
|
|
|
<i class="list icon"></i>
|
|
|
|
|
<translate translate-context="Content/Home/Placeholder">
|
|
|
|
|
No playlists have been created yet
|
|
|
|
|
</translate>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
2018-03-19 16:39:03 +00:00
|
|
|
</div>
|
2018-03-20 22:41:15 +00:00
|
|
|
</div>
|
|
|
|
|
<div class="actions">
|
2020-08-04 11:22:31 +00:00
|
|
|
<button class="ui basic cancel button"><translate translate-context="*/*/Button.Label/Verb">Cancel</translate></button>
|
2018-03-20 22:41:15 +00:00
|
|
|
</div>
|
2018-03-19 16:39:03 +00:00
|
|
|
</modal>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2019-12-07 16:06:24 +00:00
|
|
|
import filter from "lodash/fp/filter";
|
|
|
|
|
import sortBy from "lodash/fp/sortBy";
|
|
|
|
|
import flow from "lodash/fp/flow";
|
|
|
|
|
|
2018-03-19 16:39:03 +00:00
|
|
|
import axios from 'axios'
|
|
|
|
|
import {mapState} from 'vuex'
|
|
|
|
|
|
|
|
|
|
import logger from '@/logging'
|
|
|
|
|
import Modal from '@/components/semantic/Modal'
|
|
|
|
|
import PlaylistForm from '@/components/playlists/Form'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
components: {
|
|
|
|
|
Modal,
|
|
|
|
|
PlaylistForm
|
|
|
|
|
},
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
2018-07-21 12:47:12 +00:00
|
|
|
formKey: String(new Date()),
|
2019-04-24 09:31:46 +00:00
|
|
|
errors: [],
|
2019-12-07 16:06:24 +00:00
|
|
|
playlistNameFilter: '',
|
2019-04-24 09:31:46 +00:00
|
|
|
duplicateTrackAddInfo: {},
|
|
|
|
|
showDuplicateTrackAddConfirmation: false,
|
|
|
|
|
lastSelectedPlaylist: -1,
|
2018-03-19 16:39:03 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
update (v) {
|
2018-03-20 18:57:34 +00:00
|
|
|
this.$store.commit('playlists/showModal', v)
|
2018-03-19 16:39:03 +00:00
|
|
|
},
|
2019-04-24 09:31:46 +00:00
|
|
|
addToPlaylist (playlistId, allowDuplicate) {
|
2018-03-19 16:39:03 +00:00
|
|
|
let self = this
|
|
|
|
|
let payload = {
|
2020-07-27 13:31:49 +00:00
|
|
|
tracks: [this.track.id],
|
2019-04-24 09:31:46 +00:00
|
|
|
allow_duplicates: allowDuplicate
|
2018-03-19 16:39:03 +00:00
|
|
|
}
|
2019-04-24 09:31:46 +00:00
|
|
|
|
|
|
|
|
self.lastSelectedPlaylist = playlistId
|
|
|
|
|
|
2020-07-27 13:31:49 +00:00
|
|
|
return axios.post(`playlists/${playlistId}/add`, payload).then(response => {
|
2018-03-19 16:39:03 +00:00
|
|
|
logger.default.info('Successfully added track to playlist')
|
2018-03-20 18:57:34 +00:00
|
|
|
self.update(false)
|
2018-03-19 16:39:03 +00:00
|
|
|
self.$store.dispatch('playlists/fetchOwn')
|
|
|
|
|
}, error => {
|
2019-04-24 09:31:46 +00:00
|
|
|
if (error.backendErrors.length == 1 && error.backendErrors[0].code == 'tracks_already_exist_in_playlist') {
|
|
|
|
|
self.duplicateTrackAddInfo = error.backendErrors[0]
|
|
|
|
|
self.showDuplicateTrackAddConfirmation = true
|
|
|
|
|
} else {
|
|
|
|
|
self.errors = error.backendErrors
|
|
|
|
|
self.showDuplicateTrackAddConfirmation = false
|
|
|
|
|
}
|
2018-03-19 16:39:03 +00:00
|
|
|
})
|
2019-12-07 16:06:24 +00:00
|
|
|
},
|
|
|
|
|
duplicateTrackAddConfirm (v) {
|
|
|
|
|
this.showDuplicateTrackAddConfirmation = v
|
2018-03-19 16:39:03 +00:00
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
|
|
|
|
...mapState({
|
2018-03-20 18:57:34 +00:00
|
|
|
playlists: state => state.playlists.playlists,
|
|
|
|
|
track: state => state.playlists.modalTrack
|
2018-03-19 16:39:03 +00:00
|
|
|
}),
|
2018-07-01 19:50:50 +00:00
|
|
|
labels () {
|
|
|
|
|
return {
|
2019-12-07 16:06:24 +00:00
|
|
|
addToPlaylist: this.$pgettext('Popup/Playlist/Table.Button.Tooltip/Verb', 'Add to this playlist'),
|
|
|
|
|
filterPlaylistField: this.$pgettext('Popup/Playlist/Form/Placeholder', 'Enter playlist name')
|
2018-07-01 19:50:50 +00:00
|
|
|
}
|
|
|
|
|
},
|
2018-03-19 16:39:03 +00:00
|
|
|
sortedPlaylists () {
|
2019-12-07 16:06:24 +00:00
|
|
|
let regexp = new RegExp(this.playlistNameFilter, 'i');
|
|
|
|
|
let p = flow(
|
|
|
|
|
filter((e) => e.name.match(regexp) !== null),
|
|
|
|
|
sortBy((e) => { return e.modification_date }),
|
|
|
|
|
)(this.playlists)
|
2018-03-20 13:36:35 +00:00
|
|
|
p.reverse()
|
|
|
|
|
return p
|
2018-03-19 16:39:03 +00:00
|
|
|
}
|
2018-03-20 22:41:15 +00:00
|
|
|
},
|
|
|
|
|
watch: {
|
|
|
|
|
'$store.state.route.path' () {
|
|
|
|
|
this.$store.commit('playlists/showModal', false)
|
2019-04-24 09:31:46 +00:00
|
|
|
this.showDuplicateTrackAddConfirmation = false
|
2018-07-21 12:47:12 +00:00
|
|
|
},
|
|
|
|
|
'$store.state.playlists.showModal' () {
|
|
|
|
|
this.formKey = String(new Date())
|
2019-04-24 09:31:46 +00:00
|
|
|
this.showDuplicateTrackAddConfirmation = false
|
2018-03-20 22:41:15 +00:00
|
|
|
}
|
2018-03-19 16:39:03 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|