123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524 |
- <!-- Copyright (C) 2012-2023 Zammad Foundation, https://zammad-foundation.org/ -->
- <script setup lang="ts">
- import {
- computed,
- nextTick,
- onMounted,
- onUnmounted,
- reactive,
- ref,
- watch,
- } from 'vue'
- import { onBeforeRouteLeave, useRouter } from 'vue-router'
- import Form from '@shared/components/Form/Form.vue'
- import {
- EnumFormUpdaterId,
- EnumObjectManagerObjects,
- type TicketCreateInput,
- } from '@shared/graphql/types'
- import { useMultiStepForm, useForm } from '@shared/components/Form'
- import { useApplicationStore } from '@shared/stores/application'
- import { useTicketCreate } from '@shared/entities/ticket/composables/useTicketCreate'
- import { useTicketCreateArticleType } from '@shared/entities/ticket/composables/useTicketCreateArticleType'
- import { ButtonVariant } from '@shared/components/Form/fields/FieldButton/types'
- import { useTicketFormOganizationHandler } from '@shared/entities/ticket/composables/useTicketFormOrganizationHandler'
- import { FormData, type FormSchemaNode } from '@shared/components/Form/types'
- import { i18n } from '@shared/i18n'
- import { MutationHandler } from '@shared/server/apollo/handler'
- import { useObjectAttributes } from '@shared/entities/object-attributes/composables/useObjectAttributes'
- import { useObjectAttributeFormData } from '@shared/entities/object-attributes/composables/useObjectAttributeFormData'
- import {
- NotificationTypes,
- useNotifications,
- } from '@shared/components/CommonNotifications'
- import { useSessionStore } from '@shared/stores/session'
- import { ErrorStatusCodes } from '@shared/types/error'
- import type UserError from '@shared/errors/UserError'
- import { defineFormSchema } from '@mobile/form/defineFormSchema'
- import CommonStepper from '@mobile/components/CommonStepper/CommonStepper.vue'
- import CommonBackButton from '@mobile/components/CommonBackButton/CommonBackButton.vue'
- // No usage of "type" because of: https://github.com/typescript-eslint/typescript-eslint/issues/5468
- import { errorOptions } from '@mobile/router/error'
- import useConfirmation from '@mobile/components/CommonConfirmation/composable'
- import { useTicketSignature } from '@shared/composables/useTicketSignature'
- import { TicketFormData } from '@shared/entities/ticket/types'
- import { convertFilesToAttachmentInput } from '@shared/utils/files'
- import { useTicketCreateMutation } from '../graphql/mutations/create.api'
- const router = useRouter()
- // Add meta header with selected ticket create article type
- const { canSubmit, form, node, isDirty, formSubmit } = useForm()
- const {
- multiStepPlugin,
- setMultiStep,
- allSteps,
- activeStep,
- visitedSteps,
- stepNames,
- lastStepName,
- } = useMultiStepForm(node)
- const application = useApplicationStore()
- const onSubmit = () => {
- setMultiStep()
- }
- const { ticketCreateArticleType, ticketArticleSenderTypeField } =
- useTicketCreateArticleType({ onSubmit })
- const session = useSessionStore()
- const isCustomer = computed(() => {
- return session.hasPermission('ticket.customer')
- })
- const getFormSchemaGroupSection = (
- stepName: string,
- sectionTitle: string,
- childrens: FormSchemaNode[],
- itemsCenter = false,
- ) => {
- return {
- isLayout: true,
- element: 'section',
- attrs: {
- style: {
- if: `$activeStep !== "${stepName}"`,
- then: 'display: none;',
- },
- class: {
- 'flex flex-col h-full min-h-[calc(100vh_-_15rem)]': true,
- 'items-center': itemsCenter,
- },
- },
- children: [
- {
- type: 'group',
- name: stepName,
- isGroupOrList: true,
- plugins: [multiStepPlugin],
- children: [
- {
- isLayout: true,
- element: 'h4',
- attrs: {
- class: 'my-10 text-base text-center',
- },
- children: i18n.t(sectionTitle),
- },
- ...childrens,
- ],
- },
- ],
- }
- }
- const ticketTitleSection = getFormSchemaGroupSection(
- 'ticketTitle',
- __('Set a title for your ticket'),
- [
- {
- name: 'title',
- required: true,
- object: EnumObjectManagerObjects.Ticket,
- screen: 'create_top',
- outerClass:
- '$reset formkit-outer w-full grow justify-center flex items-center flex-col',
- wrapperClass: '$reset flex w-full',
- labelClass: '$reset sr-only',
- blockClass: '$reset flex w-full',
- innerClass: '$reset flex justify-center items-center px-8 w-full',
- messagesClass: 'pt-2',
- inputClass:
- '$reset formkit-input block bg-transparent grow border-b-[0.5px] border-white outline-none text-center text-xl placeholder:text-white placeholder:text-opacity-50',
- props: {
- placeholder: __('Title'),
- onSubmit,
- },
- },
- ],
- true,
- )
- const ticketArticleTypeSection = getFormSchemaGroupSection(
- 'ticketArticleType',
- __('Select the type of ticket your are creating'),
- [
- {
- ...ticketArticleSenderTypeField,
- outerClass: 'w-full flex grow items-center',
- fieldsetClass: 'grow px-4',
- },
- {
- if: '$existingAdditionalCreateNotes() && $getAdditionalCreateNote($values.articleSenderType) !== undefined',
- isLayout: true,
- element: 'p',
- attrs: {
- // TODO: check styling for this hint
- class: 'my-10 text-base text-center text-yellow',
- },
- children: '$getAdditionalCreateNote($values.articleSenderType)',
- },
- ],
- true,
- )
- const ticketMetaInformationSection = getFormSchemaGroupSection(
- 'ticketMetaInformation',
- __('Additional information'),
- [
- {
- isLayout: true,
- component: 'FormGroup',
- children: [
- {
- screen: 'create_top',
- object: EnumObjectManagerObjects.Ticket,
- },
- // Because of the current field screen settings in the backend
- // seed we need to add this manually.
- {
- if: '$values.articleSenderType === "email-out"',
- name: 'cc',
- label: __('CC'),
- type: 'recipient',
- props: {
- multiple: true,
- },
- },
- ],
- },
- {
- isLayout: true,
- component: 'FormGroup',
- children: [
- {
- screen: 'create_middle',
- object: EnumObjectManagerObjects.Ticket,
- },
- ],
- },
- {
- isLayout: true,
- component: 'FormGroup',
- children: [
- {
- screen: 'create_bottom',
- object: EnumObjectManagerObjects.Ticket,
- },
- ],
- },
- ],
- )
- const ticketArticleMessageSection = getFormSchemaGroupSection(
- 'ticketArticleMessage',
- __('Add a message'),
- [
- {
- isLayout: true,
- component: 'FormGroup',
- children: [
- {
- if: '$smimeIntegration === true && $values.articleSenderType === "email-out"',
- name: 'security',
- label: __('Security'),
- type: 'security',
- },
- {
- name: 'body',
- screen: 'create_top',
- object: EnumObjectManagerObjects.TicketArticle,
- props: {
- meta: {
- mentionUser: {
- groupNodeId: 'group_id',
- },
- },
- },
- triggerFormUpdater: false,
- },
- ],
- },
- {
- isLayout: true,
- component: 'FormGroup',
- children: [
- {
- type: 'file',
- name: 'attachments',
- props: {
- multiple: true,
- },
- },
- ],
- },
- ],
- )
- const customerSchema = [
- ticketTitleSection,
- ticketMetaInformationSection,
- ticketArticleMessageSection,
- ]
- const agentSchema = [
- ticketTitleSection,
- ticketArticleTypeSection,
- ticketMetaInformationSection,
- ticketArticleMessageSection,
- ]
- const formSchema = defineFormSchema(
- isCustomer.value ? customerSchema : agentSchema,
- )
- const ticketCreateMutation = new MutationHandler(useTicketCreateMutation({}), {
- errorNotificationMessage: __('Ticket could not be created.'),
- })
- const redirectAfterCreate = (internalId?: number) => {
- if (internalId) {
- router.replace(`/tickets/${internalId}`)
- } else {
- router.replace({ name: 'Home' })
- }
- }
- const smimeIntegration = computed(
- () => (application.config.smime_integration as boolean) || {},
- )
- const createTicket = async (formData: FormData<TicketFormData>) => {
- const { notify } = useNotifications()
- const { attributesLookup: ticketObjectAttributesLookup } =
- useObjectAttributes(EnumObjectManagerObjects.Ticket)
- const { internalObjectAttributeValues, additionalObjectAttributeValues } =
- useObjectAttributeFormData(ticketObjectAttributesLookup.value, formData)
- const input = {
- ...internalObjectAttributeValues,
- article: {
- cc: formData.cc,
- body: formData.body,
- sender: isCustomer.value
- ? 'Customer'
- : ticketCreateArticleType[formData.articleSenderType].sender,
- type: isCustomer.value
- ? 'web'
- : ticketCreateArticleType[formData.articleSenderType].type,
- contentType: 'text/html',
- security: formData.security,
- },
- objectAttributeValues: additionalObjectAttributeValues,
- } as TicketCreateInput
- if (formData.attachments && input.article) {
- input.article.attachments = convertFilesToAttachmentInput(
- formData.formId,
- formData.attachments,
- )
- }
- return ticketCreateMutation
- .send({ input })
- .then((result) => {
- if (result?.ticketCreate?.ticket) {
- notify({
- type: NotificationTypes.Success,
- message: __('Ticket has been created successfully.'),
- })
- // TODO: Add correct handling if permission field is implemented.
- // if (result.ticketCreate?.ticket?.internalId && result.ticketCreate?.ticket?.policy?.show) {
- // we need to wait for form to reset
- return () => {
- redirectAfterCreate(result.ticketCreate?.ticket?.internalId)
- }
- }
- return null
- })
- .catch((errors: UserError) => {
- notify({
- message: errors.generalErrors[0],
- type: NotificationTypes.Error,
- })
- })
- }
- const additionalCreateNotes = computed(
- () =>
- (application.config.ui_ticket_create_notes as Record<string, string>) || {},
- )
- const schemaData = reactive({
- activeStep,
- visitedSteps,
- allSteps,
- smimeIntegration,
- existingAdditionalCreateNotes: () => {
- return Object.keys(additionalCreateNotes).length > 0
- },
- getAdditionalCreateNote: (value: string) => {
- return i18n.t(additionalCreateNotes.value[value])
- },
- })
- const submitButtonDisabled = computed(() => {
- return (
- !canSubmit.value ||
- (activeStep.value !== lastStepName.value &&
- visitedSteps.value.length < stepNames.value.length)
- )
- })
- const moveStep = () => {
- if (activeStep.value === lastStepName.value) {
- formSubmit()
- return
- }
- setMultiStep()
- }
- const isScrolledToBottom = ref(true)
- const setIsScrolledToBottom = () => {
- isScrolledToBottom.value =
- window.innerHeight + document.documentElement.scrollTop >=
- document.body.offsetHeight
- }
- watch(
- () => activeStep.value,
- () => {
- nextTick(() => {
- setIsScrolledToBottom()
- })
- },
- )
- onMounted(() => {
- window.addEventListener('scroll', setIsScrolledToBottom)
- window.addEventListener('resize', setIsScrolledToBottom)
- })
- onUnmounted(() => {
- window.removeEventListener('scroll', setIsScrolledToBottom)
- window.removeEventListener('resize', setIsScrolledToBottom)
- })
- const { waitForConfirmation } = useConfirmation()
- onBeforeRouteLeave(async () => {
- if (!isDirty.value) return true
- const confirmed = await waitForConfirmation(
- __('Are you sure? You have unsaved changes that will get lost.'),
- )
- return confirmed
- })
- const { signatureHandling } = useTicketSignature()
- </script>
- <script lang="ts">
- export default {
- beforeRouteEnter(to, from, next) {
- const { ticketCreateEnabled } = useTicketCreate()
- if (!ticketCreateEnabled.value) {
- errorOptions.value = {
- title: __('Forbidden'),
- message: __('Creating new tickets via web is disabled.'),
- statusCode: ErrorStatusCodes.Forbidden,
- route: to.fullPath,
- }
- next({
- name: 'Error',
- query: {
- redirect: '1',
- },
- replace: true,
- })
- return
- }
- next()
- },
- }
- </script>
- <template>
- <header class="border-b-[0.5px] border-white/10 px-4">
- <div class="grid h-16 grid-cols-3">
- <div
- class="flex cursor-pointer items-center justify-self-start text-base"
- >
- <CommonBackButton fallback="/" />
- </div>
- <h1
- class="flex flex-1 items-center justify-center text-center text-lg font-bold"
- >
- {{ $t('Create Ticket') }}
- </h1>
- <div class="flex cursor-pointer items-center justify-self-end text-base">
- <FormKit
- input-class="flex justify-center items-center w-9 h-9 rounded-full !text-black text-center formkit-variant-primary:bg-yellow"
- type="button"
- :disabled="submitButtonDisabled"
- :title="$t('Create ticket')"
- @click="formSubmit"
- ><CommonIcon name="mobile-arrow-up" size="base" decorative
- /></FormKit>
- </div>
- </div>
- </header>
- <div class="flex h-full flex-col px-4 pb-36">
- <Form
- id="ticket-create"
- ref="form"
- class="text-left"
- :schema="formSchema"
- :handlers="[useTicketFormOganizationHandler(), signatureHandling('body')]"
- :flatten-form-groups="Object.keys(allSteps)"
- :schema-data="schemaData"
- :form-updater-id="EnumFormUpdaterId.FormUpdaterUpdaterTicketCreate"
- :autofocus="true"
- use-object-attributes
- @submit="createTicket($event as FormData<TicketFormData>)"
- />
- </div>
- <footer
- :class="{
- 'bg-gray-light backdrop-blur-lg': !isScrolledToBottom,
- }"
- class="bottom-navigation fixed bottom-0 z-10 h-32 w-full px-4 transition"
- >
- <FormKit
- :variant="ButtonVariant.Primary"
- type="button"
- outer-class="mt-4 mb-2"
- :disabled="lastStepName === activeStep && submitButtonDisabled"
- wrapper-class="flex grow justify-center items-center"
- input-class="py-2 px-4 w-full h-14 text-lg rounded-xl select-none"
- @click="moveStep()"
- >
- {{ lastStepName === activeStep ? $t('Create ticket') : $t('Continue') }}
- </FormKit>
- <CommonStepper
- v-model="activeStep"
- :steps="allSteps"
- class="mt-4 mb-8 px-8"
- />
- </footer>
- </template>
|