80 lines
2.0 KiB
TypeScript
80 lines
2.0 KiB
TypeScript
'use client';
|
|
|
|
import { ReactNode, useCallback } from 'react';
|
|
import { FetchWrapperComponent } from '@gitroom/helpers/utils/custom.fetch';
|
|
import { deleteDialog } from '@gitroom/react/helpers/delete.dialog';
|
|
import { isGeneral } from '@gitroom/react/helpers/is.general';
|
|
import { useReturnUrl } from '@gitroom/frontend/app/auth/return.url.component';
|
|
|
|
export default function LayoutContext(params: { children: ReactNode }) {
|
|
if (params?.children) {
|
|
// eslint-disable-next-line react/no-children-prop
|
|
return <LayoutContextInner children={params.children} />;
|
|
}
|
|
|
|
return <></>;
|
|
}
|
|
function LayoutContextInner(params: { children: ReactNode }) {
|
|
const returnUrl = useReturnUrl();
|
|
|
|
const afterRequest = useCallback(
|
|
async (url: string, options: RequestInit, response: Response) => {
|
|
const reloadOrOnboarding =
|
|
response?.headers?.get('reload') ||
|
|
response?.headers?.get('onboarding');
|
|
|
|
if (reloadOrOnboarding) {
|
|
const getAndClear = returnUrl.getAndClear();
|
|
if (getAndClear) {
|
|
window.location.href = getAndClear;
|
|
return true;
|
|
}
|
|
}
|
|
|
|
if (response?.headers?.get('onboarding')) {
|
|
window.location.href = isGeneral()
|
|
? '/launches?onboarding=true'
|
|
: '/analytics?onboarding=true';
|
|
|
|
return true;
|
|
}
|
|
|
|
if (response?.headers?.get('reload')) {
|
|
window.location.reload();
|
|
return true;
|
|
}
|
|
|
|
if (response.status === 401) {
|
|
window.location.href = '/';
|
|
}
|
|
|
|
if (response.status === 402) {
|
|
if (
|
|
await deleteDialog(
|
|
(
|
|
await response.json()
|
|
).message,
|
|
'Move to billing',
|
|
'Payment Required'
|
|
)
|
|
) {
|
|
window.open('/billing', '_blank');
|
|
}
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
},
|
|
[]
|
|
);
|
|
|
|
return (
|
|
<FetchWrapperComponent
|
|
baseUrl={process.env.NEXT_PUBLIC_BACKEND_URL!}
|
|
afterRequest={afterRequest}
|
|
>
|
|
{params?.children || <></>}
|
|
</FetchWrapperComponent>
|
|
);
|
|
}
|