diff --git a/.gitignore b/.gitignore index e00931e..fc074b5 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,7 @@ # misc .DS_Store +.env .env.local .env.development.local .env.test.local diff --git a/src/apollo/defs.ts b/src/apollo/defs.ts index e6f0504..a9b6bfe 100644 --- a/src/apollo/defs.ts +++ b/src/apollo/defs.ts @@ -32,6 +32,22 @@ const FORM = gql` title } } + submissions { + answers { + ... on InputAnswer { + type + userInput + } + ... on ChoiseAnswer { + type + userChoise + } + } + date + user { + name + } + } title } } @@ -46,6 +62,22 @@ const USER = gql` forms { id title + submissions { + answers { + ... on InputAnswer { + type + userInput + } + ... on ChoiseAnswer { + type + userChoise + } + } + date + user { + name + } + } } } } diff --git a/src/apollo/typeDefs.gql b/src/apollo/typeDefs.gql index dbcb68d..e3607fc 100644 --- a/src/apollo/typeDefs.gql +++ b/src/apollo/typeDefs.gql @@ -42,6 +42,7 @@ type InputQuestion implements Question { } type FormSubmission { + user: User answers: [Answer!]! date: String! id: Int! diff --git a/src/components/DoForm/index.tsx b/src/components/DoForm/index.tsx index fe15db2..d7d3067 100644 --- a/src/components/DoForm/index.tsx +++ b/src/components/DoForm/index.tsx @@ -107,59 +107,94 @@ const DoForm: React.FC = () => {

{form.title}

{form.dateCreated}

{form.author?.name || 'No author'}

- -
-
+ {submitLoading ?

Uploading...

: } + + )} {submitError &&

{submitError.message}

} {submitData && submitData.formSubmit && submitData.formSubmit.success && (

Successfully uploaded