Files
speckle-server/packages/frontend-2/components/projects/AddDialog.vue
T
andrewwallacespeckle d6754d6c80 fix(fe2): Align dialogs with the designs (#2895)
* Updates to Dialogs

* Updates to dialogs
2024-09-09 13:46:53 +01:00

101 lines
2.5 KiB
Vue

<template>
<LayoutDialog v-model:open="open" max-width="sm" :buttons="dialogButtons">
<template #header>Create a new project</template>
<form class="flex flex-col text-foreground" @submit="onSubmit">
<div class="flex flex-col gap-3 mb-2">
<FormTextInput
name="name"
label="Project name"
placeholder="Project name"
color="foundation"
:rules="[isRequired, isStringOfLength({ maxLength: 512 })]"
show-required
auto-focus
autocomplete="off"
show-label
/>
<FormTextArea
name="description"
label="Project description"
placeholder="Description"
color="foundation"
size="lg"
show-label
:rules="[isStringOfLength({ maxLength: 65536 })]"
/>
<div>
<h3 class="label mb-2">Access permissions</h3>
<ProjectVisibilitySelect
v-model="visibility"
class="max-w-xs"
mount-menu-on-body
/>
</div>
</div>
</form>
</LayoutDialog>
</template>
<script setup lang="ts">
import type { LayoutDialogButton } from '@speckle/ui-components'
import { useForm } from 'vee-validate'
import { ProjectVisibility } from '~~/lib/common/generated/gql/graphql'
import { isRequired, isStringOfLength } from '~~/lib/common/helpers/validation'
import { useMixpanel } from '~~/lib/core/composables/mp'
import { useCreateProject } from '~~/lib/projects/composables/projectManagement'
type FormValues = {
name: string
description?: string
}
const props = defineProps<{
workspaceId?: string
}>()
const emit = defineEmits<{
(e: 'created'): void
}>()
const createProject = useCreateProject()
const { handleSubmit } = useForm<FormValues>()
const visibility = ref(ProjectVisibility.Unlisted)
const open = defineModel<boolean>('open', { required: true })
const mp = useMixpanel()
const onSubmit = handleSubmit(async (values) => {
await createProject({
...values,
visibility: visibility.value,
workspaceId: props.workspaceId
})
emit('created')
mp.track('Stream Action', {
type: 'action',
name: 'create',
// eslint-disable-next-line camelcase
workspace_id: props.workspaceId
})
open.value = false
})
const dialogButtons = computed((): LayoutDialogButton[] => [
{
text: 'Cancel',
props: { color: 'outline' },
onClick: () => {
open.value = false
}
},
{
text: 'Create',
props: {
submit: true
},
onClick: onSubmit
}
])
</script>