From 7cf83d099d9f7a7922fc6516542091bf18392d1b Mon Sep 17 00:00:00 2001 From: dm1sh Date: Wed, 19 Jul 2023 23:24:58 +0300 Subject: [PATCH] Added api/user request prototype --- front/package-lock.json | 17 +++++++++++++++++ front/package.json | 1 + front/src/api/user/index.ts | 25 +++++++++++++++++++++++++ front/src/api/user/types.ts | 29 +++++++++++++++++++++++++++++ front/src/hooks/api/index.ts | 1 + front/src/hooks/api/useUser.ts | 22 ++++++++++++++++++++++ front/src/hooks/useFetch.ts | 2 ++ 7 files changed, 97 insertions(+) create mode 100644 front/src/api/user/index.ts create mode 100644 front/src/api/user/types.ts create mode 100644 front/src/hooks/api/useUser.ts diff --git a/front/package-lock.json b/front/package-lock.json index 096b2cd..52f0739 100644 --- a/front/package-lock.json +++ b/front/package-lock.json @@ -20,6 +20,7 @@ "react-router-dom": "^6.14.1" }, "devDependencies": { + "@faker-js/faker": "^8.0.2", "@types/react": "^18.2.14", "@types/react-dom": "^18.2.6", "@typescript-eslint/eslint-plugin": "^5.61.0", @@ -817,6 +818,22 @@ "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, + "node_modules/@faker-js/faker": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-8.0.2.tgz", + "integrity": "sha512-Uo3pGspElQW91PCvKSIAXoEgAUlRnH29sX2/p89kg7sP1m2PzCufHINd0FhTXQf6DYGiUlVncdSPa2F9wxed2A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/fakerjs" + } + ], + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0", + "npm": ">=6.14.13" + } + }, "node_modules/@humanwhocodes/config-array": { "version": "0.11.10", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.10.tgz", diff --git a/front/package.json b/front/package.json index 5420348..e848a0c 100644 --- a/front/package.json +++ b/front/package.json @@ -24,6 +24,7 @@ "react-router-dom": "^6.14.1" }, "devDependencies": { + "@faker-js/faker": "^8.0.2", "@types/react": "^18.2.14", "@types/react-dom": "^18.2.6", "@typescript-eslint/eslint-plugin": "^5.61.0", diff --git a/front/src/api/user/index.ts b/front/src/api/user/index.ts new file mode 100644 index 0000000..f695a5f --- /dev/null +++ b/front/src/api/user/index.ts @@ -0,0 +1,25 @@ +import { API_URL } from '../../config' +import { UserResponse, User } from './types' + +import { faker } from '@faker-js/faker/locale/ru' + + +const initialUser: User = import.meta.env.DEV ? { // Temporary, until api is realized + id: Math.random() * 100, + name: faker.person.firstName() + ' ' + faker.person.lastName(), + regDate: faker.date.anytime().getTime(), +} : { + id: -1, + name: '', + regDate: 0, +} + +const composeUserURL = () => ( + API_URL + '/user?' +) + +const processUser = (data: UserResponse): User => { + return data +} + +export { initialUser, composeUserURL, processUser } diff --git a/front/src/api/user/types.ts b/front/src/api/user/types.ts new file mode 100644 index 0000000..8c9ee7e --- /dev/null +++ b/front/src/api/user/types.ts @@ -0,0 +1,29 @@ +import { isObject } from '../../utils/types' + +type User = { + id: number, + name: string, + regDate: number, +} + +const isUser = (obj: unknown): obj is User => ( + isObject(obj, { + 'id': 'number', + 'name': 'string', + 'regDate': 'number', + }) +) + +type UserResponse = User + +// const isUserResponse = (obj: unknown): obj is UserResponse => ( +// isObject(obj, { + +// }) +// ) + +const isUserResponse = isUser + +export type { UserResponse, User } + +export { isUserResponse, isUser } diff --git a/front/src/hooks/api/index.ts b/front/src/hooks/api/index.ts index 9023aee..ce87039 100644 --- a/front/src/hooks/api/index.ts +++ b/front/src/hooks/api/index.ts @@ -4,3 +4,4 @@ export { default as useAuth } from './useAuth' export { default as useTrashboxes } from './useTrashboxes' export { default as useAddAnnouncement } from './useAddAnnouncement' export { default as useOsmAddresses } from './useOsmAddress' +export { default as useUser } from './useUser' diff --git a/front/src/hooks/api/useUser.ts b/front/src/hooks/api/useUser.ts new file mode 100644 index 0000000..5531490 --- /dev/null +++ b/front/src/hooks/api/useUser.ts @@ -0,0 +1,22 @@ +import { initialUser } from '../../api/user' +import { User } from '../../api/user/types' +import { UseFetchErrored, UseFetchSucced } from '../useFetch' + +const useUser = (): UseFetchSucced | UseFetchErrored => ( + // useFetch( + // composeUserUrl(getToken()), + // 'GET', + // true, + // isUserResponse, + // processUser, + // initialUser + // ) + + { + data: initialUser, + loading: false, + error: null, + } +) + +export default useUser \ No newline at end of file diff --git a/front/src/hooks/useFetch.ts b/front/src/hooks/useFetch.ts index 41e9ab6..b401601 100644 --- a/front/src/hooks/useFetch.ts +++ b/front/src/hooks/useFetch.ts @@ -70,6 +70,8 @@ function useFetch( } } +export type { UseFetchErrored, UseFetchSucced } + export default useFetch export { gotError, fallbackError }