diff --git a/front/src/hooks/api/useUser.ts b/front/src/hooks/api/useUser.ts index 5531490..ca22c1a 100644 --- a/front/src/hooks/api/useUser.ts +++ b/front/src/hooks/api/useUser.ts @@ -1,8 +1,8 @@ import { initialUser } from '../../api/user' import { User } from '../../api/user/types' -import { UseFetchErrored, UseFetchSucced } from '../useFetch' +import { UseFetchReturn } from '../useFetch' -const useUser = (): UseFetchSucced | UseFetchErrored => ( +const useUser = (): UseFetchReturn => ( // useFetch( // composeUserUrl(getToken()), // 'GET', @@ -16,6 +16,7 @@ const useUser = (): UseFetchSucced | UseFetchErrored => ( data: initialUser, loading: false, error: null, + setData: () => {0} } ) diff --git a/front/src/hooks/useFetch.ts b/front/src/hooks/useFetch.ts index b401601..fdeda57 100644 --- a/front/src/hooks/useFetch.ts +++ b/front/src/hooks/useFetch.ts @@ -3,40 +3,31 @@ import { useEffect, useState } from 'react' import { SetState } from '../utils/types' import useSend from './useSend' -type UseFetchShared = { +type UseFetchShared = { loading: boolean, abort?: () => void, + setData: SetState } type UseFetchSucced = { error: null, data: T, -} & UseFetchShared +} & UseFetchShared -type UseFetchErrored = { +type UseFetchErrored = { error: string, data: undefined -} & UseFetchShared +} & UseFetchShared -const gotError = (res: UseFetchErrored | UseFetchSucced): res is UseFetchErrored => ( +const gotError = (res: UseFetchErrored | UseFetchSucced): res is UseFetchErrored => ( typeof res.error === 'string' ) -const fallbackError = (res: UseFetchSucced | UseFetchErrored) => ( +const fallbackError = (res: UseFetchSucced | UseFetchErrored) => ( gotError(res) ? res.error : res.data ) -type UseFetchReturn = ({ - error: null, - data: T -} | { - error: string, - data: undefined -}) & { - loading: boolean, - setData: SetState - abort?: (() => void) -} +type UseFetchReturn = UseFetchSucced | UseFetchErrored function useFetch( url: string, @@ -70,7 +61,7 @@ function useFetch( } } -export type { UseFetchErrored, UseFetchSucced } +export type { UseFetchReturn } export default useFetch diff --git a/front/src/hooks/useStoryDimensions.ts b/front/src/hooks/useStoryDimensions.ts index 7d69655..c0e2770 100644 --- a/front/src/hooks/useStoryDimensions.ts +++ b/front/src/hooks/useStoryDimensions.ts @@ -14,12 +14,14 @@ function useStoryDimensions(maxRatio = 16 / 9) { function handleResize() { setWindowDimensions(getWindowDimensions()); } - + window.addEventListener('resize', handleResize); return () => window.removeEventListener('resize', handleResize); }, []); - const height = windowDimensions.height - 56 + const bottomBarHeight = 56 + + const height = windowDimensions.height - bottomBarHeight const ratio = Math.max(maxRatio, height / windowDimensions.width)