mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 11:53:08 +02:00
121 lines
1.7 KiB
Vue
121 lines
1.7 KiB
Vue
|
<template>
|
||
|
<div
|
||
|
class="ui-radio"
|
||
|
:class="{ disabled, checked }"
|
||
|
:aria-checked="checked"
|
||
|
:aria-disabled="disabled"
|
||
|
@click="toggle"
|
||
|
>
|
||
|
<input type="radio"
|
||
|
:disabled="disabled"
|
||
|
>
|
||
|
<span class="button">
|
||
|
<span></span>
|
||
|
</span>
|
||
|
<span class="label"><slot></slot></span>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import Vue from 'vue';
|
||
|
export default Vue.extend({
|
||
|
model: {
|
||
|
prop: 'model',
|
||
|
event: 'change'
|
||
|
},
|
||
|
props: {
|
||
|
model: {
|
||
|
type: String,
|
||
|
required: false
|
||
|
},
|
||
|
value: {
|
||
|
type: String,
|
||
|
required: false
|
||
|
},
|
||
|
disabled: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
}
|
||
|
},
|
||
|
computed: {
|
||
|
checked(): boolean {
|
||
|
return this.model === this.value;
|
||
|
}
|
||
|
},
|
||
|
methods: {
|
||
|
toggle() {
|
||
|
this.$emit('change', this.value);
|
||
|
}
|
||
|
}
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style lang="stylus" scoped>
|
||
|
@import '~const.styl'
|
||
|
|
||
|
root(isDark)
|
||
|
display inline-block
|
||
|
margin 32px 32px 32px 0
|
||
|
cursor pointer
|
||
|
transition all 0.3s
|
||
|
|
||
|
> *
|
||
|
user-select none
|
||
|
|
||
|
&.disabled
|
||
|
opacity 0.6
|
||
|
cursor not-allowed
|
||
|
|
||
|
&.checked
|
||
|
> .button
|
||
|
border-color $theme-color
|
||
|
|
||
|
&:after
|
||
|
background-color $theme-color
|
||
|
transform scale(1)
|
||
|
opacity 1
|
||
|
|
||
|
> input
|
||
|
position absolute
|
||
|
width 0
|
||
|
height 0
|
||
|
opacity 0
|
||
|
margin 0
|
||
|
|
||
|
> .button
|
||
|
position absolute
|
||
|
width 20px
|
||
|
height 20px
|
||
|
background none
|
||
|
border solid 2px rgba(#000, 0.54)
|
||
|
border-radius 100%
|
||
|
transition inherit
|
||
|
|
||
|
&:after
|
||
|
content ''
|
||
|
display block
|
||
|
position absolute
|
||
|
top 3px
|
||
|
right 3px
|
||
|
bottom 3px
|
||
|
left 3px
|
||
|
border-radius 100%
|
||
|
opacity 0
|
||
|
transform scale(0)
|
||
|
transition 0.4s cubic-bezier(0.25, 0.8, 0.25, 1)
|
||
|
|
||
|
> .label
|
||
|
margin-left 28px
|
||
|
display block
|
||
|
font-size 16px
|
||
|
line-height 20px
|
||
|
cursor pointer
|
||
|
|
||
|
.ui-radio[data-darkmode]
|
||
|
root(true)
|
||
|
|
||
|
.ui-radio:not([data-darkmode])
|
||
|
root(false)
|
||
|
|
||
|
</style>
|