Files
speckle-server/packages/frontend-2/components/project/CommentPermissionsSelect.vue
T
Kristaps Fabians Geikins 83d8035dc2 chore: upgrade to eslint 9 (#2348)
* root + server

* frontend

* frontend-2

* dui3

* dui3

* tailwind theme

* ui-components

* preview service

* viewer

* viewer-sandbox

* fileimport-service

* webhook service

* objectloader

* shared

* ui-components-nuxt

* WIP full config

* WIP full linter

* eslint projectwide util

* minor fix

* removing redundant ci

* clean up test errors

* fixed prettier formatting

* CI improvements

* TSC lint fix

* 'buildBatch' needs to be async since some batch types (like Text) require it. Removed a disabled liniting rule from ObjLoader

* removed unnecessary void

---------

Co-authored-by: AlexandruPopovici <alexandrupopoviciioan@gmail.com>
2024-06-12 14:38:02 +03:00

58 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 type { CommentPermissions } from '~~/lib/projects/helpers/components'
import { 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>