Git Product home page Git Product logo

Comments (3)

JCQuintas avatar JCQuintas commented on June 6, 2024 1

@rherwig is correct here. I thought this was documented, but it seems it isn't.

All the types/functions should be properly documented in code though, so if you are using a typescript capable editor it should pick it up. I'll try to add it to the docs when I get more time.

Feel free to add it yourself as well if you want. :)

from ni18n.

rherwig avatar rherwig commented on June 6, 2024

@aabmets A use case I know of is to switch the language via a dropdown.

export default function TheLanguageSwitch() {
    const { i18n } = useSyncLanguage();

    const dropdownItems = [
        {
            value: 'de',
            text: 'DE',
        },
        {
            value: 'en',
            text: 'EN',
        },
    ];

    const handleChange = (value: string) => {
        i18n.changeLanguage(value);
    };

    return (
        <Dropdown
            items={dropdownItems}
            value="de"
            handleChange={handleChange}
        />
    );
}

from ni18n.

proustibat avatar proustibat commented on June 6, 2024

Hi @JCQuintas,
I added an example in the PR, you can have a look if you want to see if it matches your expectations. Please be kind, I'm not used to contributing a lot ^^

from ni18n.

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.