diff --git a/front/src/components/CardLayout.tsx b/front/src/components/CardLayout.tsx new file mode 100644 index 0000000..588e780 --- /dev/null +++ b/front/src/components/CardLayout.tsx @@ -0,0 +1,23 @@ +import { PropsWithChildren } from 'react' +import { Card } from 'react-bootstrap' + +import { BackHeader } from '.' + +type CardLayoutProps = { + text: string +} + +const CardLayout = ({ text, children }: PropsWithChildren) => ( + <> +
+ +
+ + + {children} + + + +) + +export default CardLayout diff --git a/front/src/pages/AddPage.tsx b/front/src/pages/AddPage.tsx index eaa8195..b653b91 100644 --- a/front/src/pages/AddPage.tsx +++ b/front/src/pages/AddPage.tsx @@ -3,20 +3,15 @@ import { Form, Button, Card } from 'react-bootstrap' import { MapContainer, TileLayer } from 'react-leaflet' import { latLng } from 'leaflet' -import { ClickHandler, LocationMarker, TrashboxMarkers } from '../components' +import { BackHeader, ClickHandler, LocationMarker, TrashboxMarkers } from '../components' import { useAddAnnouncement, useTrashboxes } from '../hooks/api' import { categories, categoryNames } from '../assets/category' import { stations, lines, lineNames } from '../assets/metro' import { fallbackError, gotError } from '../hooks/useFetch' import { useOsmAddresses } from '../hooks/api' +import CardLayout from '../components/CardLayout' const styles = { - modal: { - height: 'calc(100vh - 3rem)', - } as CSSProperties, - body: { - overflowY: 'auto', - } as CSSProperties, map: { width: '100%', height: 400, @@ -48,138 +43,136 @@ function AddPage() { } return ( - - -
- - Заголовок объявления - - + + + + Заголовок объявления + + - - Категория - - - {categories.map(category => - - )} - - - - - Срок годности - - - - - Адрес выдачи -
- - - - - -
-

Адрес: {fallbackError(address)}

-
- - - Описание - - - - - Иллюстрация (фото или видео) - - - - - Станция метро - - - - {lines.map( - line => - - {Array.from(stations[line]).map(metro => - - )} - - )} - - - - - Пункт сбора мусора -
- {trashboxes.loading - ? ( -
-

Загрузка...

-
- ) : ( - gotError(trashboxes) ? ( -

{trashboxes.error}

- ) : ( - - - - - ) - ) - } -
- {!gotError(trashboxes) && selectedTrashbox.index > -1 ? ( -

Выбран пункт сбора мусора на { - trashboxes.data[selectedTrashbox.index].Address - } с категорией {selectedTrashbox.category}

- ) : ( -

Выберите пунк сбора мусора и категорию

+ + Категория + + + {categories.map(category => + )} - + +
-