Skip to content

Commit 10cf3a1

Browse files
Merge branch 'master' into hybrid_storage
2 parents bf3dc99 + 4b79716 commit 10cf3a1

File tree

6 files changed

+91
-9
lines changed

6 files changed

+91
-9
lines changed

lib/lit/cache.rb

+6-4
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,12 @@ def keys
4949
localizations.keys
5050
end
5151

52-
def update_locale(key, value, force_array = false)
52+
def update_locale(key, value, force_array = false, unless_changed = false)
5353
key = key.to_s
5454
locale_key, key_without_locale = split_key(key)
5555
locale = find_locale(locale_key)
5656
localization = find_localization(locale, key_without_locale, value, force_array, true)
57+
return localization.get_value if unless_changed && localization.is_changed?
5758
localizations[key] = localization.get_value if localization
5859
end
5960

@@ -62,11 +63,11 @@ def update_cache(key, value)
6263
localizations[key] = value
6364
end
6465

65-
def delete_locale(key)
66+
def delete_locale(key, unless_changed = false)
6667
key = key.to_s
6768
locale_key, key_without_locale = split_key(key)
6869
locale = find_locale(locale_key)
69-
delete_localization(locale, key_without_locale)
70+
delete_localization(locale, key_without_locale, unless_changed)
7071
end
7172

7273
def load_all_translations
@@ -227,8 +228,9 @@ def find_localization_for_delete(locale, key_without_locale)
227228
where(localization_key_id: localization_key.id).first
228229
end
229230

230-
def delete_localization(locale, key_without_locale)
231+
def delete_localization(locale, key_without_locale, unless_changed = false)
231232
localization = find_localization_for_delete(locale, key_without_locale)
233+
return if unless_changed && localization.try(:is_changed?)
232234
if localization
233235
localizations.delete("#{locale.locale}.#{key_without_locale}")
234236
localization_keys.delete(key_without_locale)

lib/lit/i18n_backend.rb

+5-5
Original file line numberDiff line numberDiff line change
@@ -83,24 +83,24 @@ def lookup(locale, key, scope = [], options = {})
8383
content
8484
end
8585

86-
def store_item(locale, data, scope = [])
86+
def store_item(locale, data, scope = [], unless_changed = false)
8787
if data.respond_to?(:to_hash)
8888
data.to_hash.each do |key, value|
89-
store_item(locale, value, scope + [key])
89+
store_item(locale, value, scope + [key], unless_changed)
9090
end
9191
elsif data.respond_to?(:to_str)
9292
key = ([locale] + scope).join('.')
93-
@cache[key] ||= data
93+
@cache.update_locale(key, data, false, unless_changed)
9494
elsif data.nil?
9595
key = ([locale] + scope).join('.')
96-
@cache.delete_locale(key)
96+
@cache.delete_locale(key, unless_changed)
9797
end
9898
end
9999

100100
def load_translations_to_cache
101101
ActiveRecord::Base.transaction do
102102
(@translations || {}).each do |locale, data|
103-
store_item(locale, data) if valid_locale?(locale)
103+
store_item(locale, data, [], true) if valid_locale?(locale)
104104
end
105105
end
106106
end

test/support/en.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
en:
2+
foo: bar
3+
nil_thing:

test/support/en_changed.yml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
en:
2+
foo: barbar
3+
nil_thing: not nil anymore

test/test_helper.rb

+5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313
# Load support files
1414
Dir["#{File.dirname(__FILE__)}/support/**/*.rb"].each { |f| require f }
1515

16+
# Helper for adding sample .yml file to load path
17+
def load_sample_yml(fname)
18+
I18n.load_path << "#{File.dirname(__FILE__)}/support/#{fname}"
19+
end
20+
1621
ActiveSupport::TestCase.fixture_path = File.expand_path('../fixtures', __FILE__)
1722

1823
## do not enforce available locales

test/unit/lit_behaviour_test.rb

+69
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,75 @@ def teardown
136136
Lit.loader = old_loader
137137
end
138138

139+
test 'it wont overwrite existing UI-changed values with those from yaml' do
140+
load_sample_yml('en.yml')
141+
old_loader = Lit.loader
142+
Lit.loader = nil
143+
Lit.init
144+
145+
# Defaults from yml: en.foo: bar, en.nil_thing: [nothing]
146+
assert_equal 'bar', I18n.t('foo')
147+
assert_equal 'no longer nil', I18n.t('nil_thing', default: 'no longer nil')
148+
149+
foo_loc = Lit::LocalizationKey.find_by_localization_key('foo').localizations.first
150+
nil_loc = Lit::LocalizationKey.find_by_localization_key('nil_thing').localizations.first
151+
152+
# Check if default values have been loaded into DB
153+
assert_equal 'bar', foo_loc.default_value
154+
assert_equal 'no longer nil', nil_loc.default_value
155+
156+
# Translate as if it was done in UI (is_changed set to true)
157+
foo_loc.update(translated_value: 'barbar', is_changed: true)
158+
nil_loc.update(translated_value: 'new one', is_changed: true)
159+
[foo_loc, nil_loc].each do |loc|
160+
Lit.init.cache.update_cache loc.full_key, loc.get_value
161+
end
162+
163+
# Translations should be changed as intended
164+
assert_equal 'barbar', I18n.t('foo')
165+
assert_equal 'new one', I18n.t('nil_thing')
166+
167+
# Reload Lit, UI-changed translations should be intact
168+
Lit.loader = nil
169+
Lit.init
170+
assert_equal 'barbar', I18n.t('foo')
171+
assert_equal 'new one', I18n.t('nil_thing')
172+
173+
Lit.loader = old_loader
174+
end
175+
176+
test 'it will overwrite existing values with those from yaml for unchanged localizations' do
177+
load_sample_yml('en.yml')
178+
old_loader = Lit.loader
179+
Lit.loader = nil
180+
Lit.init
181+
182+
# Defaults from en.yml: en.foo: bar, en.nil_thing: [nothing]
183+
assert_equal 'bar', I18n.t('foo')
184+
assert_equal 'no longer nil', I18n.t('nil_thing', default: 'no longer nil')
185+
186+
foo_loc = Lit::LocalizationKey.find_by_localization_key('foo')
187+
.localizations.first
188+
nil_loc = Lit::LocalizationKey.find_by_localization_key('nil_thing')
189+
.localizations.first
190+
191+
# Check if default values have been loaded into DB
192+
assert_equal 'bar', foo_loc.default_value
193+
assert_equal 'no longer nil', nil_loc.default_value
194+
195+
# Defaults from en_changed.yml en.foo: barbar, en.nil_thing: not nil anymore
196+
# Swap yml file and reload Lit, changes in yml file should be visible
197+
I18n.load_path = []
198+
load_sample_yml('en_changed.yml')
199+
200+
Lit.loader = nil
201+
Lit.init
202+
assert_equal 'barbar', I18n.t('foo')
203+
assert_equal 'not nil anymore', I18n.t('nil_thing')
204+
205+
Lit.loader = old_loader
206+
end
207+
139208
private
140209

141210
def find_localization_for(key, locale)

0 commit comments

Comments
 (0)