From 6ef34c6ab8012845f041f779cfbc1c395c81cf95 Mon Sep 17 00:00:00 2001 From: Dm1tr1y147 Date: Sat, 7 Nov 2020 06:07:27 +0500 Subject: [PATCH] Added styles for form creation page and all components in it. Some minor improvements in another pages --- src/components/FormLists/index.tsx | 2 +- src/components/FormLists/main.module.css | 11 ++ src/components/QuestionsForm/main.module.css | 3 - src/components/SubmissionsList/index.tsx | 2 +- .../SubmissionsList/main.module.css | 6 + src/views/CreateForm/hooks.ts | 9 + src/views/CreateForm/index.tsx | 175 +++++++++++------- src/views/CreateForm/main.module.css | 150 +++++++++++++++ src/views/CreateForm/types.ts | 3 + src/views/DoForm/index.tsx | 2 +- src/views/Home/index.tsx | 5 +- src/views/Home/main.module.css | 25 +++ src/views/Login/index.tsx | 5 +- src/views/Login/main.module.css | 4 + src/views/Register/index.tsx | 6 +- 15 files changed, 331 insertions(+), 77 deletions(-) create mode 100644 src/views/CreateForm/main.module.css diff --git a/src/components/FormLists/index.tsx b/src/components/FormLists/index.tsx index 205e86c..3dc8d1e 100644 --- a/src/components/FormLists/index.tsx +++ b/src/components/FormLists/index.tsx @@ -14,7 +14,7 @@ const Lists: React.FC = ({ variants, name, type, onChange }) => { (type === 'CHECK' && 'check') || (type === 'CHOOSE' && 'radio') || undefined return ( -
+
{variants.map((el, index) => (
) } diff --git a/src/views/CreateForm/main.module.css b/src/views/CreateForm/main.module.css new file mode 100644 index 0000000..adcb2c6 --- /dev/null +++ b/src/views/CreateForm/main.module.css @@ -0,0 +1,150 @@ +.container { + height: calc(100vh - 4rem); +} + +.container form { + height: 100%; + display: flex; + flex-direction: column; +} + +.pageHeader { + display: flex; + gap: 1rem; + padding: 2.3rem; +} + +.pageTitle { + margin-top: -0.3rem; +} + +.textInput { + height: 2.3rem; + border-radius: 100vh; + border: none; + display: inline; + outline: none; + font-size: 1.2rem; + padding: 0 0.7rem; + border-bottom: 0.15rem var(--containerColor) solid; + transition: border 0.1s; +} + +.textInput:focus { + border-bottom-width: 0rem; + border-top: 0.15rem var(--containerColor) solid; +} + +.mainFormContainer { + margin-top: 2.3rem; + padding: 2.3rem; + padding-top: 0; + flex-grow: 1; + position: relative; + background: #ffffff; +} + +.mainFormTop { + top: -2.3rem; + left: 0rem; + position: absolute; + height: 2.3rem; + width: 100%; + border-top-left-radius: 20px; + border-top-right-radius: 20px; + background: #ffffff; +} + +.mainForm { + border: none; +} + +.fieldsetTitle { + font-size: 1.4rem; + font-weight: bold; + padding-bottom: 2rem; +} + +.questionCreatorLI { + list-style: none; + display: inline; + padding-right: 0.5rem; +} + +.button { + height: 2.3rem; + border-radius: 100vh; + border: none; + outline: none; + font-size: 1.2rem; + padding: 0 0.7rem; + cursor: pointer; + background-color: var(--accentColor); + color: var(--onAccentFontColor); + box-shadow: 0 1px 6px 0 var(--accentShadowColor); +} + +.button:active { + box-shadow: none; +} + +.questionToCreateLI { + margin-bottom: 2.3rem; + list-style: none; + border: 0.1rem var(--containerColor) solid; + border-radius: 20px; + padding: 2.3rem; +} + +.questionHeader { + display: grid; + grid-template-columns: auto 1fr 2.3rem; + gap: 0.5rem; +} + +.questionTitle { + line-height: 2.3rem; +} + +.fullWidth { + width: 100%; +} + +.variantsHeader { + margin: 1rem 0; +} + +.variantText { + margin: 0.5rem; +} + +.addVariant { + width: 2.3rem; + margin: auto; + display: block; + line-height: 2.3rem; +} + +.submitContainer { + padding: 2.3rem; + background-color: #ffffff; +} + +.submitButton { + width: 100%; +} + +@media (orientation: portrait) { + .pageHeader { + flex-direction: column; + gap: 0.5rem; + } + + .pageTitle { + margin-top: 0; + } + + .questionHeader { + grid-template-columns: 1fr; + } +} diff --git a/src/views/CreateForm/types.ts b/src/views/CreateForm/types.ts index b954215..3e1f61a 100644 --- a/src/views/CreateForm/types.ts +++ b/src/views/CreateForm/types.ts @@ -28,6 +28,8 @@ export type HandleFormTitleChangeFT = (e: ChangeEvent) => void export type CreateQuestionFT = (type: T) => void +export type RemoveQuestionFT = (number: number) => void + export type HandleQuestionTitleChangeFT = ( questionNumber: number, e: ChangeEvent @@ -54,6 +56,7 @@ export type UseFormCreatorHookTurpleT = [ { handleFormTitleChange: HandleFormTitleChangeFT addQuestion: CreateQuestionFT + removeQuestion: RemoveQuestionFT handleQuestionTitleChange: HandleQuestionTitleChangeFT handleAnswerVariantChange: HandleAnswerVariantChangeFT addVariant: AddVariantFT diff --git a/src/views/DoForm/index.tsx b/src/views/DoForm/index.tsx index ac05326..ed06478 100644 --- a/src/views/DoForm/index.tsx +++ b/src/views/DoForm/index.tsx @@ -41,7 +41,7 @@ const DoForm: React.FC = () => {

-
+
{form.submissions ? ( <>

Submissions

diff --git a/src/views/Home/index.tsx b/src/views/Home/index.tsx index e3e6dd7..1e4af4f 100644 --- a/src/views/Home/index.tsx +++ b/src/views/Home/index.tsx @@ -1,7 +1,7 @@ import React from 'react' import { useQuery } from '@apollo/client' import { generateFromString } from 'generate-avatar' -import { Redirect, useHistory } from 'react-router-dom' +import { Redirect, useHistory, Link } from 'react-router-dom' import Card from '../../components/Card' import { USER } from '../../apollo' @@ -55,6 +55,9 @@ const Home: React.FC = () => { ))} + + Create new

+

+
diff --git a/src/views/Home/main.module.css b/src/views/Home/main.module.css index f72e9e3..4e21b56 100644 --- a/src/views/Home/main.module.css +++ b/src/views/Home/main.module.css @@ -30,6 +30,31 @@ overflow-y: auto; } +.createNew:hover { + border-color: var(--containerColor); + color: var(--containerColor); +} + +.createNew { + padding: 1rem; + border-radius: 0.5rem; + border: 0.1rem var(--accentColor) solid; + text-decoration: none; + color: var(--accentColor); + display: flex; + gap: 0.5rem; + justify-content: center; +} + +.createNew span { + font-weight: bold; + line-height: 1.17em; +} + +.createNew h3 { + line-height: 1.17em; +} + .rightPad { display: flex; flex-direction: column; diff --git a/src/views/Login/index.tsx b/src/views/Login/index.tsx index 1ae3ef1..ae96851 100644 --- a/src/views/Login/index.tsx +++ b/src/views/Login/index.tsx @@ -5,6 +5,7 @@ import { LOGIN } from '../../apollo' import { MutationLoginArgs, ServerAnswer } from '../../apollo/typeDefs.gen' import styles from './main.module.css' import meme from './meme.png' +import { Link } from 'react-router-dom' interface ILoginMutation { login: ServerAnswer @@ -47,7 +48,9 @@ const Login: React.FC = () => {
) : ( <> -

Login

+

+ Log In / Register +

{ alt='Questionform says: "Is mailbox a password?"' />
-

Register

+

+ Register / Log In +