Files
speckle-server/packages/frontend-2/components/projects/AddDialog.vue
T
andrewwallacespeckle 86d02395a2 fix(fe2): Use better input names to avoid triggering autocomplete. Stop "a few seconds ago" from breaking line (#2280)
* Use better input names to avoid triggering autocomplete

* Don't break line for "a few seconds ago"

* Other cases of name="name"

* Revert "Other cases of name="name""

This reverts commit fef7068bcb9e1511b1b57e17cc7824c4b2b39fe8.

* Revert "Use better input names to avoid triggering autocomplete"

This reverts commit f7d8d02ee1396a91ba984a64e32553fee9ec419b.

* Add autocomplete off
2024-05-23 10:14:37 +02:00

91 lines
2.4 KiB
Vue

<template>
<LayoutDialog v-model:open="open" max-width="sm" :buttons="dialogButtons">
<template #header>Create new project</template>
<form class="flex flex-col text-foreground" @submit="onSubmit">
<div class="flex flex-col space-y-3 mb-6">
<FormTextInput
name="name"
label="Project name"
placeholder="Project name"
:rules="[isRequired, isStringOfLength({ maxLength: 512 })]"
show-required
auto-focus
autocomplete="off"
/>
<FormTextArea
name="description"
label="Project description"
placeholder="Description (optional)"
size="lg"
:rules="[isStringOfLength({ maxLength: 65536 })]"
/>
</div>
<div
class="flex flex-col space-y-4 items-end md:flex-row md:justify-between md:items-center md:space-y-0"
>
<ProjectVisibilitySelect
v-model="visibility"
class="sm:max-w-none w-full sm:w-80"
mount-menu-on-body
/>
</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 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
})
emit('created')
mp.track('Stream Action', { type: 'action', name: 'create' })
open.value = false
})
const dialogButtons = computed((): LayoutDialogButton[] => [
{
text: 'Cancel',
props: { color: 'secondary', fullWidth: true },
onClick: () => {
open.value = false
}
},
{
text: 'Create',
props: {
color: 'default',
fullWidth: true,
outline: true,
submit: true
},
onClick: onSubmit
}
])
</script>