Coder Social home page Coder Social logo

Comments (13)

littledan avatar littledan commented on September 23, 2024 1

@zbraniecki Oh thanks for explaining, my mistake. Agree that baseName sounds better then.

from proposal-intl-locale.

zbraniecki avatar zbraniecki commented on September 23, 2024

What do we do with -t- section? There is only value, no key (as in it-t-ja)
What happens with -x- key-values? Esp. if they match names in -u-?

The way we decided to approach it is that we will preserve the -t- and -x- but you can't retrieve or set them via the options.

So:

let loc = new Intl.Locale("sr-Cyrl-u-hc-h24-x-foo", {
  calendar: "gregory"
});
loc.calendar; // "gregory"
loc.locale; // "sr-Cyrl"
loc.hourCycle; // "h24"
loc.toString(); // "sr-Cyrl-u-ca-gregory-hc-h24-x-foo"

Wrt. the second:

let loc = new Intl.Locale("sr-u-ca-buddhist", {
  calendar: 'gregory'
});
console.log(loc.locale); // "sr"
console.log(loc.calendar); // "gregory" - options override lang tag
console.log(loc.toString()); // "sr-u-ca-gregory"

Does it seem reasonable to you?

from proposal-intl-locale.

zbraniecki avatar zbraniecki commented on September 23, 2024

Hmm, also, IIRC we don't have a locale getter. We have language, script, region.

I'm not sure if Locale.prototype.locale makes sense as a name, especially if it strips extension keys, but I understand the value of a getter that returns just language/script/region/variants without extension keys. That would be a new addition to the spec tho.

from proposal-intl-locale.

nciric avatar nciric commented on September 23, 2024

@zbraniecki I am somewhat confused then.

Is loc.locale just a language tag then (sr, no script or region)? Or is loc.locale equivalent of getBaseName in ICU (language, script and region)?

I see it represents both in your example.

To clarify:

let loc = new Intl.Locale('sr-Cyrl-RS-u-hc-h24');
loc.locale; // sr-Cyrl-RS or sr?
loc.region; // RS or does this getter exist?

from proposal-intl-locale.

zbraniecki avatar zbraniecki commented on September 23, 2024

@nciric - my examples above are just filled-in copies of your examples.

In the proposal, we have a field language which is sr, and we do not have a field locale.

from proposal-intl-locale.

nciric avatar nciric commented on September 23, 2024

@zbraniecki I actually copied them from main proposal page, where locale exists. Maybe we need to fix that:

let loc = new Intl.Locale("pl-u-hc-h12", {
  calendar: 'gregory'
});
console.log(loc.locale); // "pl"
console.log(loc.hourCycle); // "h12"
console.log(loc.calendar); // "gregory"
console.log(loc.toString()); // "pl-u-ca-gregory-hc-h12"

But, ok, locale is actually toString in our case. For v2 we may need baseName property, which is locale without extensions.

from proposal-intl-locale.

zbraniecki avatar zbraniecki commented on September 23, 2024

I actually copied them from main proposal page, where locale exists. Maybe we need to fix that:

Definitely! It should be language :)

For v2 we may need baseName property, which is locale without extensions.

+1

from proposal-intl-locale.

littledan avatar littledan commented on September 23, 2024

The lack of a locale getter (which would omit extension keys) is an accidental omission. I was picturing that we would have it, and presented slide decks to the committee including it. The name locale rather than baseName might be better because it is parallel to resolvedOptions, which is a general design goal here. I'm thinking we should make a patch for this now.

For transforms, I share @zbraniecki's understanding in #22 (comment) . Do you have any concerns about whether the specification text does this?

from proposal-intl-locale.

littledan avatar littledan commented on September 23, 2024

Apologies, much of the logic here was in a PR that I forgot to merge until now. #21

from proposal-intl-locale.

nciric avatar nciric commented on September 23, 2024

@littledan locale sounds fine. It would be defined as base name of input locale, without extensions, after canonicalization.

from proposal-intl-locale.

zbraniecki avatar zbraniecki commented on September 23, 2024

I think I prefer Locale.baseName over Locale.locale because that means that locale term has two meanings - as a class/API it contains extensions, and as a property/getter it specifically means the Locale without extensions.

from proposal-intl-locale.

littledan avatar littledan commented on September 23, 2024

@zbraniecki What do you think about the usage of locale in resolvedOptions which we will not be able to change?

from proposal-intl-locale.

zbraniecki avatar zbraniecki commented on September 23, 2024

@littledan locale in ResolvedOptions is exactly the same as Locale.prototype.toString():

(new Intl.DateTimeFormat("en-US-u-ca-gregory")).resolvedOptions().locale; // "en-US-u-ca-gregory

What @nciric suggested is (new Locale("en-US-u-ca-gregory")).locale; // "en-US" I believe which would be inconsistent

from proposal-intl-locale.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.