mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
53 lines
1.2 KiB
Vue
53 lines
1.2 KiB
Vue
<template>
|
|
<button
|
|
v-koel-tooltip.top
|
|
:class="{ active: mode !== 'NO_REPEAT' }"
|
|
:title="`Change repeat mode (current: ${readableMode})`"
|
|
data-testid="repeat-mode-switch"
|
|
type="button"
|
|
@click.prevent="changeMode"
|
|
>
|
|
<FontAwesomeLayers>
|
|
<Icon :icon="faRepeat" />
|
|
<FontAwesomeLayersText v-if="mode === 'REPEAT_ONE'" counter value="1" />
|
|
</FontAwesomeLayers>
|
|
</button>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { FontAwesomeLayers, FontAwesomeLayersText } from '@fortawesome/vue-fontawesome'
|
|
import { faRepeat } from '@fortawesome/free-solid-svg-icons'
|
|
import { computed, toRef } from 'vue'
|
|
import { playbackService } from '@/services'
|
|
import { preferenceStore } from '@/stores'
|
|
|
|
const mode = toRef(preferenceStore.state, 'repeat_mode')
|
|
|
|
const readableMode = computed(() => mode.value
|
|
.split('_')
|
|
.map(part => part[0].toUpperCase() + part.substring(1).toLowerCase())
|
|
.join(' ')
|
|
)
|
|
|
|
const changeMode = () => playbackService.changeRepeatMode()
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.fa-layers-counter {
|
|
transform: none;
|
|
font-size: .45rem;
|
|
font-weight: bold;
|
|
right: 2px;
|
|
top: 2px;
|
|
color: currentColor;
|
|
background: transparent;
|
|
}
|
|
|
|
button {
|
|
opacity: .3;
|
|
}
|
|
|
|
.active {
|
|
opacity: 1;
|
|
}
|
|
</style>
|