UNPKG

react-intlayer

Version:

Easily internationalize i18n your React applications with type-safe multilingual content management.

37 lines (35 loc) 900 B
import { getServerContext } from "../serverContext.mjs"; import { IntlayerServerContext } from "../IntlayerServerProvider.mjs"; import { currency } from "@intlayer/core"; //#region src/server/format/useCurrency.ts /** * React client hook that provides a currency formatter * bound to the current application locale. * * @example * ```tsx * const formatCurrency = useCurrency(); * * formatCurrency(1500, { currency: "USD" }); * // "$1,500.00" * * formatCurrency(1500, { currency: "EUR", locale: "de-DE" }); * // "1.500,00 €" * * formatCurrency(9876543.21, { * currency: "JPY", * fractionDigits: 0, * }); * // "¥9,876,543" * ``` */ const useCurrency = () => { const locale = getServerContext(IntlayerServerContext); return (...args) => currency(args[0], { ...args[1], locale: args[1]?.locale ?? locale }); }; //#endregion export { useCurrency }; //# sourceMappingURL=useCurrency.mjs.map