koel/resources/assets/js/components/ui/ViewModeSwitch.vue
2024-07-06 17:44:57 +02:00

52 lines
1.6 KiB
Vue

<template>
<span class="flex w-[64px] border border-solid border-white/20 rounded-md overflow-hidden mt-[0.5rem] md:mt-0">
<label
v-koel-tooltip
:class="{ active: value === 'thumbnails' }"
class="thumbnails"
data-testid="view-mode-thumbnail"
title="View as thumbnails"
>
<input v-model="value" class="hidden" name="view-mode" type="radio" value="thumbnails">
<Icon :icon="faThumbnailsHehe" />
<span class="hidden">View as thumbnails</span>
</label>
<label
v-koel-tooltip
:class="{ active: value === 'list' }"
class="list"
data-testid="view-mode-list"
title="View as list"
>
<input v-model="value" class="hidden" name="view-mode" type="radio" value="list">
<Icon :icon="faList" />
<span class="hidden">View as list</span>
</label>
</span>
</template>
<script lang="ts" setup>
import { faMicrosoft as faThumbnailsHehe } from '@fortawesome/free-brands-svg-icons'
import { faList } from '@fortawesome/free-solid-svg-icons'
import { computed } from 'vue'
const props = withDefaults(defineProps<{ modelValue?: ArtistAlbumViewMode }>(), { modelValue: 'thumbnails' })
const emit = defineEmits<{ (e: 'update:modelValue', value: ArtistAlbumViewMode): void }>()
const value = computed({
get: () => props.modelValue,
set: value => emit('update:modelValue', value)
})
</script>
<style lang="postcss" scoped>
label {
@apply w-1/2 flex items-center justify-center h-[2rem] mb-0 cursor-pointer;
&.active {
@apply bg-k-text-primary text-k-bg-primary;
}
}
</style>