Module: Lit::FrontendHelper

Includes:
ActionView::Helpers::TranslationHelper, TranslationKeyWrapper
Defined in:
app/helpers/lit/frontend_helper.rb

Defined Under Namespace

Modules: TranslationKeyWrapper

Instance Method Summary collapse

Methods included from TranslationKeyWrapper

#pluralized_key, #t, #translate

Instance Method Details

#get_translateable_span(key, localization, alternative_text: nil) ⇒ Object



78
79
80
81
82
# File 'app/helpers/lit/frontend_helper.rb', line 78

def get_translateable_span(key, localization, alternative_text: nil)
   :span, class: 'lit-key-generic', data: { key: key, locale: I18n.locale } do
    localization.blank? ? alternative_text : localization
  end
end

#javascript_lit_tagObject



29
30
31
# File 'app/helpers/lit/frontend_helper.rb', line 29

def javascript_lit_tag
  javascript_include_tag 'lit/lit_frontend'
end

#lit_authorized?Boolean

Returns:

  • (Boolean)


72
73
74
75
76
# File 'app/helpers/lit/frontend_helper.rb', line 72

def lit_authorized?
  return false if Lit.authentication_verification.blank?

  send Lit.authentication_verification
end

#lit_frontend_assetsObject



37
38
39
40
41
42
# File 'app/helpers/lit/frontend_helper.rb', line 37

def lit_frontend_assets
  return unless lit_authorized?

  meta =  :meta, '', value: lit.find_localization_localization_keys_path, name: 'lit-url-base'
  safe_join [javascript_lit_tag, stylesheet_lit_tag, meta]
end

#lit_translations_infoObject



44
45
46
47
48
49
50
51
52
53
# File 'app/helpers/lit/frontend_helper.rb', line 44

def lit_translations_info
  return if Thread.current[:lit_request_keys].nil?
  return unless lit_authorized?

   :div, class: 'lit-translations-info collapsed' do
    concat (:span, 'Show translations', class: 'lit-open-button')
    concat (:span, 'X', class: 'lit-close-button')
    concat 
  end
end

#stylesheet_lit_tagObject



33
34
35
# File 'app/helpers/lit/frontend_helper.rb', line 33

def stylesheet_lit_tag
  stylesheet_link_tag 'lit/lit_frontend'
end

#translations_list_content_tagObject



55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
# File 'app/helpers/lit/frontend_helper.rb', line 55

def 
   :ul, class: 'lit-translations-list' do
    Lit
      .init
      .cache
      .request_keys
      .each do |k, v|
        concat(
          (:li) do
            concat (:code, "#{k}:")
            concat get_translateable_span(k, v, alternative_text: '[empty]')
          end,
        )
      end
  end
end