Module: EffectiveDatatablesPrivateHelper

Defined in:
app/helpers/effective_datatables_private_helper.rb

Overview

These aren’t expected to be called by a developer. They are internal methods.

Instance Method Summary collapse

Instance Method Details

#datatable_bulk_actions(datatable) ⇒ Object



22
23
24
25
26
# File 'app/helpers/effective_datatables_private_helper.rb', line 22

def datatable_bulk_actions(datatable)
  if datatable._bulk_actions.present?
    render(partial: '/effective/datatables/bulk_actions_dropdown', locals: { datatable: datatable }).gsub("'", '"').html_safe
  end
end

#datatable_columns(datatable) ⇒ Object



5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# File 'app/helpers/effective_datatables_private_helper.rb', line 5

def datatable_columns(datatable)
  sortable = datatable.sortable?

  datatable.columns.map do |name, opts|
    {
      className: opts[:col_class],
      name: name,
      responsivePriority: opts[:responsive],
      search: datatable.state[:search][name],
      searchHtml: datatable_search_tag(datatable, name, opts),
      sortable: (opts[:sort] && sortable),
      title: datatable_label_tag(datatable, name, opts),
      visible: datatable.state[:visible][name]
    }
  end.to_json.html_safe
end

#datatable_display_order(datatable) ⇒ Object



28
29
30
# File 'app/helpers/effective_datatables_private_helper.rb', line 28

def datatable_display_order(datatable)
  ((datatable.sortable? && datatable.order_index) ? [datatable.order_index, datatable.order_direction] : false).to_json.html_safe
end

#datatable_filter_tag(form, datatable, name, opts) ⇒ Object



130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# File 'app/helpers/effective_datatables_private_helper.rb', line 130

def datatable_filter_tag(form, datatable, name, opts)
  as = opts[:as].to_s.chomp('_field').to_sym
  value = datatable.state[:filter][name]
  collection = opts[:collection]

  options = {
    autocomplete: 'off',
    feedback: false,
    label: false,
    placeholder: (opts[:label] || name.to_s.titleize),
    value: value,
    wrapper: { class: 'form-group col-auto'}
  }.merge(opts.except(:as, :collection, :parse, :value))

  options[:name] = '' unless datatable._filters_form_required?

  if [:select, :radios, :checks].include?(as)
    options.delete(:name) unless as == :select
    form.public_send(as, name, collection, options) # select, radios, checks
  elsif as == :boolean
    collection ||= [true, false].map { |value| [t("effective_datatables.boolean_#{value}"), value] }
    form.public_send(:select, name, collection, options) # boolean
  elsif as == :string
    form.public_send(:text_field, name, options)
  elsif form.respond_to?(as)
    form.public_send(as, name, options) # check_box, text_area
  else
    form.public_send("#{as}_field", name, options) # text_field, number_field, all the rest.
  end

end

#datatable_label_tag(datatable, name, opts) ⇒ Object



62
63
64
65
66
67
68
69
70
71
72
73
# File 'app/helpers/effective_datatables_private_helper.rb', line 62

def datatable_label_tag(datatable, name, opts)
  case opts[:as]
  when :actions
    (:span, t('effective_datatables.actions'), style: 'display: none;')
  when :bulk_actions
    (:span, t('effective_datatables.bulk_actions'), style: 'display: none;')
  when :reorder
    (:span, t('effective_datatables.reorder'), style: 'display: none;')
  else
    (:span, opts[:label].presence)
  end
end

#datatable_new_resource_button(datatable, name, column) ⇒ Object



41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'app/helpers/effective_datatables_private_helper.rb', line 41

def datatable_new_resource_button(datatable, name, column)
  return unless column[:inline] && (column[:actions][:new] != false)

  action = { action: :new, class: ['btn', column[:btn_class].presence].compact.join(' '), 'data-remote': true }

  if column[:actions][:new].kind_of?(Hash) # This might be active_record_array_collection?
    action = action.merge(column[:actions][:new])

    effective_resource = (datatable.effective_resource || datatable.fallback_effective_resource)
    klass = (column[:actions][:new][:klass] || effective_resource&.klass || datatable.collection_class)
  elsif Array(datatable.effective_resource&.actions).include?(:new)
    effective_resource = datatable.effective_resource
    klass = effective_resource.klass
  else
    return
  end

  # Will only work if permitted
  render_resource_actions(klass, actions: { t('effective_datatables.new') => action }, effective_resource: effective_resource)
end

#datatable_reorder(datatable) ⇒ Object



36
37
38
39
# File 'app/helpers/effective_datatables_private_helper.rb', line 36

def datatable_reorder(datatable)
  return unless datatable.reorder? && EffectiveDatatables.authorized?(self, :update, datatable.collection_class)
  link_to((:span, t('effective_datatables.reorder')), '#', class: 'btn btn-link btn-sm buttons-reorder', disabled: true)
end

#datatable_reset(datatable) ⇒ Object



32
33
34
# File 'app/helpers/effective_datatables_private_helper.rb', line 32

def datatable_reset(datatable)
  link_to((:span, t('effective_datatables.reset')), '#', class: 'btn btn-link btn-sm buttons-reset-search')
end

#datatable_scope_tag(form, datatable, opts = {}) ⇒ Object



162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
# File 'app/helpers/effective_datatables_private_helper.rb', line 162

def datatable_scope_tag(form, datatable, opts = {})
  collection = datatable._scopes.map { |name, opts| [opts[:label], name] }
  value = datatable.state[:scope]

  options = {
    autocomplete: 'off',
    buttons: true,
    checked: value,
    feedback: false,
    label: false,
    required: false,
    wrapper: { class: 'form-group col-auto'}
  }.merge(opts.except(:checked, :value))

  form.radios :scope, collection, options
end

#datatable_search_tag(datatable, name, opts) ⇒ Object



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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'app/helpers/effective_datatables_private_helper.rb', line 75

def datatable_search_tag(datatable, name, opts)
  return datatable_new_resource_button(datatable, name, opts) if name == :_actions

  return if opts[:search] == false

  # Build the search
  @_effective_datatables_form_builder || effective_form_with(scope: :datatable_search, url: '#') { |f| @_effective_datatables_form_builder = f }
  form = @_effective_datatables_form_builder

  collection = opts[:search].delete(:collection)
  value = datatable.state[:search][name]

  options = opts[:search].except(:fuzzy).merge!(
    name: nil,
    feedback: false,
    label: false,
    value: value,
    data: { 'column-name': name, 'column-index': opts[:index] }
  )

  case options.delete(:as)
  when :string, :text, :number
    form.text_field name, options
  when :date, :datetime
    form.date_field name, options.reverse_merge(
      date_linked: false, prepend: false, input_js: { useStrict: true, keepInvalid: true }
    )
  when :time
    form.time_field name, options.reverse_merge(
      date_linked: false, prepend: false, input_js: { useStrict: false, keepInvalid: true }
    )
  when :select, :boolean
    options[:input_js] = (options[:input_js] || {}).reverse_merge(placeholder: '')

    form.select name, collection, options
  when :bulk_actions
    options[:data]['role'] = 'bulk-actions'
    form.check_box name, options.merge(label: ' ')
  end
end

#render_datatable_chart(datatable, name) ⇒ Object



188
189
190
191
192
193
194
195
196
197
198
# File 'app/helpers/effective_datatables_private_helper.rb', line 188

def render_datatable_chart(datatable, name)
  raise 'expected datatable to be present' unless datatable

  datatable.view ||= self
  return unless datatable._charts[name].present?

  chart = datatable._charts[name]
  chart_data = datatable.to_json[:charts][name][:data]

  render partial: chart[:partial], locals: { datatable: datatable, chart: chart, chart_data: chart_data }
end

#render_datatable_charts(datatable) ⇒ Object



179
180
181
182
183
184
185
186
# File 'app/helpers/effective_datatables_private_helper.rb', line 179

def render_datatable_charts(datatable)
  raise 'expected datatable to be present' unless datatable

  datatable.view ||= self
  return unless datatable._charts.present?

  datatable._charts.map { |name, _| render_datatable_chart(datatable, name) }.join.html_safe
end

#render_datatable_filters(datatable) ⇒ Object



116
117
118
119
120
121
122
123
124
125
126
127
128
# File 'app/helpers/effective_datatables_private_helper.rb', line 116

def render_datatable_filters(datatable)
  raise 'expected datatable to be present' unless datatable

  datatable.view ||= self
  return unless datatable._scopes.present? || datatable._filters.present?

  if datatable._filters_form_required?
    render partial: 'effective/datatables/filters', locals: { datatable: datatable }
  else
    render(partial: 'effective/datatables/filters', locals: { datatable: datatable }).gsub('<form', '<div').gsub('/form>', '/div>').html_safe
  end

end