-
-
Notifications
You must be signed in to change notification settings - Fork 501
/
Copy pathadapter_dirty.rb
54 lines (49 loc) · 1.43 KB
/
adapter_dirty.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
module Globalize
module ActiveRecord
module AdapterDirty
def write locale, name, value
# Dirty tracking, paraphrased from
# ActiveRecord::AttributeMethods::Dirty#write_attribute.
name = name.to_s
store_old_value name, locale
old_values = dirty[name]
old_value = old_values[locale]
is_changed = record.send :attribute_changed?, name
if is_changed && value == old_value
# If there's already a change, delete it if this undoes the change.
old_values.delete locale
if old_values.empty?
_reset_attribute name
end
elsif !is_changed
# If there's not a change yet, record it.
record.send(:attribute_will_change!, name) if old_value != value
end
super locale, name, value
end
attr_writer :dirty
def dirty
@dirty ||= {}
end
def store_old_value name, locale
dirty[name] ||= {}
unless dirty[name].key? locale
old = fetch(locale, name)
old = old.dup if old.duplicable?
dirty[name][locale] = old
end
end
def clear_dirty
self.dirty = {}
end
def _reset_attribute name
record.send("#{name}=", record.changed_attributes[name])
record.original_changed_attributes.except!(name)
end
def reset
clear_dirty
super
end
end
end
end