Module: RailsAdminNestedSet::Helper

Defined in:
lib/rails_admin_nested_set/helper.rb

Instance Method Summary collapse

Instance Method Details



92
93
94
95
96
# File 'lib/rails_admin_nested_set/helper.rb', line 92

def action_links(model)
   :ul, class: 'inline actions' do
    menu_for :member, @abstract_model, model, true
  end
end

#carrierwave?Boolean

Returns:

  • (Boolean)


85
86
87
# File 'lib/rails_admin_nested_set/helper.rb', line 85

def carrierwave?
  @nested_set_conf.options[:thumbnail_gem] == :carrierwave
end


11
12
13
14
15
16
17
# File 'lib/rails_admin_nested_set/helper.rb', line 11

def g_link(node, fv, on, badge, meth)
  link_to(
    fv.html_safe,
    toggle_path(model_name: @abstract_model, id: node.id, method: meth, on: on.to_s),
    class: 'js-tree-toggle badge ' + badge,
  )
end

#max_depthObject



73
74
75
# File 'lib/rails_admin_nested_set/helper.rb', line 73

def max_depth
  @nested_set_conf.options[:max_depth] || '0'
end

#paperclip?Boolean

Returns:

  • (Boolean)


82
83
84
# File 'lib/rails_admin_nested_set/helper.rb', line 82

def paperclip?
  @nested_set_conf.options[:thumbnail_gem] == :paperclip
end

#rails_admin_nested_set(tree, opts = {}) ⇒ Object



3
4
5
6
7
8
9
# File 'lib/rails_admin_nested_set/helper.rb', line 3

def rails_admin_nested_set(tree, opts= {})
  tree = tree.to_a.sort_by { |m| m.lft }
  roots = tree.select{|elem| elem.parent_id.nil?}
  id = "ns_#{rand(100_000_000..999_999_999)}"
  tree_config = {max_depth: max_depth, update_url: nested_set_path(model_name: @abstract_model)}.to_json
  (:ol, rails_admin_nested_set_builder(roots, tree), id: id, class: 'dd-list rails_admin_nested_set', 'data-config' => tree_config)
end

#rails_admin_nested_set_builder(nodes, tree) ⇒ 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'lib/rails_admin_nested_set/helper.rb', line 19

def rails_admin_nested_set_builder(nodes, tree)
  nodes.map do |node|
    li_classes = 'dd-item dd3-item'

     :li, class: li_classes, :'data-id' => node.id do
      output =  :div, 'drag', class: 'dd-handle dd3-handle'
      output+=  :div, class: 'dd3-content clearfix' do
        content = ''.html_safe

        toggle_fields.each do |tf|
          if node.respond_to?(tf) && respond_to?(:toggle_path)
            content += case node.enabled
              when nil
                g_link(node, '✘', 0, 'badge-important', tf) + g_link(node, '✓', 1, 'badge-success', tf)
              when false
                g_link(node, '✘', 1, 'badge-important', tf)
              when true
                g_link(node, '&#x2713', 0, 'badge-success', tf)
              else
                %{<span class="badge">-</span>}
            end.html_safe
          end
        end

        content += link_to @model_config.with(object: node).object_label, edit_path(@abstract_model, node.id)
        content += (:div, action_links(node), class: 'pull-right links')
        
        thumbnail_fields.each do |mth|
          if node.respond_to?(mth)
            img = if paperclip?
              node.send(mth).url(thumbnail_size)
            elsif carrierwave?
              node.send(mth, thumbnail_size)
            else
              nil
            end
            content += image_tag(img, style: "max-height: 40px; max-width: 100px;", class: 'pull-right')
          end
        end
        
        content
      end

      children = tree.select{|elem| elem.parent_id == node.id}
      output = (:div, output)
      if children.any?
        output += (:ol, rails_admin_nested_set_builder(children, tree), class: 'dd-list')
      end

      output
    end
  end.join.html_safe
end

#thumbnail_fieldsObject



79
80
81
# File 'lib/rails_admin_nested_set/helper.rb', line 79

def thumbnail_fields
  @nested_set_conf.options[:thumbnail_fields]
end

#thumbnail_sizeObject



88
89
90
# File 'lib/rails_admin_nested_set/helper.rb', line 88

def thumbnail_size
  @nested_set_conf.options[:thumbnail_size]
end

#toggle_fieldsObject



76
77
78
# File 'lib/rails_admin_nested_set/helper.rb', line 76

def toggle_fields
  @nested_set_conf.options[:toggle_fields]
end