GithubHelp home page GithubHelp logo

Provide simple debug mode about fbt HOT 5 CLOSED

ansonlouis avatar ansonlouis commented on April 27, 2024
Provide simple debug mode

from fbt.

Comments (5)

pkqinys avatar pkqinys commented on April 27, 2024

I want to clarify your question. Are you asking for

  • the ability to add special flags in the translation(results of running yarn translate-fbts)
    OR
  • the ability to highlight translated/untranslated strings during runtime.

The latter is kind of supported if you are running in DEV mode:

if (__DEV__) {
if (!table && locale !== DEFAULT_SRC_LOCALE) {
console.warn('Translations have not been provided');
}
}

from fbt.

ansonlouis avatar ansonlouis commented on April 27, 2024

This would be runtime and would affect the output in the actual DOM (production = "My string", development = "[My string]"). This is just for an eyeball test to help catch bugs while developing and ensure necessary strings are being run through the library. If you have ideas on better ways to achieve this goal then that's certainly welcome.

from fbt.

pkqinys avatar pkqinys commented on April 27, 2024

This would be runtime and would affect the output in the actual DOM

Oh I see. You can indeed take advantage of the fbtInit() method.

FbtHooks.js declares a getTranslatedInput() method that determines how to get the final translated text. You can find its default implementation in FbtTranslations.js.

You pass into fbtInit()a custom implementation of getTranslatedInput() that:

  1. Looks up a string's translation.
  2. if the translation exists, wrap it in [] and return it.
  3. Otherwise return null (which will make the text show up as English string in the actual DOM)

from fbt.

ansonlouis avatar ansonlouis commented on April 27, 2024

Sweet thanks! We actually got it to work through a similar fashion

getFbtResult: result => {
    return new FbtResult(['[', ...result.contents, ']']);
}

Please comment if this approach would cause problems

from fbt.

pkqinys avatar pkqinys commented on April 27, 2024

I don't think that will work. result.contents could be translated string or English string, which means every UI string will show up inside a [] regardless whether it was translated

from fbt.

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.