Class: Tml::Decorators::Html

Inherits:
Base
  • Object
show all
Defined in:
lib/tml/decorators/html.rb

Overview

– Copyright © 2017 Translation Exchange, Inc

_______                  _       _   _             ______          _

|__ __| | | | | (_) | __| | |

| |_ __ __ _ _ __  ___| | __ _| |_ _  ___  _ __ | |__  __  _____| |__   __ _ _ __   __ _  ___
| | '__/ _` | '_ \/ __| |/ _` | __| |/ _ \| '_ \|  __| \ \/ / __| '_ \ / _` | '_ \ / _` |/ _ \
| | | | (_| | | | \__ \ | (_| | |_| | (_) | | | | |____ >  < (__| | | | (_| | | | | (_| |  __/
|_|_|  \__,_|_| |_|___/_|\__,_|\__|_|\___/|_| |_|______/_/\_\___|_| |_|\__,_|_| |_|\__, |\___|
                                                                                    __/ |
                                                                                   |___/

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ++

Instance Attribute Summary

Attributes inherited from Base

#attributes

Instance Method Summary collapse

Methods inherited from Base

#decoration_element, decorator, #enabled?, #inline_mode?

Methods inherited from Base

attributes, belongs_to, has_many, #hash_value, hash_value, #initialize, #method_missing, #to_hash, #update_attributes

Constructor Details

This class inherits a constructor from Tml::Base

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Tml::Base

Instance Method Details

#decorate(translated_label, translation_language, target_language, translation_key, options = {}) ⇒ Object



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/tml/decorators/html.rb', line 35

def decorate(translated_label, translation_language, target_language, translation_key, options = {})
  #Tml.logger.info("Decorating #{translated_label} of #{translation_language.locale} to #{target_language.locale}")

  return translated_label unless enabled?(options)

  # if translation key language is the same as target language - skip decorations
  if translation_key.application.feature_enabled?(:lock_original_content) and translation_key.language == target_language
    return translated_label
  end

  classes = %w(tml_translatable)

  if options[:locked]
    # must be a manager and enabling locking feature
    # return translated_label unless Tml.session.current_translator.feature_enabled?(:show_locked_keys)
    classes << 'tml_locked'
  elsif translation_language == translation_key.language
    if options[:pending]
      classes << 'tml_pending'
    else
      classes << 'tml_not_translated'
    end
  elsif translation_language == target_language
    classes << 'tml_translated'
  else
    classes << 'tml_fallback'
  end

  element = decoration_element('tml:label', options)

  html = "<#{element} class='#{classes.join(' ')}' data-translation_key='#{translation_key.key}' data-target_locale='#{target_language.locale}'>"
  html << translated_label
  html << "</#{element}>"
  html
end

#decorate_element(token, value, options = {}) ⇒ Object



118
119
120
121
122
123
124
125
126
127
# File 'lib/tml/decorators/html.rb', line 118

def decorate_element(token, value, options = {})
  return value unless enabled?(options)

  element = decoration_element('tml:element', options)

  html = "<#{element}>"
  html << value
  html << "</#{element}>"
  html
end

#decorate_language_case(language_case, rule, original, transformed, options = {}) ⇒ Object



71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# File 'lib/tml/decorators/html.rb', line 71

def decorate_language_case(language_case, rule, original, transformed, options = {})
  return transformed unless enabled?(options)

  data = {
    'keyword'       => language_case.keyword,
    'language_name' => language_case.language.english_name,
    'latin_name'    => language_case.latin_name,
    'native_name'   => language_case.native_name,
    'conditions'    => (rule ? rule.conditions : ''),
    'operations'    => (rule ? rule.operations : ''),
    'original'      => original,
    'transformed'   => transformed
  }

  attrs = []
  {
    'class'             => 'tml_language_case',
    'data-locale'       => language_case.language.locale,
    'data-rule'         => CGI::escape(Base64.encode64(data.to_json).gsub("\n", ''))
  }.each do |key, value|
    attrs << "#{key}=\"#{value.to_s.gsub('"', "\"")}\""
  end

  element = decoration_element('tml:case', options)

  html = "<#{element} #{attrs.join(' ')}>"
  html << transformed
  html << "</#{element}>"
  html
end

#decorate_token(token, value, options = {}) ⇒ Object



102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# File 'lib/tml/decorators/html.rb', line 102

def decorate_token(token, value, options = {})
  return value unless enabled?(options)

  element = decoration_element('tml:token', options)

  classes = ['tml_token', "tml_token_#{token.decoration_name}"]

  html = "<#{element} class='#{classes.join(' ')}' data-name='#{token.name}'"
  html << " data-context='#{token.context_keys.join(',')}'" if token.context_keys.any?
  html << " data-case='#{token.case_keys.join(',')}'" if token.case_keys.any?
  html << '>'
  html << value
  html << "</#{element}>"
  html
end