Skip to content

Commit

Permalink
#360-enhancement-create-Create-Account-Page
Browse files Browse the repository at this point in the history
  • Loading branch information
JuliaAvramenko committed May 23, 2024
1 parent bc2ce6c commit bc22043
Show file tree
Hide file tree
Showing 10 changed files with 549 additions and 2 deletions.
5 changes: 5 additions & 0 deletions src/app/router/AppRouter/ui/AppRouter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import CartPage from '@/pages/CartPage/CartPage'
import { CategoryPage } from '@/pages/CategoryPage/CategoryPage'
import ComparePage from '@/pages/ComparePage/ComparePage'
import ContactsPage from '@/pages/ContactsPage/ContactsPage'
import CreateAccountPage from '@/pages/CreateAccountPage/CreateAccountPage'
import DeliveryPage from '@/pages/DeliveryPage/DeliveryPage'
import ErrorPage from '@/pages/ErrorPage/ErrorPage'
import { FavoritesPage } from '@/pages/FavoritesPage/FavoritesPage'
Expand Down Expand Up @@ -118,6 +119,10 @@ export const AppRouter = createBrowserRouter([
{
path: Routes.CONTACTS,
element: <ContactsPage />
},
{
path: Routes.REGISTRATION,
element: <CreateAccountPage />
}
/* {
path: Routes.CERTIFICATE,
Expand Down
40 changes: 40 additions & 0 deletions src/pages/CreateAccountPage/CreateAccountPage.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
@use '@/shared/styles/utils/mixins' as media;

.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 65px 0;
}

.wrapper {
display: flex;
align-items: center;
justify-content:space-between;
width: 45%;
margin-bottom: 20px;
@include media.respond-to('large') {
width: 80%;
}
@include media.respond-to('middle') {
width: 94%;
}
}

.auth {
display: flex;
align-items: center;
justify-content: center;
column-gap: 10px;
}

.button {
padding: 4px 14px;
}

.paragraph {
@include media.respond-to('middle') {
display: none;
}
}
41 changes: 41 additions & 0 deletions src/pages/CreateAccountPage/CreateAccountPage.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
import { useNavigate } from 'react-router'

import { Routes } from '@/shared/config/routerConfig/routes'
import { Button, ButtonDesign, ButtonSize, ButtonTheme } from '@/shared/ui/Button/Button'
import Heading from '@/shared/ui/Heading/Heading'
import Paragraph from '@/shared/ui/Paragraph/Paragraph'
import CreateAccountForm from '@/widgets/CreateAccount/ui/CreateAccountForm'

import styles from './CreateAccountPage.module.scss'

/**
* Страница регистрации
*/

const CreateAccountPage = () => {
const navigate = useNavigate()
const handleRedirect = () => {
navigate(`${Routes.LOGIN}`)
}
return (
<div className={styles.container}>
<div className={styles.wrapper}>
<Heading>Регистрация</Heading>
<div className={styles.auth}>
<Paragraph className={styles.paragraph}>У вас уже есть аккаунт?</Paragraph>
<Button
className={styles.button}
theme={ButtonTheme.PRIMARY}
design={ButtonDesign.SQUARE}
size={ButtonSize.S}
type="submit"
onClick={handleRedirect}>
Авторизация
</Button>
</div>
</div>
<CreateAccountForm></CreateAccountForm>
</div>
)
}
export default CreateAccountPage
3 changes: 2 additions & 1 deletion src/shared/config/routerConfig/routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@ export enum Routes {
TERMS = '/terms',
VOUCHERS = '/vouchers',
PRODUCT = '/product',
HELP = '/help'
HELP = '/help',
REGISTRATION = '/registration'
}
15 changes: 15 additions & 0 deletions src/widgets/CreateAccount/model/types.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
export interface ICreateAccountForm {
name: string
surname: string
email: string
tel: string
country: string
region: string
index: string
model: string
city: string
password: string
passwordConfirmation: string
subscription: string
agreement: boolean
}
29 changes: 29 additions & 0 deletions src/widgets/CreateAccount/model/validation.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import * as Yup from 'yup'

export const validationSchema = Yup.object().shape({
name: Yup.string()
.required('Введите имя')
.min(2, 'Минимальная длина имени 6 символов')
.max(64, 'Максимальная длина имени 64 символа'),
surname: Yup.string()
.required('Введите фамилию')
.min(1, 'Минимальная длина фамилии 1 символ')
.max(64, 'Максимальная длина фамилии 64 символа'),
email: Yup.string()
.required('Введите электронную почту')
.email('Укажите корректный адрес электронной почты'),
tel: Yup.string()
.required('Введите номер телефона')
.matches(/^\+7\d{10}$/, 'Номер телефона должен быть в формате +7XXXXXXXXXX (X - цифра)'),
country: Yup.string(),
region: Yup.string(),
index: Yup.number()
.min(6, 'Количество символов должно быть 6')
.max(6, 'Количество символов должно быть 6')
.typeError('Индекс указывается только цифрами'),
city: Yup.string(),
password: Yup.string().required('Введите пароль'),
passwordConfirmation: Yup.string()
.required('Введите подтверждение пароля')
.oneOf([Yup.ref('password')], 'Пароли должны совпадать')
})
129 changes: 129 additions & 0 deletions src/widgets/CreateAccount/ui/CreateAccountForm.module.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,129 @@
@use '@/shared/styles/utils/variables' as var;
@use '@/shared/styles/utils/mixins' as media;

.form {
display: flex;
flex-direction: column;
justify-content: center;
width: 45%;
border-radius: 10px;
background-color: var.$white;
margin: 0 0 20px;
padding: 25px 30px 20px;

@include media.respond-to('large') {
width: 80%;
}
@include media.respond-to('middle') {
width: 94%;
}

&__paragraph {
margin: 0 0 10px;
padding: 0;
}

&__title {
margin-bottom: 20px;


&_second {
margin-top: 20px;
}
}

&__label {
margin: 0 0 20px;
padding: 0;

&_notRequired[data-no-star]::before {
content: '';
}

&_agreement {
margin-bottom: 0;
line-height: 20px;
}

}

&__label::before {
content: '*';
color: var.$promo-color;
margin-right: 3px;

&_notRequired[data-no-star]::before {
content: '';
}
}

&__list {
display: flex;
column-gap: 30px;
}

&__input {
background-color: var.$body-bg;
border: 2px solid var.$border-color;
border-radius: 10px;
margin: 5px 0 0;
padding: 10px 16px;

&_extra {
width: 100%;
}
}

&__input:focus {
border: 2px solid var.$theme-primary-color;
transition: 0.7s;
}

&__error {
position: absolute;
top: 72px;
left: 17px;
font-size: 12px;
font-weight: 100;
color: var.$promo-color;
}

&__radio {
width: 20px;
margin-top: 5px;
}

&__checkbox {
margin: 0;
}

&__buttons {
display: flex;
gap: 20px;
}

&__agreement {
display: flex;
align-items: flex-start;
column-gap: 10px;
border-top: 1px solid var.$border-color;
padding: 20px 0;
margin-bottom: 15px;
margin-top: 20px;
}

&__span {
display: inline;
padding: 0;
border: 0;
color: var.$link-color;
font-size: 14px;


&:hover {
color: var.$link-color;
transition: opacity 0.25s, color 0.25s;
opacity: 0.7;
}
}
}
17 changes: 17 additions & 0 deletions src/widgets/CreateAccount/ui/CreateAccountForm.stories.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import { Meta, StoryObj } from '@storybook/react'

import CreateAccountForm from './CreateAccountForm'

const meta = {
title: 'widgets/CreateAccountForm',
component: CreateAccountForm,
parameters: {
layout: 'centered'
},
tags: ['autodocs']
} satisfies Meta<typeof CreateAccountForm>

export default meta
type Story = StoryObj<typeof meta>

export const Default: Story = {}
Loading

0 comments on commit bc22043

Please sign in to comment.