mirror of
https://github.com/BrenBroZAYT/dashy.git
synced 2026-06-14 08:15:26 +00:00
93 lines
1.8 KiB
Vue
93 lines
1.8 KiB
Vue
<template>
|
|
<div class="theme-selector-section" v-if="themes" >
|
|
<span class="theme-label">Themes</span>
|
|
<v-select
|
|
:options="themeNames"
|
|
v-model="selectedTheme"
|
|
class="theme-dropdown"
|
|
:tabindex="100"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import ThemeHelper from '@/utils/ThemeHelper';
|
|
|
|
export default {
|
|
name: 'ThemeSelector',
|
|
props: {
|
|
themes: Object,
|
|
},
|
|
watch: {
|
|
selectedTheme(newTheme) {
|
|
this.themeHelper.theme = newTheme;
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
selectedTheme: 'Default',
|
|
themeHelper: new ThemeHelper(),
|
|
loading: true,
|
|
};
|
|
},
|
|
computed: {
|
|
themeNames: function themeNames() { return Object.keys(this.themes); },
|
|
},
|
|
created() {
|
|
const added = Object.keys(this.themes).map(
|
|
name => this.themeHelper.add(name, this.themes[name]),
|
|
);
|
|
Promise.all(added).then(() => {
|
|
this.loading = false;
|
|
this.themeHelper.theme = 'Deafault';
|
|
});
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
@import 'vue-select/src/scss/vue-select.scss';
|
|
|
|
.theme-dropdown {
|
|
div.vs__dropdown-toggle {
|
|
border-color: var(--primary);
|
|
min-width: 10rem;
|
|
height: 1.8rem;
|
|
font-size: 0.85rem;
|
|
}
|
|
span.vs__selected, li.vs__dropdown-option {
|
|
color: var(--primary);
|
|
}
|
|
svg.vs__open-indicator {
|
|
fill: var(--primary);
|
|
}
|
|
ul.vs__dropdown-menu {
|
|
width: auto;
|
|
background: var(--background);
|
|
}
|
|
li.vs__dropdown-option--highlight {
|
|
background: var(--primary);
|
|
color: var(--background);
|
|
}
|
|
button.vs__clear {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.theme-selector-section {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
height: 100%;
|
|
padding: 0 1rem;
|
|
span.theme-label {
|
|
font-size: 1rem;
|
|
color: var(--primary);
|
|
margin: 1px 0 2px 0;
|
|
}
|
|
}
|
|
|
|
</style>
|