@react-aria/i18n 3.4.0 → 3.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/types.d.ts CHANGED
@@ -1,15 +1,16 @@
1
1
  import { Direction } from "@react-types/shared";
2
2
  import { ReactNode } from "react";
3
3
  import { LocalizedStrings } from "@internationalized/message";
4
+ import { LocalizedString, LocalizedStringFormatter, LocalizedStrings as _LocalizedStrings1 } from "@internationalized/string";
4
5
  import { DateFormatter } from "@internationalized/date";
5
6
  import { NumberFormatOptions } from "@internationalized/number";
6
- interface Locale {
7
+ export interface Locale {
7
8
  /** The [BCP47](https://www.ietf.org/rfc/bcp/bcp47.txt) language code for the locale. */
8
9
  locale: string;
9
10
  /** The writing direction for the locale. */
10
11
  direction: Direction;
11
12
  }
12
- interface ProviderProps {
13
+ export interface I18nProviderProps {
13
14
  /** Contents that should have the locale applied. */
14
15
  children: ReactNode;
15
16
  /** The locale to apply to the children. */
@@ -18,7 +19,7 @@ interface ProviderProps {
18
19
  /**
19
20
  * Provides the locale for the application to all child components.
20
21
  */
21
- export function I18nProvider(props: ProviderProps): JSX.Element;
22
+ export function I18nProvider(props: I18nProviderProps): JSX.Element;
22
23
  /**
23
24
  * Returns the current locale and layout direction.
24
25
  */
@@ -30,9 +31,16 @@ export type FormatMessage = (key: string, variables?: {
30
31
  * Handles formatting ICU Message strings to create localized strings for the current locale.
31
32
  * Automatically updates when the locale changes, and handles caching of messages for performance.
32
33
  * @param strings - A mapping of languages to strings by key.
34
+ * @deprecated - use useLocalizedStringFormatter instead.
33
35
  */
34
36
  export function useMessageFormatter(strings: LocalizedStrings): FormatMessage;
35
- interface DateFormatterOptions extends Intl.DateTimeFormatOptions {
37
+ /**
38
+ * Provides localized string formatting for the current locale. Supports interpolating variables,
39
+ * selecting the correct pluralization, and formatting numbers. Automatically updates when the locale changes.
40
+ * @param strings - A mapping of languages to localized strings by key.
41
+ */
42
+ export function useLocalizedStringFormatter<K extends string = string, T extends LocalizedString = string>(strings: _LocalizedStrings1<K, T>): LocalizedStringFormatter<K, T>;
43
+ export interface DateFormatterOptions extends Intl.DateTimeFormatOptions {
36
44
  calendar?: string;
37
45
  }
38
46
  /**
@@ -53,7 +61,7 @@ export function useNumberFormatter(options?: NumberFormatOptions): Intl.NumberFo
53
61
  * @param options - Collator options.
54
62
  */
55
63
  export function useCollator(options?: Intl.CollatorOptions): Intl.Collator;
56
- interface Filter {
64
+ export interface Filter {
57
65
  /** Returns whether a string starts with a given substring. */
58
66
  startsWith(string: string, substring: string): boolean;
59
67
  /** Returns whether a string ends with a given substring. */
@@ -66,5 +74,7 @@ interface Filter {
66
74
  * in a list. Options can be provided to adjust the sensitivity to case, diacritics, and other parameters.
67
75
  */
68
76
  export function useFilter(options?: Intl.CollatorOptions): Filter;
77
+ export type { LocalizedStrings } from '@internationalized/message';
78
+ export type { DateFormatter } from '@internationalized/date';
69
79
 
70
80
  //# sourceMappingURL=types.d.ts.map
@@ -1 +1 @@
1
- {"mappings":";;;;;ACiBA;IACE,wFAAwF;IACxF,MAAM,EAAE,MAAM,CAAC;IACf,4CAA4C;IAC5C,SAAS,EAAE,SAAS,CAAA;CACrB;ACND;IACE,oDAAoD;IACpD,QAAQ,EAAE,SAAS,CAAC;IACpB,2CAA2C;IAC3C,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAID;;GAEG;AACH,6BAA6B,KAAK,EAAE,aAAa,eAchD;AAED;;GAEG;AACH,6BAA6B,MAAM,CAIlC;ACnCD,4BAA4B,CAAC,GAAG,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE;IAAC,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CAAC,KAAK,MAAM,CAAC;AAatF;;;;GAIG;AACH,oCAAoC,OAAO,EAAE,gBAAgB,GAAG,aAAa,CAK5E;ACvBD,8BAA+B,SAAQ,IAAI,CAAC,qBAAqB;IAC/D,QAAQ,CAAC,EAAE,MAAM,CAAA;CAClB;AAED;;;;GAIG;AACH,iCAAiC,OAAO,CAAC,EAAE,oBAAoB,GAAG,aAAa,CAW9E;ACpBD;;;;GAIG;AACH,mCAAmC,OAAO,GAAE,mBAAwB,GAAG,KAAK,YAAY,CAGvF;ACRD;;;;GAIG;AACH,4BAA4B,OAAO,CAAC,EAAE,KAAK,eAAe,GAAG,KAAK,QAAQ,CAWzE;AClBD;IACE,8DAA8D;IAC9D,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC;IACvD,4DAA4D;IAC5D,QAAQ,CAAC,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC;IACrD,2DAA2D;IAC3D,QAAQ,CAAC,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,OAAO,CAAA;CACrD;AAED;;;GAGG;AACH,0BAA0B,OAAO,CAAC,EAAE,KAAK,eAAe,GAAG,MAAM,CAiDhE","sources":["packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/utils.ts","packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/useDefaultLocale.ts","packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/context.tsx","packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/useMessageFormatter.ts","packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/useDateFormatter.ts","packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/useNumberFormatter.ts","packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/useCollator.ts","packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/useFilter.ts","packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/index.ts","packages/@react-aria/i18n/src/index.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,"/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport * from './context';\nexport * from './useMessageFormatter';\nexport * from './useDateFormatter';\nexport * from './useNumberFormatter';\nexport * from './useCollator';\nexport * from './useFilter';\n"],"names":[],"version":3,"file":"types.d.ts.map"}
1
+ {"mappings":";;;;;;ACiBA;IACE,wFAAwF;IACxF,MAAM,EAAE,MAAM,CAAC;IACf,4CAA4C;IAC5C,SAAS,EAAE,SAAS,CAAA;CACrB;ACND;IACE,oDAAoD;IACpD,QAAQ,EAAE,SAAS,CAAC;IACpB,2CAA2C;IAC3C,MAAM,CAAC,EAAE,MAAM,CAAA;CAChB;AAID;;GAEG;AACH,6BAA6B,KAAK,EAAE,iBAAiB,eAcpD;AAED;;GAEG;AACH,6BAA6B,MAAM,CAIlC;ACnCD,4BAA4B,CAAC,GAAG,EAAE,MAAM,EAAE,SAAS,CAAC,EAAE;IAAC,CAAC,GAAG,EAAE,MAAM,GAAG,GAAG,CAAA;CAAC,KAAK,MAAM,CAAC;AAatF;;;;;GAKG;AACH,oCAAoC,OAAO,EAAE,gBAAgB,GAAG,aAAa,CAK5E;ACbD;;;;GAIG;AACH,4CAA4C,CAAC,SAAS,MAAM,GAAG,MAAM,EAAE,CAAC,SAAS,eAAe,GAAG,MAAM,EAAE,OAAO,EAAE,mBAAiB,CAAC,EAAE,CAAC,CAAC,GAAG,yBAAyB,CAAC,EAAE,CAAC,CAAC,CAI1K;ACpBD,qCAAsC,SAAQ,IAAI,CAAC,qBAAqB;IACtE,QAAQ,CAAC,EAAE,MAAM,CAAA;CAClB;AAED;;;;GAIG;AACH,iCAAiC,OAAO,CAAC,EAAE,oBAAoB,GAAG,aAAa,CAW9E;ACpBD;;;;GAIG;AACH,mCAAmC,OAAO,GAAE,mBAAwB,GAAG,KAAK,YAAY,CAGvF;ACRD;;;;GAIG;AACH,4BAA4B,OAAO,CAAC,EAAE,KAAK,eAAe,GAAG,KAAK,QAAQ,CAWzE;AClBD;IACE,8DAA8D;IAC9D,UAAU,CAAC,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC;IACvD,4DAA4D;IAC5D,QAAQ,CAAC,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC;IACrD,2DAA2D;IAC3D,QAAQ,CAAC,MAAM,EAAE,MAAM,EAAE,SAAS,EAAE,MAAM,GAAG,OAAO,CAAA;CACrD;AAED;;;GAGG;AACH,0BAA0B,OAAO,CAAC,EAAE,KAAK,eAAe,GAAG,MAAM,CAiDhE;ACrDD,YAAY,EAAC,gBAAgB,EAAC,MAAM,4BAA4B,CAAC;AAEjE,YAAY,EAAC,aAAa,EAAC,MAAM,yBAAyB,CAAC","sources":["packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/utils.ts","packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/useDefaultLocale.ts","packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/context.tsx","packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/useMessageFormatter.ts","packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/useLocalizedStringFormatter.ts","packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/useDateFormatter.ts","packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/useNumberFormatter.ts","packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/useCollator.ts","packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/useFilter.ts","packages/@react-aria/i18n/src/packages/@react-aria/i18n/src/index.ts","packages/@react-aria/i18n/src/index.ts"],"sourcesContent":[null,null,null,null,null,null,null,null,null,null,"/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport {I18nProvider, useLocale} from './context';\nexport {useMessageFormatter} from './useMessageFormatter';\nexport {useLocalizedStringFormatter} from './useLocalizedStringFormatter';\nexport {useDateFormatter} from './useDateFormatter';\nexport {useNumberFormatter} from './useNumberFormatter';\nexport {useCollator} from './useCollator';\nexport {useFilter} from './useFilter';\n\nexport type {FormatMessage} from './useMessageFormatter';\nexport type {I18nProviderProps} from './context';\nexport type {Locale} from './useDefaultLocale';\nexport type {LocalizedStrings} from '@internationalized/message';\nexport type {DateFormatterOptions} from './useDateFormatter';\nexport type {DateFormatter} from '@internationalized/date';\nexport type {Filter} from './useFilter';\n"],"names":[],"version":3,"file":"types.d.ts.map"}
@@ -0,0 +1,52 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.useMessageFormatter = useMessageFormatter;
7
+
8
+ var _message = require("@internationalized/message");
9
+
10
+ var _react = require("react");
11
+
12
+ var _ = require("../");
13
+
14
+ /*
15
+ * Copyright 2020 Adobe. All rights reserved.
16
+ * This file is licensed to you under the Apache License, Version 2.0 (the "License");
17
+ * you may not use this file except in compliance with the License. You may obtain a copy
18
+ * of the License at http://www.apache.org/licenses/LICENSE-2.0
19
+ *
20
+ * Unless required by applicable law or agreed to in writing, software distributed under
21
+ * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
22
+ * OF ANY KIND, either express or implied. See the License for the specific language
23
+ * governing permissions and limitations under the License.
24
+ */
25
+ const cache = new WeakMap();
26
+
27
+ function getCachedDictionary(strings) {
28
+ let dictionary = cache.get(strings);
29
+
30
+ if (!dictionary) {
31
+ dictionary = new _message.MessageDictionary(strings);
32
+ cache.set(strings, dictionary);
33
+ }
34
+
35
+ return dictionary;
36
+ }
37
+ /**
38
+ * Handles formatting ICU Message strings to create localized strings for the current locale.
39
+ * Automatically updates when the locale changes, and handles caching of messages for performance.
40
+ * @param strings - A mapping of languages to strings by key.
41
+ * @deprecated - use useLocalizedStringFormatter instead.
42
+ */
43
+
44
+
45
+ function useMessageFormatter(strings) {
46
+ let {
47
+ locale
48
+ } = (0, _.useLocale)();
49
+ let dictionary = (0, _react.useMemo)(() => getCachedDictionary(strings), [strings]);
50
+ let formatter = (0, _react.useMemo)(() => new _message.MessageFormatter(locale, dictionary), [locale, dictionary]);
51
+ return (0, _react.useCallback)((key, variables) => formatter.format(key, variables), [formatter]);
52
+ }
@@ -0,0 +1,42 @@
1
+ /*
2
+ * Copyright 2020 Adobe. All rights reserved.
3
+ * This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ * you may not use this file except in compliance with the License. You may obtain a copy
5
+ * of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ *
7
+ * Unless required by applicable law or agreed to in writing, software distributed under
8
+ * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ * OF ANY KIND, either express or implied. See the License for the specific language
10
+ * governing permissions and limitations under the License.
11
+ */
12
+ import { MessageDictionary, MessageFormatter } from '@internationalized/message';
13
+ import { useCallback, useMemo } from 'react';
14
+ import { useLocale } from '../';
15
+ const cache = new WeakMap();
16
+
17
+ function getCachedDictionary(strings) {
18
+ let dictionary = cache.get(strings);
19
+
20
+ if (!dictionary) {
21
+ dictionary = new MessageDictionary(strings);
22
+ cache.set(strings, dictionary);
23
+ }
24
+
25
+ return dictionary;
26
+ }
27
+ /**
28
+ * Handles formatting ICU Message strings to create localized strings for the current locale.
29
+ * Automatically updates when the locale changes, and handles caching of messages for performance.
30
+ * @param strings - A mapping of languages to strings by key.
31
+ * @deprecated - use useLocalizedStringFormatter instead.
32
+ */
33
+
34
+
35
+ export function useMessageFormatter(strings) {
36
+ let {
37
+ locale
38
+ } = useLocale();
39
+ let dictionary = useMemo(() => getCachedDictionary(strings), [strings]);
40
+ let formatter = useMemo(() => new MessageFormatter(locale, dictionary), [locale, dictionary]);
41
+ return useCallback((key, variables) => formatter.format(key, variables), [formatter]);
42
+ }
package/package.json CHANGED
@@ -1,12 +1,36 @@
1
1
  {
2
2
  "name": "@react-aria/i18n",
3
- "version": "3.4.0",
3
+ "version": "3.5.1",
4
4
  "description": "Spectrum UI components in React",
5
5
  "license": "Apache-2.0",
6
6
  "main": "dist/main.js",
7
7
  "module": "dist/module.js",
8
+ "real-main": "dist/real-main.js",
9
+ "real-module": "dist/real-module.js",
8
10
  "types": "dist/types.d.ts",
9
11
  "source": "src/index.ts",
12
+ "targets": {
13
+ "main": false,
14
+ "module": false,
15
+ "real-module": {
16
+ "outputFormat": "esmodule",
17
+ "isLibrary": true,
18
+ "includeNodeModules": false
19
+ },
20
+ "real-main": {
21
+ "outputFormat": "commonjs",
22
+ "isLibrary": true,
23
+ "includeNodeModules": false
24
+ }
25
+ },
26
+ "alias": {
27
+ "./src/useMessageFormatter.ts": false
28
+ },
29
+ "scripts": {
30
+ "build:module": "yarn babel --presets @babel/preset-typescript src/useMessageFormatter.ts -o dist/useMessageFormatter.module.js && cp src/main.js dist",
31
+ "build:cjs": "yarn babel --presets @babel/preset-typescript,@babel/preset-env src/useMessageFormatter.ts -o dist/useMessageFormatter.cjs.js && cp src/module.js dist",
32
+ "prepublishOnly": "yarn build:module && yarn build:cjs"
33
+ },
10
34
  "files": [
11
35
  "dist",
12
36
  "src"
@@ -18,12 +42,13 @@
18
42
  },
19
43
  "dependencies": {
20
44
  "@babel/runtime": "^7.6.2",
21
- "@internationalized/date": "3.0.0-rc.1",
22
- "@internationalized/message": "^3.0.7",
45
+ "@internationalized/date": "^3.0.1",
46
+ "@internationalized/message": "^3.0.9",
23
47
  "@internationalized/number": "^3.1.1",
24
- "@react-aria/ssr": "^3.2.0",
25
- "@react-aria/utils": "^3.13.0",
26
- "@react-types/shared": "^3.13.0"
48
+ "@internationalized/string": "^3.0.0",
49
+ "@react-aria/ssr": "^3.3.0",
50
+ "@react-aria/utils": "^3.13.2",
51
+ "@react-types/shared": "^3.14.0"
27
52
  },
28
53
  "peerDependencies": {
29
54
  "react": "^16.8.0 || ^17.0.0-rc.1 || ^18.0.0"
@@ -31,5 +56,5 @@
31
56
  "publishConfig": {
32
57
  "access": "public"
33
58
  },
34
- "gitHead": "8f921ec5094e7c2b3c301bcb6133372e35a2052b"
59
+ "gitHead": "2881dbd92afc62f55453fd740d2f663f6fd460ca"
35
60
  }
package/src/context.tsx CHANGED
@@ -14,7 +14,7 @@ import {isRTL} from './utils';
14
14
  import {Locale, useDefaultLocale} from './useDefaultLocale';
15
15
  import React, {ReactNode, useContext} from 'react';
16
16
 
17
- interface ProviderProps {
17
+ export interface I18nProviderProps {
18
18
  /** Contents that should have the locale applied. */
19
19
  children: ReactNode,
20
20
  /** The locale to apply to the children. */
@@ -26,7 +26,7 @@ const I18nContext = React.createContext<Locale>(null);
26
26
  /**
27
27
  * Provides the locale for the application to all child components.
28
28
  */
29
- export function I18nProvider(props: ProviderProps) {
29
+ export function I18nProvider(props: I18nProviderProps) {
30
30
  let {locale, children} = props;
31
31
  let defaultLocale = useDefaultLocale();
32
32
 
package/src/index.ts CHANGED
@@ -10,9 +10,18 @@
10
10
  * governing permissions and limitations under the License.
11
11
  */
12
12
 
13
- export * from './context';
14
- export * from './useMessageFormatter';
15
- export * from './useDateFormatter';
16
- export * from './useNumberFormatter';
17
- export * from './useCollator';
18
- export * from './useFilter';
13
+ export {I18nProvider, useLocale} from './context';
14
+ export {useMessageFormatter} from './useMessageFormatter';
15
+ export {useLocalizedStringFormatter} from './useLocalizedStringFormatter';
16
+ export {useDateFormatter} from './useDateFormatter';
17
+ export {useNumberFormatter} from './useNumberFormatter';
18
+ export {useCollator} from './useCollator';
19
+ export {useFilter} from './useFilter';
20
+
21
+ export type {FormatMessage} from './useMessageFormatter';
22
+ export type {I18nProviderProps} from './context';
23
+ export type {Locale} from './useDefaultLocale';
24
+ export type {LocalizedStrings} from '@internationalized/message';
25
+ export type {DateFormatterOptions} from './useDateFormatter';
26
+ export type {DateFormatter} from '@internationalized/date';
27
+ export type {Filter} from './useFilter';
package/src/main.js ADDED
@@ -0,0 +1,6 @@
1
+ // useMessageFormatter is deprecated, but has a large dependency on intl-messageformat
2
+ // that we want to avoid. If it is built into the same file as the rest of the package,
3
+ // it deopts tree shaking in Parcel even when unused. Instead, it is split into a separate
4
+ // file and re-exported here, which allows tree shaking to work properly.
5
+ module.exports = require('./real-main.js');
6
+ Object.defineProperties(module.exports, Object.getOwnPropertyDescriptors(require('./useMessageFormatter.cjs.js')));
package/src/module.js ADDED
@@ -0,0 +1,6 @@
1
+ // useMessageFormatter is deprecated, but has a large dependency on intl-messageformat
2
+ // that we want to avoid. If it is built into the same file as the rest of the package,
3
+ // it deopts tree shaking in Parcel even when unused. Instead, it is split into a separate
4
+ // file and re-exported here, which allows tree shaking to work properly.
5
+ export * from './real-module.js';
6
+ export * from './useMessageFormatter.module.js';
@@ -14,7 +14,7 @@ import {DateFormatter} from '@internationalized/date';
14
14
  import {useLocale} from './context';
15
15
  import {useMemo, useRef} from 'react';
16
16
 
17
- interface DateFormatterOptions extends Intl.DateTimeFormatOptions {
17
+ export interface DateFormatterOptions extends Intl.DateTimeFormatOptions {
18
18
  calendar?: string
19
19
  }
20
20
 
package/src/useFilter.ts CHANGED
@@ -12,7 +12,7 @@
12
12
 
13
13
  import {useCollator} from './useCollator';
14
14
 
15
- interface Filter {
15
+ export interface Filter {
16
16
  /** Returns whether a string starts with a given substring. */
17
17
  startsWith(string: string, substring: string): boolean,
18
18
  /** Returns whether a string ends with a given substring. */
@@ -0,0 +1,37 @@
1
+ /*
2
+ * Copyright 2022 Adobe. All rights reserved.
3
+ * This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
+ * you may not use this file except in compliance with the License. You may obtain a copy
5
+ * of the License at http://www.apache.org/licenses/LICENSE-2.0
6
+ *
7
+ * Unless required by applicable law or agreed to in writing, software distributed under
8
+ * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
+ * OF ANY KIND, either express or implied. See the License for the specific language
10
+ * governing permissions and limitations under the License.
11
+ */
12
+
13
+ import {LocalizedString, LocalizedStringDictionary, LocalizedStringFormatter, LocalizedStrings} from '@internationalized/string';
14
+ import {useLocale} from './context';
15
+ import {useMemo} from 'react';
16
+
17
+ const cache = new WeakMap();
18
+ function getCachedDictionary<K extends string, T extends LocalizedString>(strings: LocalizedStrings<K, T>): LocalizedStringDictionary<K, T> {
19
+ let dictionary = cache.get(strings);
20
+ if (!dictionary) {
21
+ dictionary = new LocalizedStringDictionary(strings);
22
+ cache.set(strings, dictionary);
23
+ }
24
+
25
+ return dictionary;
26
+ }
27
+
28
+ /**
29
+ * Provides localized string formatting for the current locale. Supports interpolating variables,
30
+ * selecting the correct pluralization, and formatting numbers. Automatically updates when the locale changes.
31
+ * @param strings - A mapping of languages to localized strings by key.
32
+ */
33
+ export function useLocalizedStringFormatter<K extends string = string, T extends LocalizedString = string>(strings: LocalizedStrings<K, T>): LocalizedStringFormatter<K, T> {
34
+ let {locale} = useLocale();
35
+ let dictionary = useMemo(() => getCachedDictionary(strings), [strings]);
36
+ return useMemo(() => new LocalizedStringFormatter(locale, dictionary), [locale, dictionary]);
37
+ }
@@ -12,7 +12,7 @@
12
12
 
13
13
  import {LocalizedStrings, MessageDictionary, MessageFormatter} from '@internationalized/message';
14
14
  import {useCallback, useMemo} from 'react';
15
- import {useLocale} from './context';
15
+ import {useLocale} from '../';
16
16
 
17
17
  export type FormatMessage = (key: string, variables?: {[key: string]: any}) => string;
18
18
 
@@ -31,6 +31,7 @@ function getCachedDictionary(strings: LocalizedStrings) {
31
31
  * Handles formatting ICU Message strings to create localized strings for the current locale.
32
32
  * Automatically updates when the locale changes, and handles caching of messages for performance.
33
33
  * @param strings - A mapping of languages to strings by key.
34
+ * @deprecated - use useLocalizedStringFormatter instead.
34
35
  */
35
36
  export function useMessageFormatter(strings: LocalizedStrings): FormatMessage {
36
37
  let {locale} = useLocale();
package/dist/main.js.map DELETED
@@ -1 +0,0 @@
1
- {"mappings":"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","sources":["packages/@react-aria/i18n/src/index.ts","packages/@react-aria/i18n/src/context.tsx","packages/@react-aria/i18n/src/utils.ts","packages/@react-aria/i18n/src/useDefaultLocale.ts","packages/@react-aria/i18n/src/useMessageFormatter.ts","packages/@react-aria/i18n/src/useDateFormatter.ts","packages/@react-aria/i18n/src/useNumberFormatter.ts","packages/@react-aria/i18n/src/useCollator.ts","packages/@react-aria/i18n/src/useFilter.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport * from './context';\nexport * from './useMessageFormatter';\nexport * from './useDateFormatter';\nexport * from './useNumberFormatter';\nexport * from './useCollator';\nexport * from './useFilter';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {isRTL} from './utils';\nimport {Locale, useDefaultLocale} from './useDefaultLocale';\nimport React, {ReactNode, useContext} from 'react';\n\ninterface ProviderProps {\n /** Contents that should have the locale applied. */\n children: ReactNode,\n /** The locale to apply to the children. */\n locale?: string\n}\n\nconst I18nContext = React.createContext<Locale>(null);\n\n/**\n * Provides the locale for the application to all child components.\n */\nexport function I18nProvider(props: ProviderProps) {\n let {locale, children} = props;\n let defaultLocale = useDefaultLocale();\n\n let value: Locale = locale ? {\n locale,\n direction: isRTL(locale) ? 'rtl' : 'ltr'\n } : defaultLocale;\n\n return (\n <I18nContext.Provider value={value}>\n {children}\n </I18nContext.Provider>\n );\n}\n\n/**\n * Returns the current locale and layout direction.\n */\nexport function useLocale(): Locale {\n let defaultLocale = useDefaultLocale();\n let context = useContext(I18nContext);\n return context || defaultLocale;\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n// https://en.wikipedia.org/wiki/Right-to-left\nconst RTL_SCRIPTS = new Set(['Arab', 'Syrc', 'Samr', 'Mand', 'Thaa', 'Mend', 'Nkoo', 'Adlm', 'Rohg', 'Hebr']);\nconst RTL_LANGS = new Set(['ae', 'ar', 'arc', 'bcc', 'bqi', 'ckb', 'dv', 'fa', 'glk', 'he', 'ku', 'mzn', 'nqo', 'pnb', 'ps', 'sd', 'ug', 'ur', 'yi']);\n\n/**\n * Determines if a locale is read right to left using [Intl.Locale]{@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale}.\n */\nexport function isRTL(locale: string) {\n // If the Intl.Locale API is available, use it to get the script for the locale.\n // This is more accurate than guessing by language, since languages can be written in multiple scripts.\n // @ts-ignore\n if (Intl.Locale) {\n // @ts-ignore\n let script = new Intl.Locale(locale).maximize().script;\n return RTL_SCRIPTS.has(script);\n }\n\n // If not, just guess by the language (first part of the locale)\n let lang = locale.split('-')[0];\n return RTL_LANGS.has(lang);\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {Direction} from '@react-types/shared';\nimport {isRTL} from './utils';\nimport {useEffect, useState} from 'react';\nimport {useIsSSR} from '@react-aria/ssr';\n\nexport interface Locale {\n /** The [BCP47](https://www.ietf.org/rfc/bcp/bcp47.txt) language code for the locale. */\n locale: string,\n /** The writing direction for the locale. */\n direction: Direction\n}\n\n/**\n * Gets the locale setting of the browser.\n */\nexport function getDefaultLocale(): Locale {\n // @ts-ignore\n let locale = (typeof navigator !== 'undefined' && (navigator.language || navigator.userLanguage)) || 'en-US';\n try {\n // @ts-ignore\n Intl.DateTimeFormat.supportedLocalesOf([locale]);\n } catch (_err) {\n locale = 'en-US';\n }\n return {\n locale,\n direction: isRTL(locale) ? 'rtl' : 'ltr'\n };\n}\n\nlet currentLocale = getDefaultLocale();\nlet listeners = new Set<(locale: Locale) => void>();\n\nfunction updateLocale() {\n currentLocale = getDefaultLocale();\n for (let listener of listeners) {\n listener(currentLocale);\n }\n}\n\n/**\n * Returns the current browser/system language, and updates when it changes.\n */\nexport function useDefaultLocale(): Locale {\n let isSSR = useIsSSR();\n let [defaultLocale, setDefaultLocale] = useState(currentLocale);\n\n useEffect(() => {\n if (listeners.size === 0) {\n window.addEventListener('languagechange', updateLocale);\n }\n\n listeners.add(setDefaultLocale);\n\n return () => {\n listeners.delete(setDefaultLocale);\n if (listeners.size === 0) {\n window.removeEventListener('languagechange', updateLocale);\n }\n };\n }, []);\n\n // We cannot determine the browser's language on the server, so default to\n // en-US. This will be updated after hydration on the client to the correct value.\n if (isSSR) {\n return {\n locale: 'en-US',\n direction: 'ltr'\n };\n }\n\n return defaultLocale;\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {LocalizedStrings, MessageDictionary, MessageFormatter} from '@internationalized/message';\nimport {useCallback, useMemo} from 'react';\nimport {useLocale} from './context';\n\nexport type FormatMessage = (key: string, variables?: {[key: string]: any}) => string;\n\nconst cache = new WeakMap();\nfunction getCachedDictionary(strings: LocalizedStrings) {\n let dictionary = cache.get(strings);\n if (!dictionary) {\n dictionary = new MessageDictionary(strings);\n cache.set(strings, dictionary);\n }\n\n return dictionary;\n}\n\n/**\n * Handles formatting ICU Message strings to create localized strings for the current locale.\n * Automatically updates when the locale changes, and handles caching of messages for performance.\n * @param strings - A mapping of languages to strings by key.\n */\nexport function useMessageFormatter(strings: LocalizedStrings): FormatMessage {\n let {locale} = useLocale();\n let dictionary = useMemo(() => getCachedDictionary(strings), [strings]);\n let formatter = useMemo(() => new MessageFormatter(locale, dictionary), [locale, dictionary]);\n return useCallback((key, variables) => formatter.format(key, variables), [formatter]);\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {DateFormatter} from '@internationalized/date';\nimport {useLocale} from './context';\nimport {useMemo, useRef} from 'react';\n\ninterface DateFormatterOptions extends Intl.DateTimeFormatOptions {\n calendar?: string\n}\n\n/**\n * Provides localized date formatting for the current locale. Automatically updates when the locale changes,\n * and handles caching of the date formatter for performance.\n * @param options - Formatting options.\n */\nexport function useDateFormatter(options?: DateFormatterOptions): DateFormatter {\n // Reuse last options object if it is shallowly equal, which allows the useMemo result to also be reused.\n let lastOptions = useRef(null);\n if (options && lastOptions.current && isEqual(options, lastOptions.current)) {\n options = lastOptions.current;\n }\n\n lastOptions.current = options;\n\n let {locale} = useLocale();\n return useMemo(() => new DateFormatter(locale, options), [locale, options]);\n}\n\nfunction isEqual(a: DateFormatterOptions, b: DateFormatterOptions) {\n if (a === b) {\n return true;\n }\n\n let aKeys = Object.keys(a);\n let bKeys = Object.keys(b);\n if (aKeys.length !== bKeys.length) {\n return false;\n }\n\n for (let key of aKeys) {\n if (b[key] !== a[key]) {\n return false;\n }\n }\n\n return true;\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {NumberFormatOptions, NumberFormatter} from '@internationalized/number';\nimport {useLocale} from './context';\nimport {useMemo} from 'react';\n\n/**\n * Provides localized number formatting for the current locale. Automatically updates when the locale changes,\n * and handles caching of the number formatter for performance.\n * @param options - Formatting options.\n */\nexport function useNumberFormatter(options: NumberFormatOptions = {}): Intl.NumberFormat {\n let {locale} = useLocale();\n return useMemo(() => new NumberFormatter(locale, options), [locale, options]);\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {useLocale} from './context';\n\nlet cache = new Map<string, Intl.Collator>();\n\n/**\n * Provides localized string collation for the current locale. Automatically updates when the locale changes,\n * and handles caching of the collator for performance.\n * @param options - Collator options.\n */\nexport function useCollator(options?: Intl.CollatorOptions): Intl.Collator {\n let {locale} = useLocale();\n\n let cacheKey = locale + (options ? Object.entries(options).sort((a, b) => a[0] < b[0] ? -1 : 1).join() : '');\n if (cache.has(cacheKey)) {\n return cache.get(cacheKey);\n }\n\n let formatter = new Intl.Collator(locale, options);\n cache.set(cacheKey, formatter);\n return formatter;\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {useCollator} from './useCollator';\n\ninterface Filter {\n /** Returns whether a string starts with a given substring. */\n startsWith(string: string, substring: string): boolean,\n /** Returns whether a string ends with a given substring. */\n endsWith(string: string, substring: string): boolean,\n /** Returns whether a string contains a given substring. */\n contains(string: string, substring: string): boolean\n}\n\n/**\n * Provides localized string search functionality that is useful for filtering or matching items\n * in a list. Options can be provided to adjust the sensitivity to case, diacritics, and other parameters.\n */\nexport function useFilter(options?: Intl.CollatorOptions): Filter {\n let collator = useCollator({\n usage: 'search',\n ...options\n });\n\n // TODO(later): these methods don't currently support the ignorePunctuation option.\n\n return {\n startsWith(string, substring) {\n if (substring.length === 0) {\n return true;\n }\n\n // Normalize both strings so we can slice safely\n // TODO: take into account the ignorePunctuation option as well...\n string = string.normalize('NFC');\n substring = substring.normalize('NFC');\n return collator.compare(string.slice(0, substring.length), substring) === 0;\n },\n endsWith(string, substring) {\n if (substring.length === 0) {\n return true;\n }\n\n string = string.normalize('NFC');\n substring = substring.normalize('NFC');\n return collator.compare(string.slice(-substring.length), substring) === 0;\n },\n contains(string, substring) {\n if (substring.length === 0) {\n return true;\n }\n\n string = string.normalize('NFC');\n substring = substring.normalize('NFC');\n\n let scan = 0;\n let sliceLen = substring.length;\n for (; scan + sliceLen <= string.length; scan++) {\n let slice = string.slice(scan, scan + sliceLen);\n if (collator.compare(substring, slice) === 0) {\n return true;\n }\n }\n\n return false;\n }\n };\n}\n"],"names":[],"version":3,"file":"main.js.map"}
@@ -1 +0,0 @@
1
- {"mappings":"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","sources":["packages/@react-aria/i18n/src/index.ts","packages/@react-aria/i18n/src/context.tsx","packages/@react-aria/i18n/src/utils.ts","packages/@react-aria/i18n/src/useDefaultLocale.ts","packages/@react-aria/i18n/src/useMessageFormatter.ts","packages/@react-aria/i18n/src/useDateFormatter.ts","packages/@react-aria/i18n/src/useNumberFormatter.ts","packages/@react-aria/i18n/src/useCollator.ts","packages/@react-aria/i18n/src/useFilter.ts"],"sourcesContent":["/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nexport * from './context';\nexport * from './useMessageFormatter';\nexport * from './useDateFormatter';\nexport * from './useNumberFormatter';\nexport * from './useCollator';\nexport * from './useFilter';\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {isRTL} from './utils';\nimport {Locale, useDefaultLocale} from './useDefaultLocale';\nimport React, {ReactNode, useContext} from 'react';\n\ninterface ProviderProps {\n /** Contents that should have the locale applied. */\n children: ReactNode,\n /** The locale to apply to the children. */\n locale?: string\n}\n\nconst I18nContext = React.createContext<Locale>(null);\n\n/**\n * Provides the locale for the application to all child components.\n */\nexport function I18nProvider(props: ProviderProps) {\n let {locale, children} = props;\n let defaultLocale = useDefaultLocale();\n\n let value: Locale = locale ? {\n locale,\n direction: isRTL(locale) ? 'rtl' : 'ltr'\n } : defaultLocale;\n\n return (\n <I18nContext.Provider value={value}>\n {children}\n </I18nContext.Provider>\n );\n}\n\n/**\n * Returns the current locale and layout direction.\n */\nexport function useLocale(): Locale {\n let defaultLocale = useDefaultLocale();\n let context = useContext(I18nContext);\n return context || defaultLocale;\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\n// https://en.wikipedia.org/wiki/Right-to-left\nconst RTL_SCRIPTS = new Set(['Arab', 'Syrc', 'Samr', 'Mand', 'Thaa', 'Mend', 'Nkoo', 'Adlm', 'Rohg', 'Hebr']);\nconst RTL_LANGS = new Set(['ae', 'ar', 'arc', 'bcc', 'bqi', 'ckb', 'dv', 'fa', 'glk', 'he', 'ku', 'mzn', 'nqo', 'pnb', 'ps', 'sd', 'ug', 'ur', 'yi']);\n\n/**\n * Determines if a locale is read right to left using [Intl.Locale]{@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale}.\n */\nexport function isRTL(locale: string) {\n // If the Intl.Locale API is available, use it to get the script for the locale.\n // This is more accurate than guessing by language, since languages can be written in multiple scripts.\n // @ts-ignore\n if (Intl.Locale) {\n // @ts-ignore\n let script = new Intl.Locale(locale).maximize().script;\n return RTL_SCRIPTS.has(script);\n }\n\n // If not, just guess by the language (first part of the locale)\n let lang = locale.split('-')[0];\n return RTL_LANGS.has(lang);\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {Direction} from '@react-types/shared';\nimport {isRTL} from './utils';\nimport {useEffect, useState} from 'react';\nimport {useIsSSR} from '@react-aria/ssr';\n\nexport interface Locale {\n /** The [BCP47](https://www.ietf.org/rfc/bcp/bcp47.txt) language code for the locale. */\n locale: string,\n /** The writing direction for the locale. */\n direction: Direction\n}\n\n/**\n * Gets the locale setting of the browser.\n */\nexport function getDefaultLocale(): Locale {\n // @ts-ignore\n let locale = (typeof navigator !== 'undefined' && (navigator.language || navigator.userLanguage)) || 'en-US';\n try {\n // @ts-ignore\n Intl.DateTimeFormat.supportedLocalesOf([locale]);\n } catch (_err) {\n locale = 'en-US';\n }\n return {\n locale,\n direction: isRTL(locale) ? 'rtl' : 'ltr'\n };\n}\n\nlet currentLocale = getDefaultLocale();\nlet listeners = new Set<(locale: Locale) => void>();\n\nfunction updateLocale() {\n currentLocale = getDefaultLocale();\n for (let listener of listeners) {\n listener(currentLocale);\n }\n}\n\n/**\n * Returns the current browser/system language, and updates when it changes.\n */\nexport function useDefaultLocale(): Locale {\n let isSSR = useIsSSR();\n let [defaultLocale, setDefaultLocale] = useState(currentLocale);\n\n useEffect(() => {\n if (listeners.size === 0) {\n window.addEventListener('languagechange', updateLocale);\n }\n\n listeners.add(setDefaultLocale);\n\n return () => {\n listeners.delete(setDefaultLocale);\n if (listeners.size === 0) {\n window.removeEventListener('languagechange', updateLocale);\n }\n };\n }, []);\n\n // We cannot determine the browser's language on the server, so default to\n // en-US. This will be updated after hydration on the client to the correct value.\n if (isSSR) {\n return {\n locale: 'en-US',\n direction: 'ltr'\n };\n }\n\n return defaultLocale;\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {LocalizedStrings, MessageDictionary, MessageFormatter} from '@internationalized/message';\nimport {useCallback, useMemo} from 'react';\nimport {useLocale} from './context';\n\nexport type FormatMessage = (key: string, variables?: {[key: string]: any}) => string;\n\nconst cache = new WeakMap();\nfunction getCachedDictionary(strings: LocalizedStrings) {\n let dictionary = cache.get(strings);\n if (!dictionary) {\n dictionary = new MessageDictionary(strings);\n cache.set(strings, dictionary);\n }\n\n return dictionary;\n}\n\n/**\n * Handles formatting ICU Message strings to create localized strings for the current locale.\n * Automatically updates when the locale changes, and handles caching of messages for performance.\n * @param strings - A mapping of languages to strings by key.\n */\nexport function useMessageFormatter(strings: LocalizedStrings): FormatMessage {\n let {locale} = useLocale();\n let dictionary = useMemo(() => getCachedDictionary(strings), [strings]);\n let formatter = useMemo(() => new MessageFormatter(locale, dictionary), [locale, dictionary]);\n return useCallback((key, variables) => formatter.format(key, variables), [formatter]);\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {DateFormatter} from '@internationalized/date';\nimport {useLocale} from './context';\nimport {useMemo, useRef} from 'react';\n\ninterface DateFormatterOptions extends Intl.DateTimeFormatOptions {\n calendar?: string\n}\n\n/**\n * Provides localized date formatting for the current locale. Automatically updates when the locale changes,\n * and handles caching of the date formatter for performance.\n * @param options - Formatting options.\n */\nexport function useDateFormatter(options?: DateFormatterOptions): DateFormatter {\n // Reuse last options object if it is shallowly equal, which allows the useMemo result to also be reused.\n let lastOptions = useRef(null);\n if (options && lastOptions.current && isEqual(options, lastOptions.current)) {\n options = lastOptions.current;\n }\n\n lastOptions.current = options;\n\n let {locale} = useLocale();\n return useMemo(() => new DateFormatter(locale, options), [locale, options]);\n}\n\nfunction isEqual(a: DateFormatterOptions, b: DateFormatterOptions) {\n if (a === b) {\n return true;\n }\n\n let aKeys = Object.keys(a);\n let bKeys = Object.keys(b);\n if (aKeys.length !== bKeys.length) {\n return false;\n }\n\n for (let key of aKeys) {\n if (b[key] !== a[key]) {\n return false;\n }\n }\n\n return true;\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {NumberFormatOptions, NumberFormatter} from '@internationalized/number';\nimport {useLocale} from './context';\nimport {useMemo} from 'react';\n\n/**\n * Provides localized number formatting for the current locale. Automatically updates when the locale changes,\n * and handles caching of the number formatter for performance.\n * @param options - Formatting options.\n */\nexport function useNumberFormatter(options: NumberFormatOptions = {}): Intl.NumberFormat {\n let {locale} = useLocale();\n return useMemo(() => new NumberFormatter(locale, options), [locale, options]);\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {useLocale} from './context';\n\nlet cache = new Map<string, Intl.Collator>();\n\n/**\n * Provides localized string collation for the current locale. Automatically updates when the locale changes,\n * and handles caching of the collator for performance.\n * @param options - Collator options.\n */\nexport function useCollator(options?: Intl.CollatorOptions): Intl.Collator {\n let {locale} = useLocale();\n\n let cacheKey = locale + (options ? Object.entries(options).sort((a, b) => a[0] < b[0] ? -1 : 1).join() : '');\n if (cache.has(cacheKey)) {\n return cache.get(cacheKey);\n }\n\n let formatter = new Intl.Collator(locale, options);\n cache.set(cacheKey, formatter);\n return formatter;\n}\n","/*\n * Copyright 2020 Adobe. All rights reserved.\n * This file is licensed to you under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License. You may obtain a copy\n * of the License at http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software distributed under\n * the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS\n * OF ANY KIND, either express or implied. See the License for the specific language\n * governing permissions and limitations under the License.\n */\n\nimport {useCollator} from './useCollator';\n\ninterface Filter {\n /** Returns whether a string starts with a given substring. */\n startsWith(string: string, substring: string): boolean,\n /** Returns whether a string ends with a given substring. */\n endsWith(string: string, substring: string): boolean,\n /** Returns whether a string contains a given substring. */\n contains(string: string, substring: string): boolean\n}\n\n/**\n * Provides localized string search functionality that is useful for filtering or matching items\n * in a list. Options can be provided to adjust the sensitivity to case, diacritics, and other parameters.\n */\nexport function useFilter(options?: Intl.CollatorOptions): Filter {\n let collator = useCollator({\n usage: 'search',\n ...options\n });\n\n // TODO(later): these methods don't currently support the ignorePunctuation option.\n\n return {\n startsWith(string, substring) {\n if (substring.length === 0) {\n return true;\n }\n\n // Normalize both strings so we can slice safely\n // TODO: take into account the ignorePunctuation option as well...\n string = string.normalize('NFC');\n substring = substring.normalize('NFC');\n return collator.compare(string.slice(0, substring.length), substring) === 0;\n },\n endsWith(string, substring) {\n if (substring.length === 0) {\n return true;\n }\n\n string = string.normalize('NFC');\n substring = substring.normalize('NFC');\n return collator.compare(string.slice(-substring.length), substring) === 0;\n },\n contains(string, substring) {\n if (substring.length === 0) {\n return true;\n }\n\n string = string.normalize('NFC');\n substring = substring.normalize('NFC');\n\n let scan = 0;\n let sliceLen = substring.length;\n for (; scan + sliceLen <= string.length; scan++) {\n let slice = string.slice(scan, scan + sliceLen);\n if (collator.compare(substring, slice) === 0) {\n return true;\n }\n }\n\n return false;\n }\n };\n}\n"],"names":[],"version":3,"file":"module.js.map"}