Newer
Older
<script setup lang="ts">
import type { ICheckboxProps } from '@interfaces/componentsProps';

Дмитрий Малюгин
committed
import { computed, watch } from 'vue';
import { convertThemeToColor, convertThemeToTextColor, getValueFromSize } from '../../common/helpers/common';
import CheckMarkIcon from '../../icons/Mono/CheckMarkIcon.vue';
const props = withDefaults(defineProps<ICheckboxProps>(), {
label: '',
name: '',
labelPos: 'right',
size: 'normal',
theme: 'white',
activeTheme: 'black',
textColor: 'black',
borderColor: 'black',
darknessTheme: '500',
darknessActiveTheme: '500',
darknessTextColor: '500',

Дмитрий Малюгин
committed
const emit = defineEmits(['update']);
if (props.active) {
active.value = props.active;
}

Дмитрий Малюгин
committed
const propActive = computed(() => props.active);
watch(propActive, () => (active.value = propActive.value));

Дмитрий Малюгин
committed
watch(active, () => emit('update', active));
const themeColor = computed(() => convertThemeToColor(props.theme, props.darknessTheme));
const activeThemeColor = computed(() => convertThemeToColor(props.activeTheme, props.darknessActiveTheme));
const iconColor = computed(() =>
props.disabled ? '#62708c' : convertThemeToTextColor(props.activeTheme, props.darknessActiveTheme),
);
const color = computed(() => convertThemeToColor(props.textColor, props.darknessTextColor));
const borderColor = computed(() =>
props.invalid ? 'red' : props.disabled ? '#62708c' : convertThemeToColor(props.borderColor, props.darknessBorder),
const elSize = computed(() => getValueFromSize(props.size, [13, 20, 30, 40]));
const gap = computed(() => {
if (!props.label) return '0px';
return getValueFromSize(props.size, ['5px', '7px', '10px', '15px']);
});
const borderWidth = computed(() => (props.size === 'large' || props.size === 'huge' ? 2 : 1));
const borderRadius = computed(() => `${elSize.value / 7 - borderWidth.value}px`);
</script>
<template>
<section
:class="[
'container',
{
flexColumn: ['top', 'bottom'].includes(labelPos),
},
]"
@click.prevent="!disabled ? (active = !active) : ''"
>
<div class="main" :style="`width: ${elSize}px; height: ${elSize}px; border: ${borderWidth}px solid ${borderColor}`">
<input
:style="`width: ${elSize}px; height: ${elSize}px; position: absolute; top: 0; left: 0; z-index: 100; cursor: ${disabled ? 'initial' : 'pointer'}`"
v-model="active"
type="checkbox"
:name="name"
:value="label"
:disabled="disabled"
/>
<div
:class="[
{
inactive: !active,
active: active,
disabled: disabled,
},
]"
>
<CheckMarkIcon
:style="`transition: all 0.3s ease-in-out; opacity: ${active ? 1 : 0}; position: absolute; top: 0; left: 0`"
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
:color="iconColor"
:size="elSize"
/>
</div>
</div>
<p
:class="[
{
first: ['top', 'left'].includes(labelPos),
},
]"
:style="`color: ${color}; line-height: 0.9; font-size: ${elSize}px; pointer-events: none`"
>
{{ label }}
</p>
</section>
</template>
<style scoped>
.container {
position: relative;
display: flex;
gap: v-bind(gap);
box-sizing: content-box;
width: max-content;
}
.main {
position: relative;
border-radius: 15%;
}
.inactive {
height: 100%;
border-radius: v-bind(borderRadius);
background-color: v-bind(themeColor);
transition: all 0.2s ease-in-out;
}
.active {
width: 100%;
height: 100%;
border-radius: v-bind(borderRadius);
background-color: v-bind(activeThemeColor);
transition: all 0.2s ease-in-out;
}
.disabled {
background-color: #e1e7f1 !important;
}
.first {
order: -1;
}
.flexColumn {
flex-direction: column;
align-items: center;
}
input[type='checkbox'] {
all: unset;
width: 100%;
}
</style>