diff --git a/public/index.css b/public/index.css index 219f97e..0938444 100644 --- a/public/index.css +++ b/public/index.css @@ -10,13 +10,30 @@ * { margin: 0; padding: 0; + -ms-overflow-style: none; + scrollbar-width: none; box-sizing: border-box; + outline: none; +} + +*::-webkit-scrollbar { + display: none; } body { background-color: var(--backgroundColor); min-height: 100vh; color: var(--containerColor); + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', + 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', + sans-serif; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +code { + font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', + monospace; } input { diff --git a/src/apollo/defs.ts b/src/apollo/defs.ts index 5ebfee5..b6524c0 100644 --- a/src/apollo/defs.ts +++ b/src/apollo/defs.ts @@ -57,26 +57,19 @@ const USER = gql` query User { user { email - id - name forms { id - title submissions { - answers { - ... on InputAnswer { - type - userInput - } - ... on ChoiseAnswer { - type - userChoise - } - } - date - user { - name - } + id + } + title + } + name + formSubmissions { + id + form { + title + id } } } diff --git a/src/apollo/typeDefs.gql b/src/apollo/typeDefs.gql index e3607fc..9d92e9c 100644 --- a/src/apollo/typeDefs.gql +++ b/src/apollo/typeDefs.gql @@ -15,7 +15,7 @@ type Form { author: User dateCreated: String! id: Int! - questions: [Question!]! + questions: [Question!] submissions: [FormSubmission!] title: String! } @@ -46,6 +46,7 @@ type FormSubmission { answers: [Answer!]! date: String! id: Int! + form: Form } interface Answer { @@ -78,6 +79,7 @@ type User { forms: [Form!] id: Int! name: String! + formSubmissions: [FormSubmission!] } type serverAnswer { diff --git a/src/components/Card/index.tsx b/src/components/Card/index.tsx index c07da7c..28c76cf 100644 --- a/src/components/Card/index.tsx +++ b/src/components/Card/index.tsx @@ -14,7 +14,7 @@ interface props { const Card: React.FC = ({ title, subtitle, id }) => { return ( -

{title}

+

{title}

{subtitle ??
{subtitle}
} ) diff --git a/src/components/Card/main.module.css b/src/components/Card/main.module.css index 84d51fb..679c9ef 100644 --- a/src/components/Card/main.module.css +++ b/src/components/Card/main.module.css @@ -1,10 +1,11 @@ .card { display: block; background-color: var(--accentColor); - width: 35vw; - padding: 1.5vh; + padding: 1rem; white-space: nowrap; - border-radius: 0.75vh; + overflow: hidden; + text-overflow: ellipsis; + border-radius: 5px; box-shadow: 0 1px 6px 0 var(--accentShadowColor); text-decoration: none; color: var(--onAccentFontColor); diff --git a/src/components/DoForm/index.tsx b/src/components/DoForm/index.tsx index 6387bd4..cfad12f 100644 --- a/src/components/DoForm/index.tsx +++ b/src/components/DoForm/index.tsx @@ -44,7 +44,7 @@ const DoForm: React.FC = () => { const getInitialState = (data: IFormQuery) => { if (data && data.form) { - return data.form.questions.flatMap( + return data.form.questions!.flatMap( (el: InputQuestion | ChoisesQuestion) => { if (el.__typename === 'ChoisesQuestion') return [ @@ -129,12 +129,15 @@ const DoForm: React.FC = () => { {submission.answers.map( (answer: InputAnswer | ChoiseAnswer, answerIndex) => (
  • -

    {form.questions[answerIndex].title}

    +

    {form.questions![answerIndex].title}

    {answer.__typename === 'ChoiseAnswer' && (

    { - (form.questions[answerIndex] as ChoisesQuestion) - .variants[answer.userChoise].text + (form.questions![ + answerIndex + ] as ChoisesQuestion).variants[ + answer.userChoise + ].text }

    )} @@ -155,7 +158,7 @@ const DoForm: React.FC = () => { ) : (
      - {form.questions.map((el: InputQuestion | ChoisesQuestion) => { + {form.questions!.map((el: InputQuestion | ChoisesQuestion) => { if (el.__typename === 'InputQuestion') return (
    • diff --git a/src/components/Home/index.tsx b/src/components/Home/index.tsx index 3084230..eb3aae2 100644 --- a/src/components/Home/index.tsx +++ b/src/components/Home/index.tsx @@ -1,5 +1,6 @@ import React from 'react' import { useQuery } from '@apollo/client' +import { generateFromString } from 'generate-avatar' import Card from '../Card' import { USER } from '../../apollo' @@ -12,7 +13,7 @@ interface IUserQuery { } const Home: React.FC = () => { - const { data, error, loading } = useQuery(USER) + let { data, error, loading } = useQuery(USER) if (loading) return

      Loading...

      if (error?.message === 'Authorization required') @@ -22,17 +23,50 @@ const Home: React.FC = () => { const { user } = data! - const { forms } = user + const { forms, formSubmissions } = user return (
      -
        - {forms!.map((form, formIndex) => ( -
      • - -
      • - ))} -
      +
      +
      + Userpic +

      {user.name}

      +
      +
      + +
      +

      My forms

      +
        + {forms!.map((form) => ( +
      • + +
      • + ))} +
      +
      + +
      +

      My submissions

      +
        + {formSubmissions + ?.filter((submission) => Boolean(submission.form)) + .map((submission) => ( +
      • + +
      • + ))} +
      +
      ) } diff --git a/src/components/Home/main.module.css b/src/components/Home/main.module.css index cff705d..518758c 100644 --- a/src/components/Home/main.module.css +++ b/src/components/Home/main.module.css @@ -1,12 +1,89 @@ .container { display: grid; - height: calc(100vh - 4rem); - grid-template-columns: 4fr 3fr; + min-height: calc(100vh - 4rem); + grid-template-columns: 5fr 3fr; + grid-template-rows: auto 1fr; + grid-template-areas: + 'left user' + 'left right'; + padding: 2.3rem; } .leftPad { display: flex; + grid-area: left; flex-direction: column; align-items: center; - list-style: none; + gap: 2.3rem; + padding: 0 2.3rem; +} + +.leftPad > * { + width: 100%; +} + +.cardList { + list-style: none; + display: flex; + flex-direction: column; + gap: 0.7rem; + overflow-y: auto; +} + +.rightPad { + display: flex; + flex-direction: column; + align-items: center; + gap: 2.3rem; + padding-top: 2.3rem; + grid-area: right; +} + +.rightPad > * { + width: 30vw; +} + +.userPad { + grid-area: user; + padding: 0 2.3rem; +} + +.userCard { + display: flex; + flex-direction: column; + align-items: center; + gap: 1rem; + background-color: #ffffff; + padding: 2.3rem; + padding-bottom: 1.6rem; + border-radius: 20px; +} + +.userPic { + border-radius: 20px; + width: 100%; +} + +@media (orientation: portrait) { + .container { + grid-template-columns: auto; + grid-template-areas: 'user' 'left' 'right'; + gap: 2.3rem; + } + + .userPad { + padding: 0; + } + + .leftPad { + padding: 0; + } + + .rightPad { + padding-top: 0; + } + + .rightPad > * { + width: 100%; + } } diff --git a/src/components/Login/index.tsx b/src/components/Login/index.tsx index 090ca1d..1ae3ef1 100644 --- a/src/components/Login/index.tsx +++ b/src/components/Login/index.tsx @@ -49,6 +49,7 @@ const Login: React.FC = () => { <>

      Login

      {

      Register