funkwhale/front/src/components/playlists/PlaylistModal.vue

199 wiersze
7.9 KiB
Vue
Czysty Zwykły widok Historia

<template>
2018-03-20 18:57:34 +00:00
<modal @update:show="update" :show="$store.state.playlists.showModal">
<h4 class="header">
<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}"
:translate-params="{artist: track.artist.name, title: track.title}">
2018-06-30 13:28:47 +00:00
"%{ title }", by %{ artist }
</div>
</h2>
</template>
<translate v-else translate-context="Popup/Playlist/Title/Verb">Manage playlists</translate>
</h4>
<div class="scrolling content">
<playlist-form :key="formKey"></playlist-form>
<div class="ui divider"></div>
<div v-if="playlists.length > 0">
<div v-if="showDuplicateTrackAddConfirmation" role="alert" class="ui warning message">
<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
@click="duplicateTrackAddConfirm(false)"
class="ui small basic cancel button"><translate translate-context="*/*/Button.Label/Verb">Cancel</translate>
</button>
<button
2020-05-15 12:12:36 +00:00
class="ui small success button"
@click="addToPlaylist(lastSelectedPlaylist, true)">
<translate translate-context="*/Playlist/Button.Label/Verb">Add anyways</translate></button>
</div>
<div v-if="errors.length > 0" role="alert" class="ui negative message">
<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>
</div>
2019-03-08 11:37:02 +00:00
<h4 class="ui header"><translate translate-context="Popup/Playlist/Title">Available playlists</translate></h4>
<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" />
</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>
<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>
<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>
<div
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"
@click="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>
2018-03-20 22:41:15 +00:00
</div>
</td>
</tr>
</tbody>
</table>
<template v-else>
2020-05-15 12:12:36 +00:00
<div class="ui small placeholder segment component-placeholder">
<h4 class="ui header">
<translate translate-context="Popup/Playlist/EmptyState">No results matching your filter</translate>
</h4>
</div>
</template>
<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>
</div>
2018-03-20 22:41:15 +00:00
</div>
<div class="actions">
<button class="ui basic cancel button"><translate translate-context="*/*/Button.Label/Verb">Cancel</translate></button>
2018-03-20 22:41:15 +00:00
</div>
</modal>
</template>
<script>
import filter from "lodash/fp/filter";
import sortBy from "lodash/fp/sortBy";
import flow from "lodash/fp/flow";
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 {
formKey: String(new Date()),
errors: [],
playlistNameFilter: '',
duplicateTrackAddInfo: {},
showDuplicateTrackAddConfirmation: false,
lastSelectedPlaylist: -1,
}
},
methods: {
update (v) {
2018-03-20 18:57:34 +00:00
this.$store.commit('playlists/showModal', v)
},
addToPlaylist (playlistId, allowDuplicate) {
let self = this
let payload = {
2020-07-27 13:31:49 +00:00
tracks: [this.track.id],
allow_duplicates: allowDuplicate
}
self.lastSelectedPlaylist = playlistId
2020-07-27 13:31:49 +00:00
return axios.post(`playlists/${playlistId}/add`, payload).then(response => {
logger.default.info('Successfully added track to playlist')
2018-03-20 18:57:34 +00:00
self.update(false)
self.$store.dispatch('playlists/fetchOwn')
}, error => {
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
}
})
},
duplicateTrackAddConfirm (v) {
this.showDuplicateTrackAddConfirmation = v
}
},
computed: {
...mapState({
2018-03-20 18:57:34 +00:00
playlists: state => state.playlists.playlists,
track: state => state.playlists.modalTrack
}),
2018-07-01 19:50:50 +00:00
labels () {
return {
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
}
},
sortedPlaylists () {
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)
p.reverse()
return p
}
2018-03-20 22:41:15 +00:00
},
watch: {
'$store.state.route.path' () {
this.$store.commit('playlists/showModal', false)
this.showDuplicateTrackAddConfirmation = false
},
'$store.state.playlists.showModal' () {
this.formKey = String(new Date())
this.showDuplicateTrackAddConfirmation = false
2018-03-20 22:41:15 +00:00
}
}
}
</script>