app/helpers/styleus_helper.rb in styleus-0.0.5 vs app/helpers/styleus_helper.rb in styleus-0.0.6
- old
+ new
@@ -1,5 +1,7 @@
+require 'styleus_representer_helper'
+
module StyleusHelper
def styleus(comp_list = [])
@components = Styleus::ViewComponent.from_hashes(comp_list)
@component_list = @components.map do |component|
@@ -15,91 +17,60 @@
end
option_bar(component).concat article
end
def styleus_partials(partial_path, options = { })
- sample_template = _styleus_representation_wrap(class: '__boxed') { render partial: "#{partial_path}_sample" }
+ sample_template = _styleus_component_wrap(class: '__boxed') { render partial: "#{partial_path}_sample" }
plain_template = _html_representation("#{partial_path}.html.erb") { render partial: "#{partial_path}" }
helper_template = _helper_representation { render partial: "#{partial_path}_helper" } if options[:helper]
- sample_template.concat(plain_template).concat(helper_template || safe_empty)
+ sample_template.concat(plain_template).concat(helper_template || _safe_empty)
end
def option_bar(component)
- content_tag 'nav', class: '__option_bar' do
- content_tag 'ul' do
- html_area = content_tag('li') { link_to t('icons.html'), component_path(component), title: t('links.titles.html'), class: 'icon', data: { toggle: "##{component.id} [data-subject=html-representation]" } }
- helper_area = content_tag('li') { link_to t('icons.helper'), component_path(component), title: t('links.titles.helper'), class: 'icon', data: { toggle: "##{component.id} [data-subject=ruby-representation]" } } if component.helper?
- presentation_area = content_tag('li') { link_to t('icons.expand_all'), component_path(component), title: t('links.titles.expand_all'), class: 'icon', data: { toggle: "##{component.id} [data-subject*=representation]" } }
-
- html_area.concat(helper_area || safe_empty).concat(presentation_area)
- end
- end
+ _option_bar(component)
end
def component_index(headline)
- return if @components.empty?
- content_tag 'nav', class: "__component_index" do
- menu_entries = content_tag 'ul' do
- content_tag_for(:li, @components) do |component|
- link_to component.headline, anchor: component.id
- end
- end
- content_tag('h3', headline).concat menu_entries
- end
-
+ _component_index(headline, @components)
end
def _styleus_article_wrap(options = { }, &block)
captured_block = capture(&block)
-
- content_tag('article', class: '__sg_article', id: options[:id]) do
- content = safe_empty
- headline = options[:headline]
- content.concat(content_tag('h3', headline)) if headline
- content.concat(captured_block)
- content
- end
+ _article(options) { captured_block }
end
- def _styleus_representation_wrap(options = { }, &block)
+ def _styleus_component_wrap(options = { }, &block)
captured_block = capture(&block)
-
- classes = '__sg_component'.concat(" #{options[:class].to_s}")
- content_tag('section', class: classes) do
- render layout: 'layouts/styleus_context' do
- captured_block.to_s.html_safe
- end
- end
+ classes = %W{__sg_component #{options[:class]}}.join(' ')
+ _component(classes) { captured_block }
end
def _html_representation(note = nil, &block)
- _coderay_highlight_wrap(note, type: :html, &block)
+ _coderay_highlight_wrap(note, &block)
end
def _helper_representation(&block)
_coderay_highlight_wrap('Rails Helper', type: :ruby, &block)
end
- def _coderay_highlight_wrap(note = nil, options = { type: :html }, &block)
+ def _coderay_highlight_wrap(note = nil, options = { }, &block)
captured_block = capture(&block)
- code_block = CodeRay.scan(captured_block.to_s, options[:type])
+ type = options[:type] || :html
- note_tag = note ? content_tag('p', note, class: '__code_note') : safe_empty
+ highlighted_code = _highlight(captured_block.to_s, type)
+ code_with_note = _code_note(note).concat highlighted_code
- highlighted_code = "#{note_tag}#{code_block.div(:css => :class, line_numbers: :table)}"
- content_tag('div', data: { subject: "#{options[:type]}-representation" }) do
- highlighted_code.html_safe
- end
+ _code(code_with_note, type)
end
def _joined_component_list
@component_list.join.html_safe
end
- def safe_empty
- ''.html_safe
+ def _highlight(code, type)
+ CodeRay.scan(code, type).div(:css => :class, line_numbers: :table).html_safe
end
end
\ No newline at end of file