summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS
diff options
context:
space:
mode:
authorTimothy Flynn <trflynn89@pm.me>2021-11-13 10:15:33 -0500
committerLinus Groh <mail@linusgroh.de>2021-11-13 19:01:25 +0000
commitc65dea64bd9adaef6955981c5f633cca485218aa (patch)
tree989e7f31f9c2e521152f80ade1a772d2740573af /Userland/Libraries/LibJS
parentd872d030f128937dc839fc5e3682fe2ab87a7907 (diff)
downloadserenity-c65dea64bd9adaef6955981c5f633cca485218aa.zip
LibJS+LibUnicode: Don't remove {currency} keys in GetNumberFormatPattern
In order to implement Intl.NumberFormat.prototype.formatToParts, do not replace {currency} keys in the format pattern before ECMA-402 tells us to. Otherwise, the array return by formatToParts will not contain the expected currency key. Early replacement was done to avoid resolving the currency display more than once, as it involves a couple of round trips to search through LibUnicode data. So this adds a non-standard method to NumberFormat to do this resolution and cache the result. Another side effect of this change is that LibUnicode must replace unit format patterns of the form "{0} {1}" during code generation. These were previously skipped during code generation because LibJS would just replace the keys with the currency display at runtime. But now that the currency display injection is delayed, any {0} or {1} keys in the format pattern will cause PartitionNumberPattern to abort.
Diffstat (limited to 'Userland/Libraries/LibJS')
-rw-r--r--Userland/Libraries/LibJS/Runtime/Intl/NumberFormat.cpp68
-rw-r--r--Userland/Libraries/LibJS/Runtime/Intl/NumberFormat.h4
2 files changed, 43 insertions, 29 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Intl/NumberFormat.cpp b/Userland/Libraries/LibJS/Runtime/Intl/NumberFormat.cpp
index ad5831e949..a28152f347 100644
--- a/Userland/Libraries/LibJS/Runtime/Intl/NumberFormat.cpp
+++ b/Userland/Libraries/LibJS/Runtime/Intl/NumberFormat.cpp
@@ -68,6 +68,8 @@ StringView NumberFormat::style_string() const
void NumberFormat::set_currency_display(StringView currency_display)
{
+ m_resolved_currency_display.clear();
+
if (currency_display == "code"sv)
m_currency_display = CurrencyDisplay::Code;
else if (currency_display == "symbol"sv)
@@ -80,6 +82,34 @@ void NumberFormat::set_currency_display(StringView currency_display)
VERIFY_NOT_REACHED();
}
+StringView NumberFormat::resolve_currency_display()
+{
+ if (m_resolved_currency_display.has_value())
+ return *m_resolved_currency_display;
+
+ switch (currency_display()) {
+ case NumberFormat::CurrencyDisplay::Code:
+ m_resolved_currency_display = currency();
+ break;
+ case NumberFormat::CurrencyDisplay::Symbol:
+ m_resolved_currency_display = Unicode::get_locale_currency_mapping(data_locale(), currency(), Unicode::Style::Short);
+ break;
+ case NumberFormat::CurrencyDisplay::NarrowSymbol:
+ m_resolved_currency_display = Unicode::get_locale_currency_mapping(data_locale(), currency(), Unicode::Style::Narrow);
+ break;
+ case NumberFormat::CurrencyDisplay::Name:
+ m_resolved_currency_display = Unicode::get_locale_currency_mapping(data_locale(), currency(), Unicode::Style::Numeric);
+ break;
+ default:
+ VERIFY_NOT_REACHED();
+ }
+
+ if (!m_resolved_currency_display.has_value())
+ m_resolved_currency_display = currency();
+
+ return *m_resolved_currency_display;
+}
+
StringView NumberFormat::currency_display_string() const
{
VERIFY(m_currency_display.has_value());
@@ -664,8 +694,12 @@ Vector<PatternPartition> partition_number_pattern(NumberFormat& number_format, d
// j. Else if p is equal to "currencyPrefix" and numberFormat.[[Style]] is "currency", then
// k. Else if p is equal to "currencySuffix" and numberFormat.[[Style]] is "currency", then
//
- // Note: Our implementation formats currency codes during GetNumberFormatPattern so that we
- // do not have to do currency display / plurality lookups more than once.
+ // Note: Our implementation manipulates the format string to inject/remove spacing around the
+ // currency code during GetNumberFormatPattern so that we do not have to do currency
+ // display / plurality lookups more than once.
+ else if ((part == "currency"sv) && (number_format.style() == NumberFormat::Style::Currency)) {
+ result.append({ "currency"sv, number_format.resolve_currency_display() });
+ }
// l. Else,
else {
@@ -1323,33 +1357,9 @@ Optional<Variant<StringView, String>> get_number_format_pattern(NumberFormat& nu
// we might need to mutate the format pattern to inject a space between the currency display and
// the currency number.
if (number_format.style() == NumberFormat::Style::Currency) {
- if (number_format.currency_display() == NumberFormat::CurrencyDisplay::Name) {
- auto maybe_currency_display = Unicode::get_locale_currency_mapping(number_format.data_locale(), number_format.currency(), Unicode::Style::Numeric);
- auto currency_display = maybe_currency_display.value_or(number_format.currency());
-
- return pattern.replace("{0}"sv, "{number}"sv).replace("{1}"sv, currency_display);
- }
-
- Optional<StringView> currency_display;
-
- switch (number_format.currency_display()) {
- case NumberFormat::CurrencyDisplay::Code:
- currency_display = number_format.currency();
- break;
- case NumberFormat::CurrencyDisplay::Symbol:
- currency_display = Unicode::get_locale_currency_mapping(number_format.data_locale(), number_format.currency(), Unicode::Style::Short);
- break;
- case NumberFormat::CurrencyDisplay::NarrowSymbol:
- currency_display = Unicode::get_locale_currency_mapping(number_format.data_locale(), number_format.currency(), Unicode::Style::Narrow);
- break;
- default:
- VERIFY_NOT_REACHED();
- }
-
- if (!currency_display.has_value())
- currency_display = number_format.currency();
-
- return Unicode::create_currency_format_pattern(*currency_display, pattern);
+ auto modified_pattern = Unicode::augment_currency_format_pattern(number_format.resolve_currency_display(), pattern);
+ if (modified_pattern.has_value())
+ return modified_pattern.release_value();
}
// 16. Return pattern.
diff --git a/Userland/Libraries/LibJS/Runtime/Intl/NumberFormat.h b/Userland/Libraries/LibJS/Runtime/Intl/NumberFormat.h
index 32719d63a3..62a90fdb63 100644
--- a/Userland/Libraries/LibJS/Runtime/Intl/NumberFormat.h
+++ b/Userland/Libraries/LibJS/Runtime/Intl/NumberFormat.h
@@ -97,6 +97,7 @@ public:
CurrencyDisplay currency_display() const { return *m_currency_display; }
StringView currency_display_string() const;
void set_currency_display(StringView currency_display);
+ StringView resolve_currency_display();
bool has_currency_sign() const { return m_currency_sign.has_value(); }
CurrencySign currency_sign() const { return *m_currency_sign; }
@@ -177,6 +178,9 @@ private:
Optional<CompactDisplay> m_compact_display {}; // [[CompactDisplay]]
SignDisplay m_sign_display { SignDisplay::Invalid }; // [[SignDisplay]]
NativeFunction* m_bound_format { nullptr }; // [[BoundFormat]]
+
+ // Non-standard. Stores the resolved currency display string based on [[Locale]], [[Currency]], and [[CurrencyDisplay]].
+ Optional<StringView> m_resolved_currency_display;
};
struct FormatResult {