mirror of
https://github.com/koel/koel
synced 2024-12-29 22:13:06 +00:00
61 lines
1.2 KiB
Vue
61 lines
1.2 KiB
Vue
|
<template>
|
||
|
<button
|
||
|
class="control"
|
||
|
:class="preferences.repeatMode"
|
||
|
@click.prevent="changeRepeatMode"
|
||
|
:title="`Change repeat mode (current mode: ${readableRepeatMode})`"
|
||
|
data-testid="repeat-mode-switch"
|
||
|
>
|
||
|
<i class="fa fa-repeat"></i>
|
||
|
</button>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import Vue from 'vue'
|
||
|
import { playback } from '@/services'
|
||
|
import { preferenceStore } from '@/stores'
|
||
|
|
||
|
export default Vue.extend({
|
||
|
data: () => ({
|
||
|
preferences: preferenceStore.state
|
||
|
}),
|
||
|
|
||
|
computed: {
|
||
|
readableRepeatMode (): string {
|
||
|
return this.preferences.repeatMode
|
||
|
.split('_')
|
||
|
.map((part: string) => part[0].toUpperCase() + part.substr(1).toLowerCase())
|
||
|
.join(' ')
|
||
|
}
|
||
|
},
|
||
|
|
||
|
methods: {
|
||
|
changeRepeatMode: (): void => playback.changeRepeatMode()
|
||
|
}
|
||
|
})
|
||
|
</script>
|
||
|
|
||
|
<style lang="scss" scoped>
|
||
|
button {
|
||
|
position: relative;
|
||
|
|
||
|
&.REPEAT_ALL, &.REPEAT_ONE {
|
||
|
color: var(--color-highlight);
|
||
|
}
|
||
|
|
||
|
&.REPEAT_ONE::after {
|
||
|
content: "1";
|
||
|
position: absolute;
|
||
|
display: flex;
|
||
|
place-content: center;
|
||
|
place-items: center;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
font-weight: 700;
|
||
|
font-size: .5rem;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
}
|
||
|
}
|
||
|
</style>
|