mirror of
https://github.com/koel/koel
synced 2024-12-20 09:33:23 +00:00
49 lines
1.2 KiB
Vue
49 lines
1.2 KiB
Vue
<template>
|
|
<button
|
|
:class="{ active: mode !== 'NO_REPEAT' }"
|
|
:title="`Change repeat mode (current mode: ${readableMode})`"
|
|
class="control"
|
|
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, 'repeatMode')
|
|
|
|
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: var(--color-accent);
|
|
background: transparent;
|
|
}
|
|
|
|
.active {
|
|
color: var(--color-highlight);
|
|
}
|
|
</style>
|