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

49 lines
953 B
Vue
Raw Normal View History

<template>
<a v-if="visible" :disabled="disabled" @click="seek">
2022-05-20 07:44:22 -04:00
<mdicon class="icon" name="fast-forward" :size="icon_size" />
</a>
</template>
<script>
import webapi from '@/webapi'
export default {
name: 'PlayerButtonSeekForward',
props: {
seek_ms: Number,
icon_size: {
type: Number,
default: 16
}
},
computed: {
now_playing() {
return this.$store.getters.now_playing
},
is_stopped() {
return this.$store.state.player.state === 'stop'
},
disabled() {
return (
!this.$store.state.queue ||
this.$store.state.queue.count <= 0 ||
this.is_stopped ||
this.now_playing.data_kind === 'pipe'
)
},
visible() {
return ['podcast', 'audiobook'].includes(this.now_playing.media_kind)
}
},
methods: {
seek: function () {
if (!this.disabled) {
webapi.player_seek(this.seek_ms)
}
}
}
}
</script>