Files
speckle-server/packages/frontend-2/components/project/CommentPermissionsSelect.vue
T
Kristaps Fabians Geikins 32a5a36ae3 feat(fe2): project tabs synced w/ URL + various hydration mismatch fixes (#2149)
* WIP project tabs + resolved various hydration mismatches

* hydration mismatch workaround

* getting rid if old pages

* fixed page tab underlines

* minor cleanup

* support trailing slash

* a few viewer bugfixes
2024-03-21 12:18:00 +02:00

60 lines
1.5 KiB
Vue

<template>
<FormSelectBase
v-model="selectValue"
:items="Object.values(items)"
label="Commenting permissions"
:show-label="showLabel"
:name="name || 'commentPermissions'"
:allow-unset="false"
:disabled="disabled"
:label-id="labelId"
:button-id="buttonId"
by="id"
>
<template #something-selected="{ value }">
<div class="label label--light">
{{ isArray(value) ? value[0].title : value.title }}
</div>
</template>
<template #option="{ item, selected }">
<div class="flex flex-col">
<div :class="['label label--light', selected ? 'text-primary' : '']">
{{ item.title }}
</div>
</div>
</template>
</FormSelectBase>
</template>
<script setup lang="ts">
import { isArray } from 'lodash-es'
import {
CommentPermissions,
commentPermissionsSelectItems
} from '~~/lib/projects/helpers/components'
const emit = defineEmits<{
(e: 'update:modelValue', v: CommentPermissions): void
}>()
const props = defineProps<{
modelValue: CommentPermissions
showLabel?: boolean
name?: string
disabled?: boolean
}>()
const labelId = useId()
const buttonId = useId()
const items = ref(commentPermissionsSelectItems)
const selectedValue = computed({
get: () => props.modelValue,
set: (newVal) => emit('update:modelValue', newVal)
})
const selectValue = computed({
get: () => items.value[selectedValue.value],
set: (newVal) => (selectedValue.value = newVal.id)
})
</script>