import React, {useState} from "react"; import {useHistory} from "react-router"; import {gql, useMutation} from "@apollo/client"; import {AlertV2Props, Navigator} from "../../../components"; import {Form} from '../Form' import {Mutation} from "../../../__generated__/graphql-schema"; import {QuestionRoutePaths} from "../../../routes"; const CREATE_QUESTION_MUTATION = gql` mutation($input: CreateQuestionInput!) { createQuestion(input: $input) { question { id } } } ` export const New = () => { const history = useHistory() const [alert, setAlert] = useState(); const [createQuestion] = useMutation(CREATE_QUESTION_MUTATION) const onSubmit = (inputs: any) => { createQuestion({ variables: { input: { question: inputs, }, }, }).then(() => { history.push(QuestionRoutePaths.index) }).catch((error: string) => { setAlert({ severity: "error", text: `Erro ao criar questão. ${error}. Por favor, tente novamente.`, }); setTimeout( () => setAlert({severity: "error", text: ""}), 8000 ); }) } const onDraftSubmit = (inputs: any) => { createQuestion({ variables: { input: { question: inputs, }, } }).then(({data}) => { setAlert({ severity: "success", text: "Rascunho criado com sucesso", }); setTimeout(() => { const id = data?.createQuestion?.question?.id history.push(QuestionRoutePaths.edit.replace(':id', id ?? '')) }, 3000); }).catch((error: string) => { setAlert({ severity: "error", text: `Erro ao criar rascunho. ${error}`, }); setTimeout( () => setAlert(undefined), 8000 ); }) } return ( <>
) };