UNPKG

@inlang/paraglide-js

Version:

[![NPM Downloads](https://img.shields.io/npm/dw/%40inlang%2Fparaglide-js?logo=npm&logoColor=red&label=npm%20downloads)](https://www.npmjs.com/package/@inlang/paraglide-js) [![GitHub Issues](https://img.shields.io/github/issues-closed/opral/paraglide-js?lo

35 lines 1.55 kB
/** * Asynchronously extracts a locale from a request. * * This function supports async custom server strategies, unlike the synchronous * `extractLocaleFromRequest`. Use this function when you have custom server strategies * that need to perform asynchronous operations (like database calls) in their getLocale method. * * The function first processes any custom server strategies asynchronously, then falls back * to the synchronous `extractLocaleFromRequest` for all other strategies. * * @see {@link https://github.com/opral/inlang-paraglide-js/issues/527#issuecomment-2978151022} * * @example * // Basic usage * const locale = await extractLocaleFromRequestAsync(request); * * @example * // With custom async server strategy * defineCustomServerStrategy("custom-database", { * getLocale: async (request) => { * const userId = extractUserIdFromRequest(request); * return await getUserLocaleFromDatabase(userId); * } * }); * * const locale = await extractLocaleFromRequestAsync(request); * * @param {Request} request - The request object to extract the locale from. * @param {{ effectiveRequestUrl?: string | URL }} [options] - Effective request URL to use for route matching and locale detection with the URL strategy. * @returns {Promise<Locale>} The extracted locale. */ export declare const extractLocaleFromRequestAsync: (request: Request, options?: { effectiveRequestUrl?: string | URL; }) => Promise<Locale>; //# sourceMappingURL=extract-locale-from-request-async.d.ts.map