koel/resources/assets/js/components/profile-preferences/ThemeList.vue
2022-12-02 17:17:37 +01:00

34 lines
811 B
Vue

<template>
<section>
<h1>Theme</h1>
<ul class="themes">
<li v-for="theme in themes" :key="theme.id" data-testid="theme-card">
<ThemeCard :key="theme.id" :theme="theme" @selected="setTheme" />
</li>
</ul>
</section>
</template>
<script lang="ts" setup>
import { toRef } from 'vue'
import { themeStore } from '@/stores'
import ThemeCard from '@/components/profile-preferences/ThemeCard.vue'
const themes = toRef(themeStore.state, 'themes')
const setTheme = (theme: Theme) => themeStore.setTheme(theme)
</script>
<style lang="scss" scoped>
.themes {
display: grid;
grid-auto-rows: 8rem;
grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
grid-gap: .75rem 1rem;
@media only screen and (max-width: 667px) {
grid-template-columns: 1fr;
}
}
</style>