owntone-server/web-src/src/components/ModalDialogComposer.vue

98 lines
3.1 KiB
Vue
Raw Normal View History

2021-10-23 05:48:11 -04:00
<template>
<div>
<transition name="fade">
<div v-if="show" class="modal is-active">
<div class="modal-background" @click="$emit('close')" />
2021-10-23 05:48:11 -04:00
<div class="modal-content fd-modal-card">
<div class="card">
<div class="card-content">
<p class="title is-4">
2022-05-20 07:44:22 -04:00
<a class="has-text-link" @click="open_albums" v-text="composer.name" />
2021-10-23 05:48:11 -04:00
</p>
<p>
2022-05-20 07:44:22 -04:00
<span class="heading" v-text="$t('dialog.composer.albums')" />
<a class="has-text-link is-6" @click="open_albums" v-text="composer.album_count" />
2021-10-23 05:48:11 -04:00
</p>
<p>
2022-05-20 07:44:22 -04:00
<span class="heading" v-text="$t('dialog.composer.tracks')" />
<a class="has-text-link is-6" @click="open_tracks" v-text="composer.track_count" />
2021-10-23 05:48:11 -04:00
</p>
<p>
2022-05-20 07:44:22 -04:00
<span class="heading" v-text="$t('dialog.composer.duration')" />
<span class="title is-6" v-text="$filters.durationInHours(composer.length_ms)" />
</p>
2021-10-23 05:48:11 -04:00
</div>
<footer class="card-footer">
<a class="card-footer-item has-text-dark" @click="queue_add">
2022-05-20 07:44:22 -04:00
<mdicon class="icon" name="playlist-plus" size="16" />
<span class="is-size-7" v-text="$t('dialog.composer.add')" />
2021-10-23 05:48:11 -04:00
</a>
<a class="card-footer-item has-text-dark" @click="queue_add_next">
2022-05-20 07:44:22 -04:00
<mdicon class="icon" name="playlist-play" size="16" />
<span class="is-size-7" v-text="$t('dialog.composer.add-next')" />
2021-10-23 05:48:11 -04:00
</a>
<a class="card-footer-item has-text-dark" @click="play">
2022-05-20 07:44:22 -04:00
<mdicon class="icon" name="play" size="16" />
<span class="is-size-7" v-text="$t('dialog.composer.play')" />
2021-10-23 05:48:11 -04:00
</a>
</footer>
</div>
</div>
2022-05-20 07:44:22 -04:00
<button class="modal-close is-large" aria-label="close" @click="$emit('close')" />
2021-10-23 05:48:11 -04:00
</div>
</transition>
</div>
</template>
<script>
import webapi from '@/webapi'
export default {
name: 'ModalDialogComposer',
props: ['show', 'composer'],
2022-02-19 01:05:59 -05:00
emits: ['close'],
2021-10-23 05:48:11 -04:00
methods: {
play: function () {
this.$emit('close')
webapi.player_play_expression(
'composer is "' + this.composer.name + '" and media_kind is music',
false
)
2021-10-23 05:48:11 -04:00
},
queue_add: function () {
this.$emit('close')
webapi.queue_expression_add(
'composer is "' + this.composer.name + '" and media_kind is music'
)
2021-10-23 05:48:11 -04:00
},
queue_add_next: function () {
this.$emit('close')
webapi.queue_expression_add_next(
'composer is "' + this.composer.name + '" and media_kind is music'
)
2021-10-23 05:48:11 -04:00
},
open_albums: function () {
this.$emit('close')
this.$router.push({
name: 'ComposerAlbums',
params: { composer: this.composer.name }
})
2021-10-23 05:48:11 -04:00
},
open_tracks: function () {
this.show_details_modal = false
this.$router.push({
name: 'ComposerTracks',
params: { composer: this.composer.name }
})
2021-10-23 05:48:11 -04:00
}
}
}
</script>
<style></style>