Files
LF-lending/node_modules/@internationalized/string/dist/private/LocalizedStringFormatter.js

54 lines
2.4 KiB
JavaScript

/*
* Copyright 2022 Adobe. All rights reserved.
* This file is licensed to you under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. You may obtain a copy
* of the License at http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under
* the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
* OF ANY KIND, either express or implied. See the License for the specific language
* governing permissions and limitations under the License.
*/ const $1e8423fa4cde1500$var$pluralRulesCache = new Map();
const $1e8423fa4cde1500$var$numberFormatCache = new Map();
class $1e8423fa4cde1500$export$2f817fcdc4b89ae0 {
/** Formats a localized string for the given key with the provided variables. */ format(key, variables) {
let message = this.strings.getStringForLocale(key, this.locale);
return typeof message === 'function' ? message(variables, this) : message;
}
plural(count, options, type = 'cardinal') {
let opt = options['=' + count];
if (opt) return typeof opt === 'function' ? opt() : opt;
let key = this.locale + ':' + type;
let pluralRules = $1e8423fa4cde1500$var$pluralRulesCache.get(key);
if (!pluralRules) {
pluralRules = new Intl.PluralRules(this.locale, {
type: type
});
$1e8423fa4cde1500$var$pluralRulesCache.set(key, pluralRules);
}
let selected = pluralRules.select(count);
opt = options[selected] || options.other;
return typeof opt === 'function' ? opt() : opt;
}
number(value) {
let numberFormat = $1e8423fa4cde1500$var$numberFormatCache.get(this.locale);
if (!numberFormat) {
numberFormat = new Intl.NumberFormat(this.locale);
$1e8423fa4cde1500$var$numberFormatCache.set(this.locale, numberFormat);
}
return numberFormat.format(value);
}
select(options, value) {
let opt = options[value] || options.other;
return typeof opt === 'function' ? opt() : opt;
}
constructor(locale, strings){
this.locale = locale;
this.strings = strings;
}
}
export {$1e8423fa4cde1500$export$2f817fcdc4b89ae0 as LocalizedStringFormatter};
//# sourceMappingURL=LocalizedStringFormatter.js.map