diff --git a/front/src/api/poetry/index.ts b/front/src/api/poetry/index.ts index 36e60b3..4133171 100644 --- a/front/src/api/poetry/index.ts +++ b/front/src/api/poetry/index.ts @@ -5,10 +5,11 @@ const initialPoetry: Poetry = { title: '', text: '', author: '', + id: 0, } const composePoetryURL = () => ( - API_URL + '/poetry?' + API_URL + '/user/poem?' ) const processPoetry = (data: PoetryResponse): Poetry => { diff --git a/front/src/api/poetry/types.ts b/front/src/api/poetry/types.ts index d3855dc..8251d1b 100644 --- a/front/src/api/poetry/types.ts +++ b/front/src/api/poetry/types.ts @@ -4,6 +4,7 @@ type PoetryResponse = { title: string, text: string, author: string, + id: number, } const isPoetryResponse = (obj: unknown): obj is PoetryResponse => ( @@ -11,6 +12,7 @@ const isPoetryResponse = (obj: unknown): obj is PoetryResponse => ( 'title': 'string', 'text': 'string', 'author': 'string', + 'id': 'number', }) ) diff --git a/front/src/components/Poetry.tsx b/front/src/components/Poetry.tsx index c8473cd..2bd23aa 100644 --- a/front/src/components/Poetry.tsx +++ b/front/src/components/Poetry.tsx @@ -1,18 +1,13 @@ -import { CSSProperties } from 'react' import { usePoetry } from '../hooks/api' import { gotError, gotResponse } from '../hooks/useFetch' -const styles = { - container: { - paddingBottom: 8, - } as CSSProperties, -} +import styles from '../styles/Poetry.module.css' function Poetry() { const poetry = usePoetry() return ( -
+

Поэзия

{ gotResponse(poetry) ? ( gotError(poetry) ? ( @@ -23,7 +18,13 @@ function Poetry() { ) : ( <>
{poetry.data.title}
-

+

{poetry.data.author}

) diff --git a/front/src/hooks/api/usePoetry.ts b/front/src/hooks/api/usePoetry.ts index 6547f63..631f117 100644 --- a/front/src/hooks/api/usePoetry.ts +++ b/front/src/hooks/api/usePoetry.ts @@ -1,121 +1,17 @@ -import { Poetry } from '../../api/poetry/types' -import { UseFetchReturn } from '../useFetch' - -const testPoetry: Poetry = { - title: 'The Mouse\'s Tale', - text: `
"Fury said to
-
a mouse, That
-
he met
-
in the
-
house,
-
'Let us
-
both go
-
to law:
-
I will
-
prosecute
-
you.
-
Come, I'll
-
take no
-
denial;
-
We must
-
have a
-
trial:
-
For
-
really
-
this
-
morning
-
I've
-
nothing
-
to do.'
-
Said the
-
mouse to
-
the cur,
-
'Such a
-
trial,
-
dear sir,
-
With no
-
jury or
-
judge,
-
would be
-
wasting
-
our breath.'
-
'I'll be
-
judge,
-
I'll be
-
jury,'
-
Said
-
cunning
-
old Fury;
-
'I'll try
-
the whole
-
cause,
-
and
-
condemn
-
you
-
to
-
death.' "
`, - author: 'Lewis Carroll', -} +import { composePoetryURL, initialPoetry, processPoetry } from '../../api/poetry' +import { Poetry, isPoetryResponse } from '../../api/poetry/types' +import useFetch, { UseFetchReturn } from '../useFetch' function usePoetry(): UseFetchReturn { return ( - // useFetch( - // composePoetryURL(), - // 'GET', - // false, - // isPoetryResponse, - // processPoetry, - // initialPoetry, - // ) - - { - data: testPoetry, - loading: false, - error: null, - refetch: () => { return }, - } - - // { - // data: undefined, - // loading: false, - // error: 'хе-хе', - // refetch: () => { return }, - // } - - // { - // data: undefined, - // loading: true, - // error: null, - // refetch: () => { return }, - // } + useFetch( + composePoetryURL(), + 'GET', + false, + isPoetryResponse, + processPoetry, + initialPoetry, + ) ) } diff --git a/front/src/styles/Poetry.module.css b/front/src/styles/Poetry.module.css new file mode 100644 index 0000000..a452425 --- /dev/null +++ b/front/src/styles/Poetry.module.css @@ -0,0 +1,7 @@ +.container { + padding-bottom: 8; +} + +.text { + white-space: 'pre-wrap'; +} \ No newline at end of file