mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-04-28 22:44:43 +00:00
69 lines
1.8 KiB
Vue
69 lines
1.8 KiB
Vue
<template>
|
|
<div v-for="option in options" :key="option.value" class="flex items-center mb-2">
|
|
<input
|
|
:id="`radio-${id}-${option.value}`"
|
|
type="radio"
|
|
class="radio relative flex-shrink-0 border bg-wp-control-neutral-100 border-wp-control-neutral-200 cursor-pointer rounded-full w-5 h-5 checked:bg-wp-control-ok-200 checked:border-wp-control-ok-200 focus-visible:border-wp-control-neutral-300 checked:focus-visible:border-wp-control-ok-300"
|
|
:value="option.value"
|
|
:checked="innerValue?.includes(option.value)"
|
|
@click="innerValue = option.value"
|
|
/>
|
|
<div class="flex flex-col ml-4">
|
|
<label class="cursor-pointer text-wp-text-100" :for="`radio-${id}-${option.value}`">{{ option.text }}</label>
|
|
<span v-if="option.description" class="text-sm text-wp-text-alt-100">{{ option.description }}</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { computed, toRef } from 'vue';
|
|
|
|
import type { RadioOption } from './form.types';
|
|
|
|
const props = defineProps<{
|
|
modelValue: string;
|
|
options: RadioOption[];
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(event: 'update:modelValue', value: string): void;
|
|
}>();
|
|
|
|
const modelValue = toRef(props, 'modelValue');
|
|
const innerValue = computed({
|
|
get: () => modelValue.value,
|
|
set: (value) => {
|
|
emit('update:modelValue', value);
|
|
},
|
|
});
|
|
|
|
const id = (Math.random() + 1).toString(36).substring(7);
|
|
</script>
|
|
|
|
<style scoped>
|
|
.radio {
|
|
appearance: none;
|
|
outline: 0;
|
|
cursor: pointer;
|
|
transition: background 175ms cubic-bezier(0.1, 0.1, 0.25, 1);
|
|
}
|
|
|
|
.radio::before {
|
|
position: absolute;
|
|
content: '';
|
|
display: block;
|
|
top: 50%;
|
|
left: 50%;
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: white;
|
|
transform: translate(-50%, -50%);
|
|
opacity: 0;
|
|
@apply dark:bg-white;
|
|
}
|
|
|
|
.radio:checked::before {
|
|
opacity: 1;
|
|
}
|
|
</style>
|