Added form submissions showing for submitted forms and authors instead of forms itself

This commit is contained in:
Dmitriy Shishkov 2020-10-19 22:48:51 +05:00
parent b7910a5de2
commit b8450525a5
No known key found for this signature in database
GPG Key ID: D76D70029F55183E
4 changed files with 121 additions and 52 deletions

1
.gitignore vendored
View File

@ -13,6 +13,7 @@
# misc # misc
.DS_Store .DS_Store
.env
.env.local .env.local
.env.development.local .env.development.local
.env.test.local .env.test.local

View File

@ -32,6 +32,22 @@ const FORM = gql`
title title
} }
} }
submissions {
answers {
... on InputAnswer {
type
userInput
}
... on ChoiseAnswer {
type
userChoise
}
}
date
user {
name
}
}
title title
} }
} }
@ -46,6 +62,22 @@ const USER = gql`
forms { forms {
id id
title title
submissions {
answers {
... on InputAnswer {
type
userInput
}
... on ChoiseAnswer {
type
userChoise
}
}
date
user {
name
}
}
} }
} }
} }

View File

@ -42,6 +42,7 @@ type InputQuestion implements Question {
} }
type FormSubmission { type FormSubmission {
user: User
answers: [Answer!]! answers: [Answer!]!
date: String! date: String!
id: Int! id: Int!

View File

@ -107,7 +107,41 @@ const DoForm: React.FC = () => {
<h1>{form.title}</h1> <h1>{form.title}</h1>
<p>{form.dateCreated}</p> <p>{form.dateCreated}</p>
<h3>{form.author?.name || 'No author'}</h3> <h3>{form.author?.name || 'No author'}</h3>
{form.submissions ? (
<div>
<h1>Submission{form.submissions.length > 1 && 's'}:</h1>
<ul>
{form.submissions.map((submission, submissionIndex) => (
<li key={submissionIndex}>
<h2>
User:{' '}
{submission.user ? submission.user.name : 'No submitter'}
</h2>
<ul>
{submission.answers.map(
(answer: InputAnswer | ChoiseAnswer, answerIndex) => (
<li key={answerIndex}>
<h3>{form.questions[answerIndex].title}</h3>
{answer.__typename === 'ChoiseAnswer' && (
<h4>
{
(form.questions[answerIndex] as ChoisesQuestion)
.variants[answer.userChoise].text
}
</h4>
)}
{answer.__typename === 'InputAnswer' && (
<h4>{answer.userInput}</h4>
)}
</li>
)
)}
</ul>
</li>
))}
</ul>
</div>
) : (
<form onSubmit={handleSubmit}> <form onSubmit={handleSubmit}>
<ul> <ul>
{form.questions.map((el: InputQuestion | ChoisesQuestion) => { {form.questions.map((el: InputQuestion | ChoisesQuestion) => {
@ -160,6 +194,7 @@ const DoForm: React.FC = () => {
</ul> </ul>
{submitLoading ? <p>Uploading...</p> : <input type="submit" />} {submitLoading ? <p>Uploading...</p> : <input type="submit" />}
</form> </form>
)}
{submitError && <p>{submitError.message}</p>} {submitError && <p>{submitError.message}</p>}
{submitData && submitData.formSubmit && submitData.formSubmit.success && ( {submitData && submitData.formSubmit && submitData.formSubmit.success && (
<p>Successfully uploaded</p> <p>Successfully uploaded</p>