diff --git a/back/unimportant.env b/back/unimportant.env new file mode 100644 index 0000000..3e418f7 --- /dev/null +++ b/back/unimportant.env @@ -0,0 +1,2 @@ +TOKEN = "eyJhbGciOiJSUzI1NiIsInR5cCIgOiAiSldUIiwia2lkIiA6ICJhU1RaZm42bHpTdURYcUttRkg1SzN5UDFhT0FxUkhTNm9OendMUExaTXhFIn0.eyJleHAiOjE3ODYyMjUzMzMsImlhdCI6MTY5MTUzMDkzMywianRpIjoiYjU0MmU3MTQtYzJkMS00NTY2LWJkY2MtYmQ5NzA0ODY1ZjgzIiwiaXNzIjoiaHR0cHM6Ly9rYy5wZXRlcnNidXJnLnJ1L3JlYWxtcy9lZ3MtYXBpIiwiYXVkIjoiYWNjb3VudCIsInN1YiI6ImJjYjQ2NzljLTU3ZGItNDU5ZC1iNWUxLWRlOGI4Yzg5MTMwMyIsInR5cCI6IkJlYXJlciIsImF6cCI6ImFkbWluLXJlc3QtY2xpZW50Iiwic2Vzc2lvbl9zdGF0ZSI6IjJhOTgwMzUyLTY1M2QtNGZlZC1iMDI1LWQ1N2U0NDRjZmM3NiIsImFjciI6IjEiLCJhbGxvd2VkLW9yaWdpbnMiOlsiLyoiXSwicmVhbG1fYWNjZXNzIjp7InJvbGVzIjpbImRlZmF1bHQtcm9sZXMtZWdzLWFwaSIsIm9mZmxpbmVfYWNjZXNzIiwidW1hX2F1dGhvcml6YXRpb24iXX0sInJlc291cmNlX2FjY2VzcyI6eyJhY2NvdW50Ijp7InJvbGVzIjpbIm1hbmFnZS1hY2NvdW50IiwibWFuYWdlLWFjY291bnQtbGlua3MiLCJ2aWV3LXByb2ZpbGUiXX19LCJzY29wZSI6ImVtYWlsIHByb2ZpbGUiLCJzaWQiOiIyYTk4MDM1Mi02NTNkLTRmZWQtYjAyNS1kNTdlNDQ0Y2ZjNzYiLCJlbWFpbF92ZXJpZmllZCI6ZmFsc2UsIm5hbWUiOiLQktC70LDQtNC40LzQuNGAINCv0LrQvtCy0LvQtdCyIiwicHJlZmVycmVkX3VzZXJuYW1lIjoiZTBmYzc2OGRhOTA4MjNiODgwZGQzOGVhMDJjMmQ5NTciLCJnaXZlbl9uYW1lIjoi0JLQu9Cw0LTQuNC80LjRgCIsImZhbWlseV9uYW1lIjoi0K_QutC-0LLQu9C10LIifQ.FTKiC1hpWcOkmSW9QZpC-RY7Ko50jw1mDMfXIWYxlQ-zehLm2CLmOnHvYoOoI39k2OzeCIAB9ZdRrrGZc6G9Z1eFELUjNGEqKxSC1Phj9ATemKgbOKEttk-OGc-rFr9VPA8_SnfvLts6wTI2YK33YBIxCF5nCbnr4Qj3LeEQ0d6Hy8PO4ATrBF5EOeuAZRprvIEjXe_f8N9ONKckCPB-xFB4P2pZlVXGoCNoewGEcY3zXH4khezN6zcVr6tpc6G8dBv9EqT_v92IDSg-aXQk6ysA0cO0-6x5w1-_qU0iHGIAPsLNV9IKBoFbjc0JH6cWabldPRH12NP1trvYfqKDGQ" +DOMAIN = "https://geointelect2.gate.petersburg.ru" \ No newline at end of file diff --git a/front/src/components/AnnouncementDetails.tsx b/front/src/components/AnnouncementDetails.tsx index dd7b805..3a9ed35 100644 --- a/front/src/components/AnnouncementDetails.tsx +++ b/front/src/components/AnnouncementDetails.tsx @@ -25,10 +25,12 @@ const styles = { } type ViewProps = { + myId: number, announcement: Announcement, } const View = ({ + myId, announcement: { name, category, bestBy, description, lat, lng, address, metro, userId }, }: ViewProps) => ( <> @@ -41,7 +43,7 @@ const View = ({

{description}

- Рейтинг пользователя: + Рейтинг пользователя:

@@ -62,12 +64,14 @@ const View = ({ ) type ControlProps = { + myId: number, closeRefresh: () => void, announcement: Announcement, showDispose: () => void } function Control({ + myId, closeRefresh, announcement: { bookedBy, id, userId }, showDispose, @@ -76,8 +80,6 @@ function Control({ const { handleRemove, removeButton } = useRemoveAnnouncement(closeRefresh) - const myId = useId() - return ( <>

Забронировали {bookedBy + (bookButton.disabled ? 1 : 0)} чел.

@@ -111,6 +113,8 @@ function AnnouncementDetails({ const [disposeShow, setDisposeShow] = useState(false) + const myId = useId() + return (
- + - setDisposeShow(true)} announcement={announcement} /> + setDisposeShow(true)} + announcement={announcement} + /> setDisposeShow(false)} style={{ zIndex: 100000 }}> diff --git a/front/src/components/Poetry.tsx b/front/src/components/Poetry.tsx index 2bd23aa..29659e5 100644 --- a/front/src/components/Poetry.tsx +++ b/front/src/components/Poetry.tsx @@ -7,7 +7,7 @@ function Poetry() { const poetry = usePoetry() return ( -
+

Поэзия

{ gotResponse(poetry) ? ( gotError(poetry) ? ( @@ -26,6 +26,7 @@ function Poetry() { }} />

{poetry.data.author}

+ Иллюстрация ) ) : ( @@ -33,7 +34,7 @@ function Poetry() { ) } -
+ ) } diff --git a/front/src/components/Points.tsx b/front/src/components/Points.tsx index deebc85..ecbb885 100644 --- a/front/src/components/Points.tsx +++ b/front/src/components/Points.tsx @@ -7,9 +7,6 @@ type PointsProps = { } const styles = { - container: { - paddingBottom: 8, - } as CSSProperties, points: { float: 'right', } as CSSProperties, @@ -22,18 +19,16 @@ const styles = { function Points({ points }: PointsProps) { return ( -
-
- Набрано очков: - - Иконка руки, дающей звёзды - {points} - -
-
+
+ Набрано очков: + + Иконка руки, дающей звёзды + {points} + +
) } diff --git a/front/src/components/StarRating.tsx b/front/src/components/StarRating.tsx index 3154f6f..c433d7b 100644 --- a/front/src/components/StarRating.tsx +++ b/front/src/components/StarRating.tsx @@ -8,18 +8,17 @@ import styles from '../styles/StarRating.module.css' type StarProps = { filled: boolean, selected: boolean, - setMyRate?: () => void, + selectRate?: () => void, sendMyRate?: () => void, disabled: boolean } -function Star({ filled, selected, setMyRate, sendMyRate, disabled }: StarProps) { +function Star({ filled, selected, selectRate, disabled }: StarProps) { return ( // star ) @@ -28,21 +27,23 @@ function Star({ filled, selected, setMyRate, sendMyRate, disabled }: StarProps) type StarRatingProps = { userId: number, dynamic?: boolean, - style?: React.CSSProperties, } function StarRating({ userId, dynamic = false }: StarRatingProps) { const rating = useUserRating(userId) + const [selectedRate, setSelectedRate] = useState(0) const [myRate, setMyRate] = useState(0) + const rated = myRate > 0 const { doSendRate } = useSendRate() async function sendMyRate() { - const res = await doSendRate(myRate, userId) + const res = await doSendRate(selectedRate, userId) if (res) { rating.refetch() + setMyRate(selectedRate) } } @@ -59,15 +60,30 @@ function StarRating({ userId, dynamic = false }: StarRatingProps) { } return ( - setMyRate(0)}> + dynamic && !rated && void sendMyRate()} + + onMouseEnter={() => rated && setSelectedRate(myRate)} + onMouseLeave={() => setSelectedRate(0)} + + onFocus={() => rated && setSelectedRate(myRate)} + onBlur={() => setSelectedRate(0)} + + onTouchStart={() => rated && setSelectedRate(myRate)} + onTouchEnd={() => setSelectedRate(0)} + + title={`Пользователи: ${Math.round(rating.data)}\nВы: ${myRate}`} + tabIndex={0} + > {...Array(5).fill(5).map((_, i) => ( dynamic && setMyRate(i + 1)} - sendMyRate={() => dynamic && void sendMyRate()} - disabled={!dynamic} + selected={i < selectedRate} + selectRate={() => dynamic && !rated && setSelectedRate(i + 1)} + disabled={!dynamic || rated} /> ))} diff --git a/front/src/components/StoriesPreview.tsx b/front/src/components/StoriesPreview.tsx index 306b71a..4bd6cf6 100644 --- a/front/src/components/StoriesPreview.tsx +++ b/front/src/components/StoriesPreview.tsx @@ -37,6 +37,7 @@ const styles = { objectFit: 'contain', borderRadius: 12, marginBottom: 5, + maxWidth: 'inherit', } as CSSProperties, title: { overflow: 'hidden', diff --git a/front/src/hooks/useFetch.ts b/front/src/hooks/useFetch.ts index 82a5106..c0e9319 100644 --- a/front/src/hooks/useFetch.ts +++ b/front/src/hooks/useFetch.ts @@ -1,4 +1,4 @@ -import { useEffect, useState } from 'react' +import { useCallback, useEffect, useState } from 'react' import useSend from './useSend' @@ -54,7 +54,9 @@ function useFetch>( ): UseFetchReturn { const [data, setData] = useState(initialData) - const { doSend, loading, error } = useSend( + const [fetchLoading, setFetchLoading] = useState(true) + + const { doSend, error } = useSend( url, method, needAuth, @@ -64,20 +66,26 @@ function useFetch>( params, ) - function refetch() { + const refetch = useCallback(() => { + setFetchLoading(true) doSend().then( - data => { if (data !== undefined) setData(data) } + data => { + if (data !== undefined) { + setData(data) + } + setFetchLoading(false) + } ).catch( // must never occur err => import.meta.env.DEV && console.error('Failed to do fetch request', err) ) - } + }, [doSend]) - useEffect(refetch, [doSend]) + useEffect(refetch, [refetch]) - if (loading === true) { + if (fetchLoading === true) { return { data: undefined, - loading, + loading: fetchLoading, error: null, refetch, } @@ -86,7 +94,7 @@ function useFetch>( if (error !== null) { return { data: undefined, - loading, + loading: fetchLoading, error, refetch, } @@ -94,7 +102,7 @@ function useFetch>( return { data: data!, - loading, + loading: fetchLoading, error, refetch, } diff --git a/front/src/pages/UserPage.tsx b/front/src/pages/UserPage.tsx index 2ed6dba..7d9f198 100644 --- a/front/src/pages/UserPage.tsx +++ b/front/src/pages/UserPage.tsx @@ -26,15 +26,15 @@ function UserPage() { - +
+ -
Ваша оценка: @@ -45,7 +45,9 @@ function UserPage() { ))} - +
+ +
) } diff --git a/front/src/styles/Poetry.module.css b/front/src/styles/Poetry.module.css index a452425..8057f48 100644 --- a/front/src/styles/Poetry.module.css +++ b/front/src/styles/Poetry.module.css @@ -3,5 +3,5 @@ } .text { - white-space: 'pre-wrap'; + white-space: pre-wrap; } \ No newline at end of file