-
-
Notifications
You must be signed in to change notification settings - Fork 632
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automatically generate i18n javascript files for react-intl when the …
…serve starts up
- Loading branch information
1 parent
a97e209
commit d277795
Showing
11 changed files
with
296 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
# How to add I18n | ||
|
||
Here's a summary of adding I18n functionality with React on Rails. | ||
|
||
You can refer to [react-webpack-rails-tutorial](https://github.com/shakacode/react-webpack-rails-tutorial) for a complete example. | ||
|
||
1. Add `react-intl` & `intl` to `client/package.json`, and remember to `bundle && npm install`. | ||
|
||
```js | ||
"dependencies": { | ||
... | ||
"intl": "^1.2.5", | ||
"react-intl": "^2.1.5", | ||
... | ||
} | ||
``` | ||
|
||
2. In `client/webpack.client.base.config.js`, set `react-intl` as an entry point. | ||
|
||
```js | ||
module.exports = { | ||
... | ||
entry: { | ||
... | ||
vendor: [ | ||
... | ||
'react-intl', | ||
], | ||
... | ||
``` | ||
3. `react-intl` requires locale files in json format. React on Rails will help you to generate or update `translations.js` & `default.js` automatically after you configured the following settings. | ||
> `translations.js`: All your locales in json format. | ||
> | ||
> `default.js`: Default settings in json format. | ||
> | ||
> You can add them to `.gitignore` and `.eslintignore`. | ||
Update settings in `config/initializers/react_on_rails.rb` to what you need: | ||
```ruby | ||
# Replace the following line to the location where you keep translation.js & default.js. | ||
config.i18n_dir = Rails.root.join("PATH_TO", "YOUR_JS_I18N_FOLDER") | ||
``` | ||
Add following lines to `config/application.rb`, this will help you to generate `translations.js` & `default.js` automatically when you starts the server. | ||
```js | ||
module YourModule | ||
class Application < Rails::Application | ||
... | ||
config.after_initialize do | ||
ReactOnRails::LocalesToJs.new | ||
end | ||
end | ||
end | ||
``` | ||
5. In React, you need to initialize `react-intl`, and set parameters for it. | ||
```js | ||
... | ||
import { addLocaleData } from 'react-intl'; | ||
import en from 'react-intl/locale-data/en'; | ||
import de from 'react-intl/locale-data/de'; | ||
import { translations } from 'path_to/i18n/translations'; | ||
import { defaultLocale } from 'path_to/i18n/default'; | ||
... | ||
// Initizalize all locales for react-intl. | ||
addLocaleData([...en, ...de]); | ||
... | ||
// set locale and messages for IntlProvider. | ||
const locale = method_to_get_current_locale() || defaultLocale; | ||
const messages = translations[locale]; | ||
... | ||
return ( | ||
<IntlProvider locale={locale} key={locale} messages={messages}> | ||
<CommentScreen {...{ actions, data }} /> | ||
</IntlProvider> | ||
) | ||
``` | ||
```js | ||
// In your component. | ||
import { defaultMessages } from 'path_to/i18n/default'; | ||
... | ||
return ( | ||
{ formatMessage(defaultMessages.yourLocaleKeyInCamelCase) } | ||
) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,119 @@ | ||
require "erb" | ||
|
||
module ReactOnRails | ||
class LocalesToJs | ||
def initialize | ||
return unless obsolete? | ||
@translations, @defaults = generate_translations | ||
convert | ||
end | ||
|
||
private | ||
|
||
def obsolete? | ||
return true if exist_js_files.empty? | ||
js_files_are_outdated | ||
end | ||
|
||
def exist_js_files | ||
@exist_js_files ||= js_files.select(&File.method(:exist?)) | ||
end | ||
|
||
def js_files_are_outdated | ||
latest_yml = locale_files.map(&File.method(:mtime)).max | ||
earliest_js = exist_js_files.map(&File.method(:mtime)).min | ||
latest_yml > earliest_js | ||
end | ||
|
||
def js_file_names | ||
%w(translations default) | ||
end | ||
|
||
def js_files | ||
@js_files ||= js_file_names.map { |n| js_file(n) } | ||
end | ||
|
||
def js_file(name) | ||
"#{i18n_dir}/#{name}.js" | ||
end | ||
|
||
def locale_files | ||
@locale_files ||= Rails.application.config.i18n.load_path | ||
end | ||
|
||
def i18n_dir | ||
@i18n_dir ||= ReactOnRails.configuration.i18n_dir | ||
end | ||
|
||
def default_locale | ||
@default_locale ||= I18n.default_locale.to_s || "en" | ||
end | ||
|
||
def convert | ||
js_file_names.each do |name| | ||
template = send("template_#{name}") | ||
path = js_file(name) | ||
generate_js_file(template, path) | ||
end | ||
end | ||
|
||
def generate_js_file(template, path) | ||
result = ERB.new(template).result() | ||
File.open(path, "w") do |f| | ||
f.write(result) | ||
end | ||
end | ||
|
||
def generate_translations | ||
translations = {} | ||
defaults = {} | ||
locale_files.each do |f| | ||
translation = YAML.load(File.open(f)) | ||
key = translation.keys[0] | ||
val = flatten(translation[key]) | ||
translations = translations.deep_merge(key => val) | ||
defaults = defaults.deep_merge(flatten_defaults(val)) if key == default_locale | ||
end | ||
[translations.to_json, defaults.to_json] | ||
end | ||
|
||
def format(input) | ||
input.to_s.tr(".", "_").camelize(:lower).to_sym | ||
end | ||
|
||
def flatten_defaults(val) | ||
flatten(val).each_with_object({}) do |(k, v), h| | ||
key = format(k) | ||
h[key] = { id: k, defaultMessage: v } | ||
end | ||
end | ||
|
||
def flatten(translations) | ||
translations.each_with_object({}) do |(k, v), h| | ||
if v.is_a? Hash | ||
flatten(v).map { |hk, hv| h["#{k}.#{hk}".to_sym] = hv } | ||
else | ||
h[k] = v | ||
end | ||
end | ||
end | ||
|
||
def template_translations | ||
<<-JS | ||
export const translations = #{@translations}; | ||
JS | ||
end | ||
|
||
def template_default | ||
<<-JS | ||
import { defineMessages } from 'react-intl'; | ||
const defaultLocale = \'#{default_locale}\'; | ||
const defaultMessages = defineMessages(#{@defaults}); | ||
export { defaultMessages, defaultLocale }; | ||
JS | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
de: | ||
hello: "Hallo welt" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
en: | ||
hello: "Hello world" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
require_relative "spec_helper" | ||
require "tmpdir" | ||
|
||
module ReactOnRails | ||
RSpec.describe LocalesToJs do | ||
let(:i18n_dir) { Pathname.new(Dir.mktmpdir) } | ||
let(:locale_dir) { File.expand_path("../fixtures/i18n/locales", __FILE__) } | ||
let(:translations_path) { "#{i18n_dir}/translations.js" } | ||
let(:default_path) { "#{i18n_dir}/default.js" } | ||
let(:en_path) { "#{locale_dir}/en.yml" } | ||
|
||
before do | ||
allow_any_instance_of(ReactOnRails::LocalesToJs).to receive(:locale_files).and_return(Dir["#{locale_dir}/*"]) | ||
ReactOnRails.configure do |config| | ||
config.i18n_dir = i18n_dir | ||
end | ||
end | ||
|
||
context "with obsolete js files" do | ||
before do | ||
FileUtils.touch(translations_path, mtime: Time.now - 1.year) | ||
FileUtils.touch(en_path, mtime: Time.now) | ||
end | ||
|
||
it "updates files" do | ||
ReactOnRails::LocalesToJs.new | ||
|
||
translations = File.read(translations_path) | ||
default = File.read(default_path) | ||
expect(translations).to include("{\"hello\":\"Hello world\"") | ||
expect(translations).to include("{\"hello\":\"Hallo welt\"") | ||
expect(default).to include("const defaultLocale = 'en';") | ||
expect(default).to include("{\"hello\":{\"id\":\"hello\",\"defaultMessage\":\"Hello world\"}}") | ||
|
||
expect(File.mtime(translations_path)).to be >= File.mtime(en_path) | ||
end | ||
end | ||
|
||
context "with up-to-date js files" do | ||
before do | ||
ReactOnRails::LocalesToJs.new | ||
end | ||
|
||
it "doesn't update files" do | ||
mt = File.mtime(translations_path) | ||
sleep 1 | ||
|
||
ReactOnRails::LocalesToJs.new | ||
expect(File.mtime(translations_path)).to eq(mt) | ||
end | ||
end | ||
end | ||
end |