Module: Lines::ApplicationHelper

Defined in:
app/helpers/lines/application_helper.rb

Defined Under Namespace

Classes: HTMLwithPygments

Instance Method Summary collapse

Instance Method Details

#display_article_authors(article, with_info = false) ⇒ Object

Returns HTML with all authors of an article



58
59
60
61
62
63
64
# File 'app/helpers/lines/application_helper.rb', line 58

def (article, with_info=false)
  authors = article.authors.map{|author| author.gplus_profile.blank? ? author.name : link_to(author.name, author.gplus_profile)}.to_sentence(two_words_connector: " & ", last_word_connector: " & ").html_safe
  if with_info
    authors += ("" + article.authors.map{|author| (:span, "#{author.description}", class: 'author_description') }.join("")).html_safe
  end
  authors
end

#format_code(text) ⇒ Object

Returns HTML for code blocks formatted with Pygment



121
122
123
# File 'app/helpers/lines/application_helper.rb', line 121

def format_code(text)
  simple_format( truncate( Sanitize.clean(markdown(text)).html_safe, escape: false, length: 300, separator: ' ', omission: '' ))
end

Returns site name for actionbar, dependend on current site



102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# File 'app/helpers/lines/application_helper.rb', line 102

def get_action_link
  if controller_path == 'admin/articles'
    case action_name
      when 'index' then 'All articles'
      when 'new' then 'New article'
      when 'edit' then 'Edit article'
      when 'show' then "Preview"
    end
  elsif controller_path == 'admin/authors'
    case action_name
      when 'index' then 'All authors'
      when 'new' then 'New author'
      when 'edit' then 'Edit author'
      when 'show' then "Author"
    end
  end
end

#markdown(text) ⇒ Object

Returns formatted and highlighted code fragments



33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'app/helpers/lines/application_helper.rb', line 33

def markdown(text)
  renderer = HTMLwithPygments.new(hard_wrap: true, filter_html: false, with_toc_data: false)
  options = {
    autolink: true,
    no_intra_emphasis: true,
    fenced_code_blocks: true,
    lax_html_blocks: true,
    tables: true,
    strikethrough: true,
    superscript: true,
    xhtml: true
  }
  Redcarpet::Markdown.new(renderer, options).render(text).html_safe
end

Returns links in active or inactive state for highlighting current page



49
50
51
52
53
54
55
# File 'app/helpers/lines/application_helper.rb', line 49

def nav_link(link_text, link_path)
  recognized = Rails.application.routes.recognize_path(link_path)
  class_name = recognized[:controller] == params[:controller] ? 'active' : ''
  (:li, class: class_name) do
    link_to link_text, link_path
  end
end

#render_navbar(&block) ⇒ Object

Renders the navigation bar for logged in users



67
68
69
70
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
# File 'app/helpers/lines/application_helper.rb', line 67

def render_navbar(&block)
  action_link = get_action_link
  if !action_link
    action_link = CONFIG[:title_short]
  end
  html = (:div, id: 'navbar') do
    (:div, class: 'navbar-inner') do
      if current_lines_user
        #content_tag(:span, link_to('', admin_articles_path), class: 'backlink', title: 'Dashboard') + content_tag(:span, action_link, class: 'actionlink') + content_tag(:span, class: 'buttons', &block) + content_tag(:span, link_to('Logout', logout_path), class: 'logout') + content_tag(:span, "Logged in as #{current_lines_user.email}", class: 'logged-in-as')
        (:span, class: 'buttons', &block) + "<div class='btn-menu'><dic class='stripes'></div></div>".html_safe + 
        "<div class='submenu'>
          <div class='submenu-inner'>
            <ul>
              <li>#{link_to("Dashboard", admin_articles_path)}</li>
              <li>#{link_to("Authors", admin_authors_path)}</li>
            </ul>
            <ul>
              <li class='small'>Logged in as #{current_lines_user.email}</li>
              <li>#{link_to("Logout", logout_path)}</li>
            </ul>
            <ul>
              <li>#{link_to("Formatting Help", "#", class: "btn-cheatsheet")}</li>
              <li>#{link_to("About Lines", "http://lines.opoloo.com")}</li>
            </ul>
          </div>
        </div>".html_safe
      else
        (:span, link_to('', lines.root_path), class: 'backlink') + (:span, action_link, class: 'actionlink')
      end
    end
  end
  html    
end

#render_teaser(article, article_counter = 0) ⇒ Object

Renders the teaser for an article.



9
10
11
12
13
14
15
16
# File 'app/helpers/lines/application_helper.rb', line 9

def render_teaser(article, article_counter=0)
  if article_counter < 0
    teaser = article.teaser && article.teaser.present? ? markdown(article.teaser) : nil
  else
    teaser = article.teaser && article.teaser.present? ? format_code(article.teaser) : format_code(article.content)
  end
  teaser
end