Sha256: 21aa71118c1870f3f1b566548c0c9fdfcd92a5f960473b75e65bf0ae7f838690
Contents?: true
Size: 1.25 KB
Versions: 25
Compression:
Stored size: 1.25 KB
Contents
# frozen_string_literal: true module EffectiveResourcesWizardHelper def render_wizard_sidebar(resource, numbers: true, horizontal: false, &block) klasses = ['wizard-sidebar', 'list-group', ('list-group-horizontal' if horizontal)].compact.join(' ') sidebar = content_tag(:div, class: klasses) do resource.sidebar_steps.map.with_index do |nav_step, index| render_wizard_sidebar_item(resource, nav_step, (index + 1 if numbers)) end.join.html_safe end return sidebar unless block_given? content_tag(:div, class: 'row') do content_tag(:div, class: 'col-lg-3') { sidebar } + content_tag(:div, class: 'col-lg-9') { yield } end end def render_wizard_sidebar_item(resource, nav_step, index = nil) # From Controller current = (nav_step == step) title = resource_wizard_step_title(resource, nav_step) # From Model disabled = !resource.can_visit_step?(nav_step) label = [index, title].compact.join('. ') klass = ['list-group-item', 'list-group-item-action', ('active' if current), ('disabled' if disabled && !current)].compact.join(' ') if (current || disabled) content_tag(:a, label, class: klass) else link_to(label, wizard_path(nav_step), class: klass) end end end
Version data entries
25 entries across 25 versions & 1 rubygems