Fixed some styling errors, updated home page content and styles, added some changes into data fetching
This commit is contained in:
parent
3f580213fa
commit
1060ea4e41
@ -10,13 +10,30 @@
|
|||||||
* {
|
* {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
padding: 0;
|
padding: 0;
|
||||||
|
-ms-overflow-style: none;
|
||||||
|
scrollbar-width: none;
|
||||||
box-sizing: border-box;
|
box-sizing: border-box;
|
||||||
|
outline: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
*::-webkit-scrollbar {
|
||||||
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background-color: var(--backgroundColor);
|
background-color: var(--backgroundColor);
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
color: var(--containerColor);
|
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 {
|
input {
|
||||||
|
@ -57,26 +57,19 @@ const USER = gql`
|
|||||||
query User {
|
query User {
|
||||||
user {
|
user {
|
||||||
email
|
email
|
||||||
id
|
|
||||||
name
|
|
||||||
forms {
|
forms {
|
||||||
id
|
id
|
||||||
title
|
|
||||||
submissions {
|
submissions {
|
||||||
answers {
|
id
|
||||||
... on InputAnswer {
|
}
|
||||||
type
|
title
|
||||||
userInput
|
}
|
||||||
}
|
name
|
||||||
... on ChoiseAnswer {
|
formSubmissions {
|
||||||
type
|
id
|
||||||
userChoise
|
form {
|
||||||
}
|
title
|
||||||
}
|
id
|
||||||
date
|
|
||||||
user {
|
|
||||||
name
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -15,7 +15,7 @@ type Form {
|
|||||||
author: User
|
author: User
|
||||||
dateCreated: String!
|
dateCreated: String!
|
||||||
id: Int!
|
id: Int!
|
||||||
questions: [Question!]!
|
questions: [Question!]
|
||||||
submissions: [FormSubmission!]
|
submissions: [FormSubmission!]
|
||||||
title: String!
|
title: String!
|
||||||
}
|
}
|
||||||
@ -46,6 +46,7 @@ type FormSubmission {
|
|||||||
answers: [Answer!]!
|
answers: [Answer!]!
|
||||||
date: String!
|
date: String!
|
||||||
id: Int!
|
id: Int!
|
||||||
|
form: Form
|
||||||
}
|
}
|
||||||
|
|
||||||
interface Answer {
|
interface Answer {
|
||||||
@ -78,6 +79,7 @@ type User {
|
|||||||
forms: [Form!]
|
forms: [Form!]
|
||||||
id: Int!
|
id: Int!
|
||||||
name: String!
|
name: String!
|
||||||
|
formSubmissions: [FormSubmission!]
|
||||||
}
|
}
|
||||||
|
|
||||||
type serverAnswer {
|
type serverAnswer {
|
||||||
|
@ -14,7 +14,7 @@ interface props {
|
|||||||
const Card: React.FC<props> = ({ title, subtitle, id }) => {
|
const Card: React.FC<props> = ({ title, subtitle, id }) => {
|
||||||
return (
|
return (
|
||||||
<Link to={`/form/${id}`} className={styles.card}>
|
<Link to={`/form/${id}`} className={styles.card}>
|
||||||
<h4>{title}</h4>
|
<h3>{title}</h3>
|
||||||
{subtitle ?? <h5>{subtitle}</h5>}
|
{subtitle ?? <h5>{subtitle}</h5>}
|
||||||
</Link>
|
</Link>
|
||||||
)
|
)
|
||||||
|
@ -1,10 +1,11 @@
|
|||||||
.card {
|
.card {
|
||||||
display: block;
|
display: block;
|
||||||
background-color: var(--accentColor);
|
background-color: var(--accentColor);
|
||||||
width: 35vw;
|
padding: 1rem;
|
||||||
padding: 1.5vh;
|
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
border-radius: 0.75vh;
|
overflow: hidden;
|
||||||
|
text-overflow: ellipsis;
|
||||||
|
border-radius: 5px;
|
||||||
box-shadow: 0 1px 6px 0 var(--accentShadowColor);
|
box-shadow: 0 1px 6px 0 var(--accentShadowColor);
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: var(--onAccentFontColor);
|
color: var(--onAccentFontColor);
|
||||||
|
@ -44,7 +44,7 @@ const DoForm: React.FC = () => {
|
|||||||
|
|
||||||
const getInitialState = (data: IFormQuery) => {
|
const getInitialState = (data: IFormQuery) => {
|
||||||
if (data && data.form) {
|
if (data && data.form) {
|
||||||
return data.form.questions.flatMap<InputAnswer | ChoiseAnswer>(
|
return data.form.questions!.flatMap<InputAnswer | ChoiseAnswer>(
|
||||||
(el: InputQuestion | ChoisesQuestion) => {
|
(el: InputQuestion | ChoisesQuestion) => {
|
||||||
if (el.__typename === 'ChoisesQuestion')
|
if (el.__typename === 'ChoisesQuestion')
|
||||||
return [
|
return [
|
||||||
@ -129,12 +129,15 @@ const DoForm: React.FC = () => {
|
|||||||
{submission.answers.map(
|
{submission.answers.map(
|
||||||
(answer: InputAnswer | ChoiseAnswer, answerIndex) => (
|
(answer: InputAnswer | ChoiseAnswer, answerIndex) => (
|
||||||
<li key={answerIndex}>
|
<li key={answerIndex}>
|
||||||
<h3>{form.questions[answerIndex].title}</h3>
|
<h3>{form.questions![answerIndex].title}</h3>
|
||||||
{answer.__typename === 'ChoiseAnswer' && (
|
{answer.__typename === 'ChoiseAnswer' && (
|
||||||
<h4>
|
<h4>
|
||||||
{
|
{
|
||||||
(form.questions[answerIndex] as ChoisesQuestion)
|
(form.questions![
|
||||||
.variants[answer.userChoise].text
|
answerIndex
|
||||||
|
] as ChoisesQuestion).variants[
|
||||||
|
answer.userChoise
|
||||||
|
].text
|
||||||
}
|
}
|
||||||
</h4>
|
</h4>
|
||||||
)}
|
)}
|
||||||
@ -155,7 +158,7 @@ const DoForm: React.FC = () => {
|
|||||||
) : (
|
) : (
|
||||||
<form onSubmit={handleSubmit}>
|
<form onSubmit={handleSubmit}>
|
||||||
<ul>
|
<ul>
|
||||||
{form.questions.map((el: InputQuestion | ChoisesQuestion) => {
|
{form.questions!.map((el: InputQuestion | ChoisesQuestion) => {
|
||||||
if (el.__typename === 'InputQuestion')
|
if (el.__typename === 'InputQuestion')
|
||||||
return (
|
return (
|
||||||
<li key={el.number}>
|
<li key={el.number}>
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
import React from 'react'
|
import React from 'react'
|
||||||
import { useQuery } from '@apollo/client'
|
import { useQuery } from '@apollo/client'
|
||||||
|
import { generateFromString } from 'generate-avatar'
|
||||||
|
|
||||||
import Card from '../Card'
|
import Card from '../Card'
|
||||||
import { USER } from '../../apollo'
|
import { USER } from '../../apollo'
|
||||||
@ -12,7 +13,7 @@ interface IUserQuery {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const Home: React.FC = () => {
|
const Home: React.FC = () => {
|
||||||
const { data, error, loading } = useQuery<IUserQuery, QueryUserArgs>(USER)
|
let { data, error, loading } = useQuery<IUserQuery, QueryUserArgs>(USER)
|
||||||
if (loading) return <p>Loading...</p>
|
if (loading) return <p>Loading...</p>
|
||||||
|
|
||||||
if (error?.message === 'Authorization required')
|
if (error?.message === 'Authorization required')
|
||||||
@ -22,17 +23,50 @@ const Home: React.FC = () => {
|
|||||||
|
|
||||||
const { user } = data!
|
const { user } = data!
|
||||||
|
|
||||||
const { forms } = user
|
const { forms, formSubmissions } = user
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={styles.container}>
|
<div className={styles.container}>
|
||||||
<ul className={styles.leftPad}>
|
<div className={styles.userPad}>
|
||||||
{forms!.map((form, formIndex) => (
|
<div className={styles.userCard}>
|
||||||
<li key={formIndex}>
|
<img
|
||||||
<Card title={form.title} id={form.id} />
|
className={styles.userPic}
|
||||||
</li>
|
src={`data:image/svg+xml;utf8,${generateFromString(user.email)}`}
|
||||||
))}
|
alt="Userpic"
|
||||||
</ul>
|
/>
|
||||||
|
<h1>{user.name}</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={styles.leftPad}>
|
||||||
|
<h1>My forms</h1>
|
||||||
|
<ul className={styles.cardList}>
|
||||||
|
{forms!.map((form) => (
|
||||||
|
<li key={form.id}>
|
||||||
|
<Card title={form.title} id={form.id} />
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className={styles.rightPad}>
|
||||||
|
<h1>My submissions</h1>
|
||||||
|
<ul className={styles.cardList}>
|
||||||
|
{formSubmissions
|
||||||
|
?.filter((submission) => Boolean(submission.form))
|
||||||
|
.map((submission) => (
|
||||||
|
<li key={submission.id}>
|
||||||
|
<Card
|
||||||
|
title={submission.form!.title}
|
||||||
|
id={submission.form!.id}
|
||||||
|
subtitle={
|
||||||
|
submission.user ? 'by ' + submission.user.name : undefined
|
||||||
|
}
|
||||||
|
/>
|
||||||
|
</li>
|
||||||
|
))}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
@ -1,12 +1,89 @@
|
|||||||
.container {
|
.container {
|
||||||
display: grid;
|
display: grid;
|
||||||
height: calc(100vh - 4rem);
|
min-height: calc(100vh - 4rem);
|
||||||
grid-template-columns: 4fr 3fr;
|
grid-template-columns: 5fr 3fr;
|
||||||
|
grid-template-rows: auto 1fr;
|
||||||
|
grid-template-areas:
|
||||||
|
'left user'
|
||||||
|
'left right';
|
||||||
|
padding: 2.3rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.leftPad {
|
.leftPad {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
grid-area: left;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: center;
|
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%;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -49,6 +49,7 @@ const Login: React.FC = () => {
|
|||||||
<>
|
<>
|
||||||
<h1 className={styles.header}>Login</h1>
|
<h1 className={styles.header}>Login</h1>
|
||||||
<input
|
<input
|
||||||
|
required
|
||||||
className={styles.input}
|
className={styles.input}
|
||||||
name="email"
|
name="email"
|
||||||
id="email"
|
id="email"
|
||||||
|
@ -19,6 +19,7 @@
|
|||||||
.img {
|
.img {
|
||||||
height: 70vh;
|
height: 70vh;
|
||||||
object-fit: contain;
|
object-fit: contain;
|
||||||
|
border-radius: 20px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form {
|
.form {
|
||||||
@ -57,6 +58,12 @@
|
|||||||
|
|
||||||
.button {
|
.button {
|
||||||
background-color: var(--accentColor);
|
background-color: var(--accentColor);
|
||||||
|
color: var(--onAccentFontColor);
|
||||||
|
box-shadow: 0 1px 6px 0 var(--accentShadowColor);
|
||||||
|
}
|
||||||
|
|
||||||
|
.button:active {
|
||||||
|
box-shadow: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.errorMsg {
|
.errorMsg {
|
||||||
|
@ -42,12 +42,14 @@ const Register: React.FC = () => {
|
|||||||
<form className={styles.form} onSubmit={handleSubmit}>
|
<form className={styles.form} onSubmit={handleSubmit}>
|
||||||
<h1 className={styles.header}>Register</h1>
|
<h1 className={styles.header}>Register</h1>
|
||||||
<input
|
<input
|
||||||
|
required
|
||||||
className={styles.input}
|
className={styles.input}
|
||||||
type="email"
|
type="email"
|
||||||
name="email"
|
name="email"
|
||||||
placeholder="email"
|
placeholder="email"
|
||||||
/>
|
/>
|
||||||
<input
|
<input
|
||||||
|
required
|
||||||
className={styles.input}
|
className={styles.input}
|
||||||
type="text"
|
type="text"
|
||||||
name="name"
|
name="name"
|
||||||
|
@ -1,17 +1,3 @@
|
|||||||
body {
|
|
||||||
margin: 0;
|
|
||||||
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;
|
|
||||||
}
|
|
||||||
|
|
||||||
.App {
|
.App {
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user