koel/resources/assets/js/components/profile-preferences/ThemeList.vue

34 lines
838 B
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
<section>
<h1>Theme</h1>
<ul class="themes">
<li v-for="theme in themes" :key="theme.id">
2022-04-21 22:51:48 +00:00
<ThemeCard :key="theme.id" :theme="theme" @selected="setTheme"/>
2022-04-15 14:24:30 +00:00
</li>
</ul>
</section>
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
2022-04-21 22:51:48 +00:00
import { defineAsyncComponent, toRef } from 'vue'
2022-04-15 14:24:30 +00:00
import { themeStore } from '@/stores'
2022-04-21 22:51:48 +00:00
const ThemeCard = defineAsyncComponent(() => import('@/components/profile-preferences/ThemeCard.vue'))
const themes = toRef(themeStore.state, 'themes')
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
const setTheme = (theme: Theme) => themeStore.setTheme(theme)
2022-04-15 14:24:30 +00:00
</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>