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

108 lines
3.1 KiB
Vue
Raw Normal View History

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