Module: BoxHelper
- Defined in:
- app/helpers/box_helper.rb
Instance Method Summary collapse
- #content_box(options = {}) ⇒ Object
- #convert_to_content_box(html_code = nil) ⇒ Object
- #html_convert_h1_to_boxes(html_code, options = {}) ⇒ Object
- #show_box_edit_button?(box_class, navable) ⇒ Boolean
Instance Method Details
#content_box(options = {}) ⇒ Object
5 6 7 8 9 10 11 12 |
# File 'app/helpers/box_helper.rb', line 5 def content_box( = {} ) heading = [ :heading ] content = [ :content ] content = yield unless content box_class = [ :box_class ] render partial: 'layouts/box', locals: { heading: heading, content: content, box_class: box_class } end |
#convert_to_content_box(html_code = nil) ⇒ Object
14 15 16 17 |
# File 'app/helpers/box_helper.rb', line 14 def convert_to_content_box( html_code = nil ) html_code = yield unless html_code html_convert_h1_to_boxes( html_code ) end |
#html_convert_h1_to_boxes(html_code, options = {}) ⇒ Object
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 |
# File 'app/helpers/box_helper.rb', line 19 def html_convert_h1_to_boxes( html_code, = {} ) # Further Nokogiri Reference # * http://stackoverflow.com/questions/3449767/ # * http://www.engineyard.com/blog/2010/getting-started-with-nokogiri/ # * http://nokogiri.org/Nokogiri/XML/Node.html#method-i-next_element # * http://stackoverflow.com/questions/4723344/how-to-prevent-nokogiri-from-adding-doctype-tags # * http://stackoverflow.com/questions/3817843/using-xpath-with-html-or-xml-fragment # doc = Nokogiri::HTML::DocumentFragment.parse( html_code ) box_counter = 0 doc.xpath( 'descendant::h1' ).each do |h1_node| box_counter += 1 heading = h1_node.inner_html.html_safe heading_class = h1_node.attr( :class ) heading_class ||= "" heading_class += " first" if box_counter == 1 content_element = h1_node.next_element if content_element content = content_element.to_html.html_safe content_element.remove() end content ||= "" # because content_box expects a String h1_node.replace( content_box( heading: heading, content: content, box_class: heading_class ) ) end return doc.to_s.html_safe end |
#show_box_edit_button?(box_class, navable) ⇒ Boolean
51 52 53 54 |
# File 'app/helpers/box_helper.rb', line 51 def (box_class, navable) return can? :create_attachment_for, navable if box_class == 'attachments' return can? :update, navable end |