Giter Club home page Giter Club logo

Comments (8)

mbappai avatar mbappai commented on August 18, 2024 1

Hey, @mujeex did you manage to solve your issue with this? I'm facing the same thing at the moment with WordPress.

Hey Mike! Sorry for the late response. Sorry again, but I never managed to finish localizing that project. I just ended up using english, as other languages were not a priority at the time.

from gatsby-plugin-intl.

flocbit avatar flocbit commented on August 18, 2024

One way to use the currently selected language to load content from a CMS is to use injectIntl HOC and read locale (current language) from props.intl.

from gatsby-plugin-intl.

mbappai avatar mbappai commented on August 18, 2024

One way to use the currently selected language to load content from a CMS is to use injectIntl HOC and read locale (current language) from props.intl.

Thank you very much for your reply. Do you still think the injectIntl HOC is still a thing in the v3 or react-intl?

from gatsby-plugin-intl.

flocbit avatar flocbit commented on August 18, 2024

gatsby-plugin-intl currently does not support react-intl v3 so for now this is the proposed way I guess ;)

from gatsby-plugin-intl.

mbappai avatar mbappai commented on August 18, 2024

gatsby-plugin-intl currently does not support react-intl v3 so for now this is the proposed way I guess ;)

Yeah, I understand. I am, however, finding it a bit difficult to think of a way to switch the language based on the props.intl from the injectIntl HOC you suggested. Were you suggesting that I query both locales from my CMS at the same time then have like a condition to switch the locales based on the props.intl? Will that work?

from gatsby-plugin-intl.

flocbit avatar flocbit commented on August 18, 2024

That depends on the CMS you use. I would try to append the language code to the API call when loading data from your CMS.

from gatsby-plugin-intl.

mbappai avatar mbappai commented on August 18, 2024

Using contentful, I was thinking about having my query like this.

export const query =graphql`
{
    site {
        siteMetadata {
          languages {
            defaultLangKey
            langs
          }
        }
      }
 chineseSpace:allContentfulWorkspace(filter: {node_locale: {eq: "zh-CN"}}) {
    edges {
      node {
        id
        slug
        price
        duration
        name
        node_locale
        shortDescription {
          shortDescription
        }
        thumbnail{
          fluid{
            ...GatsbyContentfulFluid
        }
        }
      }
    }
  }
  englishSpace:allContentfulWorkspace(filter: {node_locale: {eq: "en-US"}}) {
    edges {
      node {
        id
        slug
        price
        duration
        name
        node_locale
        shortDescription {
          shortDescription
        }
        thumbnail{
          fluid{
            ...GatsbyContentfulFluid
        }
        }
      }
    }
  }
  }`

Then i'll later use a condition like follows

const data= props.intl==='en-US'?englishSpace:chineseSpace;

What do you think about this?

from gatsby-plugin-intl.

mikexavier avatar mikexavier commented on August 18, 2024

Hey, @mujeex did you manage to solve your issue with this? I'm facing the same thing at the moment with WordPress.

from gatsby-plugin-intl.

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.