next
Version:
The React Framework
81 lines (80 loc) • 4.14 kB
JavaScript
import { actionAsyncStorage } from '../../server/app-render/action-async-storage.external';
import { RedirectStatusCode } from './redirect-status-code';
const REDIRECT_ERROR_CODE = 'NEXT_REDIRECT';
export var RedirectType;
(function(RedirectType) {
RedirectType["push"] = "push";
RedirectType["replace"] = "replace";
})(RedirectType || (RedirectType = {}));
export function getRedirectError(url, type, statusCode) {
if (statusCode === void 0) statusCode = RedirectStatusCode.TemporaryRedirect;
const error = new Error(REDIRECT_ERROR_CODE);
error.digest = REDIRECT_ERROR_CODE + ";" + type + ";" + url + ";" + statusCode + ";";
return error;
}
/**
* This function allows you to redirect the user to another URL. It can be used in
* [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),
* [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and
* [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).
*
* - In a Server Component, this will insert a meta tag to redirect the user to the target page.
* - In a Route Handler or Server Action, it will serve a 307/303 to the caller.
* - In a Server Action, type defaults to 'push' and 'replace' elsewhere.
*
* Read more: [Next.js Docs: `redirect`](https://nextjs.org/docs/app/api-reference/functions/redirect)
*/ export function redirect(/** The URL to redirect to */ url, type) {
const actionStore = actionAsyncStorage.getStore();
const redirectType = type || ((actionStore == null ? void 0 : actionStore.isAction) ? "push" : "replace");
throw getRedirectError(url, redirectType, RedirectStatusCode.TemporaryRedirect);
}
/**
* This function allows you to redirect the user to another URL. It can be used in
* [Server Components](https://nextjs.org/docs/app/building-your-application/rendering/server-components),
* [Route Handlers](https://nextjs.org/docs/app/building-your-application/routing/route-handlers), and
* [Server Actions](https://nextjs.org/docs/app/building-your-application/data-fetching/server-actions-and-mutations).
*
* - In a Server Component, this will insert a meta tag to redirect the user to the target page.
* - In a Route Handler or Server Action, it will serve a 308/303 to the caller.
*
* Read more: [Next.js Docs: `redirect`](https://nextjs.org/docs/app/api-reference/functions/redirect)
*/ export function permanentRedirect(/** The URL to redirect to */ url, type) {
if (type === void 0) type = "replace";
throw getRedirectError(url, type, RedirectStatusCode.PermanentRedirect);
}
/**
* Checks an error to determine if it's an error generated by the
* `redirect(url)` helper.
*
* @param error the error that may reference a redirect error
* @returns true if the error is a redirect error
*/ export function isRedirectError(error) {
if (typeof error !== 'object' || error === null || !('digest' in error) || typeof error.digest !== 'string') {
return false;
}
const digest = error.digest.split(';');
const [errorCode, type] = digest;
const destination = digest.slice(2, -2).join(';');
const status = digest.at(-2);
const statusCode = Number(status);
return errorCode === REDIRECT_ERROR_CODE && (type === 'replace' || type === 'push') && typeof destination === 'string' && !isNaN(statusCode) && statusCode in RedirectStatusCode;
}
export function getURLFromRedirectError(error) {
if (!isRedirectError(error)) return null;
// Slices off the beginning of the digest that contains the code and the
// separating ';'.
return error.digest.split(';').slice(2, -2).join(';');
}
export function getRedirectTypeFromError(error) {
if (!isRedirectError(error)) {
throw new Error('Not a redirect error');
}
return error.digest.split(';', 2)[1];
}
export function getRedirectStatusCodeFromError(error) {
if (!isRedirectError(error)) {
throw new Error('Not a redirect error');
}
return Number(error.digest.split(';').at(-2));
}
//# sourceMappingURL=redirect.js.map