Giter Site home page Giter Site logo

Comments (2)

ryandrewjohnson avatar ryandrewjohnson commented on August 12, 2024

The translate function is really meant to be used at the component level. How about instead of trying to pass the already translated copy to the component you instead just pass the translation keys to the component. That component would then just need access to translate, and then would use the provided keys.

Using your example:

export function downloadConfig(config: ConfigState, translate: Translate) {
  return function(dispatch: Function): Promise<void> {
    return ConfigApi.downloadConfig(config).then(resp  => {
      fileDownload(JSON.stringify(<ConfigState> resp.data, null, 2), "config.json");
    }).catch( error => {
      dispatch(showErrorDialog(
        'modal.error.connecting',
        error.message,
        ConfigApi.BASE_URL + JSON_URL));
    });
  };
}

Now your error dialog gets passed the modal.error.connecting translation key instead of the translated copy. Now you just need to ensure that your ErrorDialog component has access to translate, and then just use translate as per usual { translate('modal.error.connecting') }.

from react-localize-redux.

acerola1 avatar acerola1 commented on August 12, 2024

That was my first solution as well, but later on I have called the Error dialog with different patterns. It is hard to predict which property of the dialog I will use translate on and which one came from other parts of the application (eg. backend) without translate in the frontend side.
For example:

   dispatch(showErrorDialog(
      this.props.translate("new-topology.loading-error-title"),
      this.props.translate(`new-topology.${message1}`),
      message2 ? this.props.translate(`new-topology.${message2}`) : undefined
      )
    );

It is not that important just bugged me if I can found a neater solution. I had a little time to think about is between two projects. Thanks for your time.

from react-localize-redux.

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.