56 lines
1.2 KiB
Vue
56 lines
1.2 KiB
Vue
<template>
|
|
<div class="flex items-center gap-3 text-sm">
|
|
<span class="text-guild-400 text-xs font-medium"
|
|
>{{ label }}:</span
|
|
>
|
|
<div class="flex items-center gap-2">
|
|
<span
|
|
class="text-xs transition-colors"
|
|
:class="
|
|
isPrivate
|
|
? 'text-guild-500'
|
|
: 'text-candlelight-500 font-semibold'
|
|
"
|
|
>
|
|
Members
|
|
</span>
|
|
<USwitch
|
|
:model-value="isPrivate"
|
|
@update:model-value="togglePrivacy"
|
|
color="primary"
|
|
size="md"
|
|
/>
|
|
<span
|
|
class="text-xs transition-colors"
|
|
:class="
|
|
isPrivate
|
|
? 'text-candlelight-500 font-semibold'
|
|
: 'text-guild-500'
|
|
"
|
|
>
|
|
Private
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const props = defineProps({
|
|
modelValue: {
|
|
type: String,
|
|
default: 'members',
|
|
},
|
|
label: {
|
|
type: String,
|
|
default: 'Privacy',
|
|
},
|
|
})
|
|
|
|
const emit = defineEmits(['update:modelValue'])
|
|
|
|
const isPrivate = computed(() => props.modelValue === 'private')
|
|
|
|
const togglePrivacy = (value) => {
|
|
emit('update:modelValue', value ? 'private' : 'members')
|
|
}
|
|
</script>
|