Class: Tml::Decorators::Html
- Defined in:
- lib/tml/decorators/html.rb
Overview
– Copyright © 2015 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
Instance Method Summary collapse
- #decorate(translated_label, translation_language, target_language, translation_key, options = {}) ⇒ Object
- #decorate_language_case(language_case, rule, original, transformed, options = {}) ⇒ Object
Methods inherited from Base
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 70 71 |
# File 'lib/tml/decorators/html.rb', line 35 def decorate(translated_label, translation_language, target_language, translation_key, = {}) #Tml.logger.info("Decorating #{translated_label} of #{translation_language.locale} to #{target_language.locale}") # skip decoration if instructed so return translated_label if [:skip_decorations] # if translation key language is the same as target language - skip decorations return translated_label if translation_key.language == target_language return translated_label unless inline_mode? return translated_label if translation_key.locked? and not Tml.session.current_translator.manager? classes = %w(tml_translatable) if translation_key.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 [:pending] classes << 'tml_pending' else classes << 'tml_not_translated' end elsif translation_language == target_language classes << 'tml_translated' else classes << 'tml_fallback' end element = 'span' element = 'div' if [:use_div] 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_language_case(language_case, rule, original, transformed, options = {}) ⇒ Object
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 101 102 103 104 |
# File 'lib/tml/decorators/html.rb', line 73 def decorate_language_case(language_case, rule, original, transformed, = {}) return transformed if [:skip_decorations] or language_case.language.default? return transformed unless inline_mode? 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 = 'span' element = 'div' if [:use_div] html = "<#{element} #{attrs.join(' ')}>" html << transformed html << "</#{element}>" html end |