mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
21 lines
655 B
TypeScript
21 lines
655 B
TypeScript
import { useRouter } from 'next/router';
|
|
import * as reactQuery from '@tanstack/react-query';
|
|
import { useApi as nextUseApi } from 'next-basics';
|
|
import { getClientAuthToken } from 'lib/client';
|
|
import { SHARE_TOKEN_HEADER } from 'lib/constants';
|
|
import useStore from 'store/app';
|
|
|
|
const selector = state => state.shareToken;
|
|
|
|
export default function useApi() {
|
|
const { basePath } = useRouter();
|
|
const shareToken = useStore(selector);
|
|
|
|
const { get, post, put, del } = nextUseApi(
|
|
{ authorization: `Bearer ${getClientAuthToken()}`, [SHARE_TOKEN_HEADER]: shareToken?.token },
|
|
basePath,
|
|
);
|
|
|
|
return { get, post, put, del, ...reactQuery };
|
|
}
|