2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
|
|
|
<div
|
|
|
|
class="novjtctn"
|
|
|
|
: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: {
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
value: {
|
|
|
|
required: false
|
|
|
|
},
|
|
|
|
disabled: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
checked(): boolean {
|
|
|
|
return this.model === this.value;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
toggle() {
|
2020-08-01 03:53:23 +02:00
|
|
|
if (this.disabled) return;
|
2020-01-29 20:37:25 +01:00
|
|
|
this.$emit('change', this.value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.novjtctn {
|
|
|
|
display: inline-block;
|
|
|
|
margin: 0 32px 0 0;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
|
|
|
> * {
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.disabled {
|
|
|
|
opacity: 0.6;
|
2020-08-01 03:53:23 +02:00
|
|
|
|
|
|
|
&, * {
|
|
|
|
cursor: not-allowed !important;
|
|
|
|
}
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
&.checked {
|
|
|
|
> .button {
|
2020-01-31 07:50:46 +01:00
|
|
|
border-color: var(--accent);
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
&:after {
|
2020-01-31 07:50:46 +01:00
|
|
|
background-color: var(--accent);
|
2020-01-29 20:37:25 +01:00
|
|
|
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;
|
2020-02-01 03:44:31 +01:00
|
|
|
border: solid 2px var(--inputBorder);
|
2020-01-29 20:37:25 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|