Last active
May 28, 2021 05:24
-
-
Save lapshinmr/7b8fe062f776d07a53ce9c2884dac9c1 to your computer and use it in GitHub Desktop.
Template for the color picker based on the radio button and browser variables.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <div> | |
| <div v-for="(color, colorName, index) in colorThemes" | |
| > | |
| <input | |
| type="radio" | |
| name="theme" | |
| :id="'color' + index" | |
| :value="colorName" | |
| v-model="colorTheme" | |
| > | |
| <label | |
| :for="'color' + index" | |
| :style="label(colorName)" | |
| > | |
| </label> | |
| </div> | |
| </div> | |
| </template> | |
| <script> | |
| import { mapActions } from 'vuex'; | |
| import { COLOR_THEMES } from '@/constants' | |
| export default { | |
| name: 'color-settings', | |
| data() { | |
| return { | |
| colorThemes: COLOR_THEMES | |
| } | |
| }, | |
| computed: { | |
| colorTheme: { | |
| get() { | |
| return this.$store.state.colorTheme | |
| }, | |
| set(colorTheme) { | |
| this.setColorTheme(colorTheme) | |
| } | |
| }, | |
| }, | |
| methods: { | |
| ...mapActions([ | |
| 'setColorTheme' | |
| ]), | |
| label: function(colorName) { | |
| return { | |
| '--color-background': this.colorTheme === colorName ? this.colorThemes[colorName].dark : this.colorThemes[colorName].primary, | |
| '--color-hover': this.colorTheme === colorName ? this.colorThemes[colorName].superDark : this.colorThemes[colorName].dark | |
| } | |
| } | |
| } | |
| } | |
| </script> | |
| <style lang="sass" scoped> | |
| input | |
| display: none | |
| label | |
| display: block | |
| height: 5vh | |
| width: 5vh | |
| margin-bottom: 0 | |
| border-radius: 50% | |
| cursor: pointer | |
| transition: all 0.15s | |
| background-color: var(--color-background) | |
| input:checked + label | |
| background-color: var(--color-background)!important | |
| box-shadow: 0 0 10px var(--color-hover) | |
| label, input:checked + label | |
| &:hover | |
| background-color: var(--color-hover)!important | |
| </style> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment