Class: Tml::Tokens::Data
- Inherits:
-
Object
- Object
- Tml::Tokens::Data
- Defined in:
- lib/tml/tokens/data.rb
Direct Known Subclasses
Map, Method, Transform, XMessage::Choice, XMessage::Data, XMessage::Map
Instance Attribute Summary collapse
-
#case_keys ⇒ Object
readonly
Returns the value of attribute case_keys.
-
#context_keys ⇒ Object
readonly
Returns the value of attribute context_keys.
-
#full_name ⇒ Object
readonly
Returns the value of attribute full_name.
-
#label ⇒ Object
readonly
Returns the value of attribute label.
-
#short_name ⇒ Object
readonly
Returns the value of attribute short_name.
Class Method Summary collapse
- .expression ⇒ Object
- .parse(label, opts = {}) ⇒ Object
-
.token_object(token_values, token_name) ⇒ Object
returns token object from tokens param.
Instance Method Summary collapse
-
#apply_case(key, value, object, language, options) ⇒ Object
chooses the appropriate case for the token value.
- #apply_language_cases(value, object, language, options) ⇒ Object
- #context_for_language(language) ⇒ Object
- #decorate(value, options = {}) ⇒ Object
- #decoration_name ⇒ Object
-
#error(msg, return_token = true) ⇒ Object
Utility method for errors.
-
#initialize(label, token) ⇒ Data
constructor
A new instance of Data.
- #key ⇒ Object
- #language_cases_enabled? ⇒ Boolean
- #name(opts = {}) ⇒ Object
-
#name_for_case_keys(keys) ⇒ Object
used by the translator submit dialog.
- #parse_elements ⇒ Object
- #sanitize(value, object, language, options) ⇒ Object
- #sanitized_name ⇒ Object
- #substitute(label, context, language, options = {}) ⇒ Object
- #to_s ⇒ Object
- #token_object(token_values) ⇒ Object
-
#token_value(object, language, options = {}) ⇒ Object
evaluate all possible methods for the token value and return sanitized result.
-
#token_value_from_array_param(array, language, options) ⇒ Object
gets the value based on various evaluation methods.
-
#token_value_from_hash_param(hash, language, options) ⇒ Object
Hashes are often used with JSON structures.
-
#token_values_from_array(params, language, options) ⇒ Object
tr(“Hello user_list!”, “”, => [[user1, user2, user3], :name]}.
Constructor Details
#initialize(label, token) ⇒ Data
Returns a new instance of Data.
51 52 53 54 55 |
# File 'lib/tml/tokens/data.rb', line 51 def initialize(label, token) @label = label @full_name = token parse_elements end |
Instance Attribute Details
#case_keys ⇒ Object (readonly)
Returns the value of attribute case_keys.
37 38 39 |
# File 'lib/tml/tokens/data.rb', line 37 def case_keys @case_keys end |
#context_keys ⇒ Object (readonly)
Returns the value of attribute context_keys.
37 38 39 |
# File 'lib/tml/tokens/data.rb', line 37 def context_keys @context_keys end |
#full_name ⇒ Object (readonly)
Returns the value of attribute full_name.
37 38 39 |
# File 'lib/tml/tokens/data.rb', line 37 def full_name @full_name end |
#label ⇒ Object (readonly)
Returns the value of attribute label.
37 38 39 |
# File 'lib/tml/tokens/data.rb', line 37 def label @label end |
#short_name ⇒ Object (readonly)
Returns the value of attribute short_name.
37 38 39 |
# File 'lib/tml/tokens/data.rb', line 37 def short_name @short_name end |
Class Method Details
.expression ⇒ Object
39 40 41 |
# File 'lib/tml/tokens/data.rb', line 39 def self.expression /(%?\{{1,2}\s*\w+\s*(:\s*\w+)*\s*(::\s*\w+)*\s*\}{1,2})/ end |
.parse(label, opts = {}) ⇒ Object
43 44 45 46 47 48 49 |
# File 'lib/tml/tokens/data.rb', line 43 def self.parse(label, opts = {}) tokens = [] label.scan(expression).uniq.each do |token_array| tokens << self.new(label, token_array.first) end tokens end |
.token_object(token_values, token_name) ⇒ Object
returns token object from tokens param
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 |
# File 'lib/tml/tokens/data.rb', line 106 def self.token_object(token_values, token_name) return nil if token_values.nil? token_name = token_name.to_s.gsub(':', '') if token_values.is_a?(Array) token_object = token_values[token_name.to_i] else token_object = Tml::Utils.hash_value(token_values, token_name) end return token_object.first if token_object.is_a?(Array) if token_object.is_a?(Hash) object = Tml::Utils.hash_value(token_object, :object) return object if object end token_object end |
Instance Method Details
#apply_case(key, value, object, language, options) ⇒ Object
- chooses the appropriate case for the token value. case is identified with
-
examples:
tr(“Hello Tml::Tokens::Data.useruser::nom”, “”, :user => current_user) tr(“actor gave Tml::Tokens::Data.targettarget::dat a present”, “”, :actor => user1, :target => user2) tr(“This is Tml::Tokens::Data.useruser::pos toy”, “”, :user => current_user)
387 388 389 390 391 |
# File 'lib/tml/tokens/data.rb', line 387 def apply_case(key, value, object, language, ) lcase = language.case_by_keyword(key) return value unless lcase lcase.apply(value, object, ) end |
#apply_language_cases(value, object, language, options) ⇒ Object
393 394 395 396 397 398 399 |
# File 'lib/tml/tokens/data.rb', line 393 def apply_language_cases(value, object, language, ) case_keys.each do |key| value = apply_case(key, value, object, language, ) end value end |
#context_for_language(language) ⇒ Object
85 86 87 88 89 90 91 |
# File 'lib/tml/tokens/data.rb', line 85 def context_for_language(language) if context_keys.any? language.context_by_keyword(context_keys.first) else language.context_by_token_name(short_name) end end |
#decorate(value, options = {}) ⇒ Object
418 419 420 |
# File 'lib/tml/tokens/data.rb', line 418 def decorate(value, = {}) Tml::Decorators::Base.decorator.decorate_token(self, value, ) end |
#decoration_name ⇒ Object
426 427 428 |
# File 'lib/tml/tokens/data.rb', line 426 def decoration_name self.class.name.split('::').last.downcase end |
#error(msg, return_token = true) ⇒ Object
Utility method for errors
94 95 96 97 98 |
# File 'lib/tml/tokens/data.rb', line 94 def error(msg, return_token = true) # pp msg Tml.logger.error(msg) return_token ? full_name : label end |
#key ⇒ Object
75 76 77 |
# File 'lib/tml/tokens/data.rb', line 75 def key short_name.to_sym end |
#language_cases_enabled? ⇒ Boolean
372 373 374 |
# File 'lib/tml/tokens/data.rb', line 372 def language_cases_enabled? Tml.session.application and Tml.session.application.feature_enabled?(:language_cases) end |
#name(opts = {}) ⇒ Object
67 68 69 70 71 72 73 |
# File 'lib/tml/tokens/data.rb', line 67 def name(opts = {}) val = short_name val = "#{val}:#{context_keys.join(':')}" if opts[:context_keys] and context_keys.any? val = "#{val}::#{case_keys.join('::')}" if opts[:case_keys] and case_keys.any? val = "{#{val}}" if opts[:parens] val end |
#name_for_case_keys(keys) ⇒ Object
used by the translator submit dialog
80 81 82 83 |
# File 'lib/tml/tokens/data.rb', line 80 def name_for_case_keys(keys) keys = [keys] unless keys.is_a?(Array) "#{name}::#{keys.join('::')}" end |
#parse_elements ⇒ Object
57 58 59 60 61 62 63 64 65 |
# File 'lib/tml/tokens/data.rb', line 57 def parse_elements name_without_parens = @full_name.gsub(/^%/, '')[1..-2] name_without_parens = @full_name.gsub(/^%/, '')[1..-2] name_without_case_keys = name_without_parens.split('::').first.strip @short_name = name_without_parens.split(':').first.strip @case_keys = name_without_parens.scan(/(::\w+)/).flatten.uniq.collect{|c| c.gsub('::', '')} @context_keys = name_without_case_keys.scan(/(:\w+)/).flatten.uniq.collect{|c| c.gsub(':', '')} end |
#sanitize(value, object, language, options) ⇒ Object
359 360 361 362 363 364 365 366 367 368 369 370 |
# File 'lib/tml/tokens/data.rb', line 359 def sanitize(value, object, language, ) value = value.to_s unless Tml.session.block_option(:skip_html_escaping) if [:safe] == false value = CGI.escapeHTML(value) end end return value unless language_cases_enabled? apply_language_cases(value, object, language, ) end |
#sanitized_name ⇒ Object
422 423 424 |
# File 'lib/tml/tokens/data.rb', line 422 def sanitized_name name(:parens => true) end |
#substitute(label, context, language, options = {}) ⇒ Object
401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 |
# File 'lib/tml/tokens/data.rb', line 401 def substitute(label, context, language, = {}) # get the object from the values object = Tml::Utils.hash_value(context, key) # see if the token is a default html token object = Tml.config.default_token_value(key) if object.nil? if object.nil? and not context.key?(key) return error("Missing value for #{full_name} in #{label}", false) end return label.gsub(full_name, '') if object.nil? value = token_value(object, language, ) label.gsub(full_name, decorate(value, )) end |
#to_s ⇒ Object
430 431 432 |
# File 'lib/tml/tokens/data.rb', line 430 def to_s full_name end |
#token_object(token_values) ⇒ Object
124 125 126 |
# File 'lib/tml/tokens/data.rb', line 124 def token_object(token_values) self.class.token_object(token_values, short_name) end |
#token_value(object, language, options = {}) ⇒ Object
evaluate all possible methods for the token value and return sanitized result
353 354 355 356 357 |
# File 'lib/tml/tokens/data.rb', line 353 def token_value(object, language, = {}) return token_value_from_array_param(object, language, ) if object.is_a?(Array) return token_value_from_hash_param(object, language, ) if object.is_a?(Hash) sanitize(object, object, language, ) end |
#token_value_from_array_param(array, language, options) ⇒ Object
gets the value based on various evaluation methods
examples:
tr(“Hello user”, => [current_user, current_user.name]} tr(“Hello user”, => [current_user, :name]}
tr(“Hello user”, => [{:name => “Michael”, :gender => :male, current_user.name]}} tr(“Hello user”, => [{:name => “Michael”, :gender => :male, :name]}}
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 |
# File 'lib/tml/tokens/data.rb', line 268 def token_value_from_array_param(array, language, ) # if you provided an array, it better have some values if array.size < 2 return sanitize(array[0], array[0], language, .merge(:safe => false)) end # if the first value of an array is an array handle it here if array[0].is_a?(Array) return token_values_from_array(array, language, ) end if array[1].is_a?(String) return sanitize(array[1], array[0], language, .merge(:safe => true)) end if array[0].is_a?(Hash) if array[1].is_a?(Symbol) return sanitize(Tml::Utils.hash_value(array[0], array[1]), array[0], language, .merge(:safe => false)) end return error("Invalid value for array token #{full_name} in #{label}") end # if second param is symbol, invoke the method on the object with the remaining values if array[1].is_a?(Symbol) return sanitize(array[0].send(array[1]), array[0], language, .merge(:safe => false)) end # if second param is a lambda if array[1].is_a?(Proc) return sanitize(array[1].call(array[0]), array[0], language, .merge(:safe => false)) end error("Invalid value for array token #{full_name} in #{label}") end |
#token_value_from_hash_param(hash, language, options) ⇒ Object
Hashes are often used with JSON structures. We can be smart about how to pull default values.
examples:
tr(“Hello user”, => {:name => “Michael”, :gender => :male}}
tr(“Hello user”, => {:object => {:gender => :male, :value => “Michael”}}} tr(“Hello user”, => {:object => {:name => “Michael”, :gender => :male, :property => :name}}} tr(“Hello user”, => {:object => {:name => “Michael”, :gender => :male, :attribute => :name}}}
tr(“Hello user”, => {:object => user, :value => “Michael”}} tr(“Hello user”, => {:object => user, :property => :name}} tr(“Hello user”, => {:object => user, :attribute => :name}}
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 |
# File 'lib/tml/tokens/data.rb', line 322 def token_value_from_hash_param(hash, language, ) value = Tml::Utils.hash_value(hash, :value) [:name, :first_name, :display_name, :full_name, :username].each do |attr| value ||= Tml::Utils.hash_value(hash, attr) end attr = Tml::Utils.hash_value(hash, :attribute) || Tml::Utils.hash_value(hash, :property) value ||= Tml::Utils.hash_value(hash, attr) object = Tml::Utils.hash_value(hash, :object) unless value.nil? return sanitize(value, object || hash, language, .merge(:safe => true)) end if object.nil? return error("Missing value for hash token #{full_name} in #{label}") end if object.is_a?(Hash) unless attr.nil? return sanitize(Tml::Utils.hash_value(object, attr), object, language, .merge(:safe => false)) end return error("Missing value for hash token #{full_name} in #{label}") end sanitize(object.send(attr), object, language, .merge(:safe => false)) end |
#token_values_from_array(params, language, options) ⇒ Object
tr(“Hello user_list!”, “”, => [[user1, user2, user3], :name]}
first element is an array, the rest of the elements are similar to the regular tokens lambda, symbol, string, with parameters that follow
if you want to pass options, then make the second parameter an array as well
tr(“users joined the site”, => [[user1, user2, user3], :name])
tr(“users joined the site”, => [[user1, user2, user3], lambda{|user| user.name]})
tr(“users joined the site”, => [[user1, user2, user3], {:attribute => :name)
tr(“users joined the site”, => [[user1, user2, user3], {:attribute => :name, :value => “<strong>{$0</strong>”})
tr(“users joined the site”, => [[user1, user2, user3], “<strong>{$0</strong>”)
tr(“users joined the site”, => [[user1, user2, user3], :name, {
:limit => 4,
:separator => ', ',
:joiner => 'and',
:remainder => lambda{|elements| tr("#{count||other", :count => elements.size)},
:translate => false,
:expandable => true,
:collapsable => true
})
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 |
# File 'lib/tml/tokens/data.rb', line 159 def token_values_from_array(params, language, ) = { :description => "List joiner", :limit => 4, :separator => ", ", :joiner => 'and', :less => '{laquo} less', :expandable => true, :collapsable => true } objects = params[0] method = params[1] .merge!(params[2]) if params.size > 2 [:expandable] = false if [:skip_decorations] values = objects.collect do |obj| if method.is_a?(String) element = method.gsub("{$0}", sanitize(obj.to_s, obj, language, .merge(:safe => false))) elsif method.is_a?(Symbol) if obj.is_a?(Hash) value = Tml::Utils.hash_value(obj, method) else value = obj.send(method) end element = sanitize(value, obj, language, .merge(:safe => false)) elsif method.is_a?(Hash) attr = Tml::Utils.hash_value(method, :attribute) || Tml::Utils.hash_value(method, :property) if obj.is_a?(Hash) value = Tml::Utils.hash_value(obj, attr) else value = obj.send(method) end hash_value = Tml::Utils.hash_value(method, :value) if hash_value element = hash_value.gsub("{$0}", sanitize(value, obj, language, .merge(:safe => false))) else element = sanitize(value, obj, language, .merge(:safe => false)) end elsif method.is_a?(Proc) element = sanitize(method.call(obj), obj, language, .merge(:safe => true)) end Tml::Decorators::Base.decorator.decorate_element(self, element, ) end return values.first if objects.size == 1 return values.join([:separator]) if [:joiner].nil? || [:joiner] == "" joiner = language.translate([:joiner], [:description], {}, ) if values.size <= [:limit] return "#{values[0..-2].join([:separator])} #{joiner} #{values.last}" end display_ary = values[0..([:limit]-1)] remaining_ary = values[[:limit]..-1] result = "#{display_ary.join([:separator])}" unless [:expandable] result << " " << joiner << " " if [:remainder] and [:remainder].is_a?(Proc) result << [:remainder].call(remaining_ary) else result << language.translate("{count||other}", [:description], {:count => remaining_ary.size}, ) end return result end uniq_id = Tml::TranslationKey.generate_key(label, values.join(",")) result << "<span id=\"tml_other_link_#{uniq_id}\"> #{joiner} " result << "<a href='#' onClick=\"document.getElementById('tml_other_link_#{uniq_id}').style.display='none'; document.getElementById('tml_other_elements_#{uniq_id}').style.display='inline'; return false;\">" if [:remainder] and [:remainder].is_a?(Proc) result << [:remainder].call(remaining_ary) else result << language.translate("{count||other}", [:description], {:count => remaining_ary.size}, ) end result << "</a></span>" result << "<span id=\"tml_other_elements_#{uniq_id}\" style='display:none'>" result << [:separator] << " " result << remaining_ary[0..-2].join([:separator]) result << " #{joiner} " result << remaining_ary.last if [:collapsable] result << "<a href='#' style='font-size:smaller;white-space:nowrap' onClick=\"document.getElementById('tml_other_link_#{uniq_id}').style.display='inline'; document.getElementById('tml_other_elements_#{uniq_id}').style.display='none'; return false;\"> " result << language.translate([:less], [:description], {}, ) result << "</a>" end result << "</span>" end |