83d8035dc2
* 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>
286 lines
7.3 KiB
Vue
286 lines
7.3 KiB
Vue
<template>
|
|
<LayoutDialog
|
|
v-model:open="open"
|
|
:title="title"
|
|
:buttons="buttons"
|
|
max-width="md"
|
|
:buttons-wrapper-classes="buttonsWrapperClasses"
|
|
:on-submit="onDialogSubmit"
|
|
prevent-close-on-click-outside
|
|
>
|
|
<div class="flex flex-col gap-11">
|
|
<CommonStepsNumber
|
|
v-if="shouldShowStepsWidget"
|
|
v-model="stepsWidgetModel"
|
|
:steps="stepsWidgetSteps"
|
|
:go-vertical-below="TailwindBreakpoints.sm"
|
|
non-interactive
|
|
/>
|
|
<AutomateFunctionCreateDialogAuthorizeStep
|
|
v-if="enumStep === FunctionCreateSteps.Authorize"
|
|
/>
|
|
<AutomateFunctionCreateDialogTemplateStep
|
|
v-else-if="enumStep === FunctionCreateSteps.Template"
|
|
v-model:selected-template="selectedTemplate"
|
|
:templates="templates"
|
|
/>
|
|
<AutomateFunctionCreateDialogDetailsStep
|
|
v-else-if="enumStep === FunctionCreateSteps.Details"
|
|
:github-orgs="githubOrgs"
|
|
/>
|
|
<AutomateFunctionCreateDialogDoneStep
|
|
v-else-if="enumStep === FunctionCreateSteps.Done && createdFunction"
|
|
:created-function="createdFunction"
|
|
/>
|
|
</div>
|
|
</LayoutDialog>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import {
|
|
ArrowRightIcon,
|
|
ChevronLeftIcon,
|
|
ChevronRightIcon
|
|
} from '@heroicons/vue/24/outline'
|
|
import {
|
|
CommonStepsNumber,
|
|
type LayoutDialogButton,
|
|
TailwindBreakpoints
|
|
} from '@speckle/ui-components'
|
|
import type {
|
|
CreatableFunctionTemplate,
|
|
FunctionDetailsFormValues
|
|
} from '~/lib/automate/helpers/functions'
|
|
import {
|
|
automateGithubAppAuthorizationRoute,
|
|
automationFunctionRoute
|
|
} from '~/lib/common/helpers/route'
|
|
import { useEnumSteps, useEnumStepsWidgetSetup } from '~/lib/form/composables/steps'
|
|
import { useForm } from 'vee-validate'
|
|
import { useCreateAutomateFunction } from '~/lib/automate/composables/management'
|
|
import { useMutationLoading } from '@vue/apollo-composable'
|
|
import type { AutomateFunctionCreateDialogDoneStep_AutomateFunctionFragment } from '~~/lib/common/generated/gql/graphql'
|
|
import { useMixpanel } from '~/lib/core/composables/mp'
|
|
|
|
enum FunctionCreateSteps {
|
|
Authorize,
|
|
Template,
|
|
Details,
|
|
Done
|
|
}
|
|
|
|
type DetailsFormValues = FunctionDetailsFormValues
|
|
|
|
const props = defineProps<{
|
|
isAuthorized: boolean
|
|
templates: CreatableFunctionTemplate[]
|
|
githubOrgs: string[]
|
|
}>()
|
|
const open = defineModel<boolean>('open', { required: true })
|
|
|
|
const mixpanel = useMixpanel()
|
|
const logger = useLogger()
|
|
const mutationLoading = useMutationLoading()
|
|
const createFunction = useCreateAutomateFunction()
|
|
const { handleSubmit: handleDetailsSubmit } = useForm<DetailsFormValues>()
|
|
const onDetailsSubmit = handleDetailsSubmit(async (values) => {
|
|
if (!selectedTemplate.value) {
|
|
logger.warn('Unexpectedly missing selected template')
|
|
return
|
|
}
|
|
|
|
const res = await createFunction({
|
|
input: {
|
|
supportedSourceApps: (values.allowedSourceApps || []).map((a) => a.name),
|
|
tags: values.tags || [],
|
|
template: selectedTemplate.value.id,
|
|
logo: values.image,
|
|
name: values.name,
|
|
description: values.description
|
|
}
|
|
})
|
|
|
|
if (res?.id) {
|
|
mixpanel.track('Automate Function Created', {
|
|
functionId: res.id,
|
|
templateId: selectedTemplate.value.id,
|
|
name: values.name
|
|
})
|
|
createdFunction.value = res
|
|
step.value++
|
|
}
|
|
})
|
|
|
|
const onSubmit = computed(() => {
|
|
switch (enumStep.value) {
|
|
case FunctionCreateSteps.Details:
|
|
return onDetailsSubmit
|
|
default:
|
|
return noop
|
|
}
|
|
})
|
|
const stepsOrder = computed(() => [
|
|
...(props.isAuthorized ? [] : [FunctionCreateSteps.Authorize]),
|
|
FunctionCreateSteps.Template,
|
|
FunctionCreateSteps.Details,
|
|
FunctionCreateSteps.Done
|
|
])
|
|
|
|
const stepsWidgetData = computed(() => [
|
|
{
|
|
step: FunctionCreateSteps.Template,
|
|
title: 'Choose a template'
|
|
},
|
|
{
|
|
step: FunctionCreateSteps.Details,
|
|
title: 'Function details'
|
|
}
|
|
])
|
|
|
|
const selectedTemplate = ref<CreatableFunctionTemplate>()
|
|
const createdFunction =
|
|
ref<AutomateFunctionCreateDialogDoneStep_AutomateFunctionFragment>()
|
|
|
|
const apiBaseUrl = useApiOrigin()
|
|
const { enumStep, step } = useEnumSteps({ order: stepsOrder })
|
|
const {
|
|
items: stepsWidgetSteps,
|
|
model: stepsWidgetModel,
|
|
shouldShowWidget: shouldShowStepsWidget
|
|
} = useEnumStepsWidgetSetup({ enumStep, widgetStepsMap: stepsWidgetData })
|
|
|
|
const title = computed(() => {
|
|
switch (enumStep.value) {
|
|
case FunctionCreateSteps.Authorize:
|
|
return 'Authorize GitHub'
|
|
case FunctionCreateSteps.Template:
|
|
case FunctionCreateSteps.Details:
|
|
case FunctionCreateSteps.Done:
|
|
return 'Create function'
|
|
default:
|
|
return ''
|
|
}
|
|
})
|
|
|
|
const authorizeGithubUrl = computed(() => {
|
|
const redirectUrl = new URL(automateGithubAppAuthorizationRoute, apiBaseUrl)
|
|
return redirectUrl.toString()
|
|
})
|
|
|
|
const buttons = computed((): LayoutDialogButton[] => {
|
|
switch (enumStep.value) {
|
|
case FunctionCreateSteps.Authorize:
|
|
return [
|
|
{
|
|
id: 'authorizeClose',
|
|
text: 'Close',
|
|
props: {
|
|
color: 'secondary',
|
|
fullWidth: true
|
|
},
|
|
onClick: () => (open.value = false)
|
|
},
|
|
{
|
|
id: 'authorizeAuthorize',
|
|
text: 'Authorize',
|
|
props: {
|
|
fullWidth: true,
|
|
to: authorizeGithubUrl.value,
|
|
external: true
|
|
}
|
|
}
|
|
]
|
|
case FunctionCreateSteps.Template:
|
|
return [
|
|
{
|
|
id: 'templateNext',
|
|
text: 'Next',
|
|
props: {
|
|
iconRight: ChevronRightIcon,
|
|
disabled: !selectedTemplate.value
|
|
},
|
|
onClick: () => step.value++
|
|
}
|
|
]
|
|
case FunctionCreateSteps.Details:
|
|
return [
|
|
{
|
|
id: 'detailsPrevious',
|
|
text: 'Previous',
|
|
props: {
|
|
color: 'secondary',
|
|
iconLeft: ChevronLeftIcon,
|
|
textColor: 'primary'
|
|
},
|
|
onClick: () => step.value--
|
|
},
|
|
{
|
|
id: 'detailsCreate',
|
|
text: 'Create',
|
|
submit: true,
|
|
disabled: mutationLoading.value
|
|
}
|
|
]
|
|
case FunctionCreateSteps.Done:
|
|
return [
|
|
{
|
|
id: 'doneClose',
|
|
text: 'Close',
|
|
props: {
|
|
color: 'secondary',
|
|
fullWidth: true
|
|
},
|
|
onClick: () => (open.value = false)
|
|
},
|
|
{
|
|
id: 'doneGoToFunction',
|
|
text: 'Go to Function',
|
|
props: {
|
|
iconRight: ArrowRightIcon,
|
|
fullWidth: true,
|
|
to: createdFunction.value?.id
|
|
? automationFunctionRoute(createdFunction.value.id)
|
|
: undefined
|
|
}
|
|
}
|
|
]
|
|
default:
|
|
return []
|
|
}
|
|
})
|
|
|
|
const buttonsWrapperClasses = computed(() => {
|
|
switch (enumStep.value) {
|
|
case FunctionCreateSteps.Authorize:
|
|
case FunctionCreateSteps.Done:
|
|
return 'flex-col sm:flex-row'
|
|
case FunctionCreateSteps.Template:
|
|
return 'justify-end'
|
|
case FunctionCreateSteps.Details:
|
|
return 'justify-between'
|
|
default:
|
|
return ''
|
|
}
|
|
})
|
|
|
|
const reset = () => {
|
|
step.value = 0
|
|
selectedTemplate.value = undefined
|
|
}
|
|
|
|
const onDialogSubmit = (e: SubmitEvent) => onSubmit.value(e)
|
|
|
|
watch(
|
|
() => props.isAuthorized,
|
|
(newVal, oldVal) => {
|
|
if (newVal === oldVal) return
|
|
reset()
|
|
}
|
|
)
|
|
|
|
watch(open, (newVal, oldVal) => {
|
|
if (newVal && !oldVal) {
|
|
reset()
|
|
}
|
|
})
|
|
</script>
|