Module: AbAdmin::Views::AdminHelpers

Defined in:
lib/ab_admin/views/admin_helpers.rb

Instance Method Summary collapse

Instance Method Details

#admin_commentsObject



117
118
119
# File 'lib/ab_admin/views/admin_helpers.rb', line 117

def admin_comments
  render 'admin/admin_comments/comments'
end

#admin_editable(item, attr, opts = nil) ⇒ Object



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
72
73
74
75
76
77
78
79
80
81
82
83
84
# File 'lib/ab_admin/views/admin_helpers.rb', line 33

def admin_editable(item, attr, opts=nil)
  opts = {} unless opts.is_a?(Hash)
  if opts[:title]
    title = opts[:title]
  else
    assoc_name = attr.to_s.remove('_id')
    title = item.class.reflect_on_association(assoc_name) ? AbAdmin.display_name(item.send(assoc_name)) : item[attr]
  end
  html_title = admin_pretty_data(title).to_s.html_safe
  return html_title unless can?(:update, item)

  if opts[:collection]
    if opts[:collection].is_a?(Hash)
      opts[:source] = opts[:collection]
    elsif opts[:collection].is_a?(Array)
      opts[:source] = opts[:collection].first.respond_to?(:id) ? opts[:collection].map {|r| [r.id, AbAdmin.display_name(r)]}.to_h : opts[:collection].map {|v| [v, v]}.to_h
    end
  end

  unless opts[:type]
    if opts[:source]
      opts[:type] = 'select'
    else
      case attr.to_s
        when /_at$/
          opts[:type] ||= 'date'
          opts[:title] ||= html_title
        when /^is_/
          opts[:type] ||= 'select'
          opts[:source] ||= {1 => 'yes', 0 => 'no'}
          opts[:value] ||= item[attr] ? 1 : 0
          opts[:title] ||= item[attr] ? 'yes' : 'no'
        when /description|body|content/
          opts[:type] ||= 'textarea'
        else
          opts[:type] ||= 'text'
      end
    end
  end

  data = {
      type: opts[:type],
      source: opts[:source].try(:to_json),
      model: opts[:model] || item.class.model_name.singular,
      accept: opts[:accept],
      url: opts[:url] || "/admin/#{item.class.model_name.plural}/#{item.id}",
      name: attr,
      value: opts[:value] || item[attr],
      title: opts[:title] || item[attr]
  }
  link_to html_title, '#', class: "editable #{opts[:class]}", placeholder: opts[:placeholder], data: data.update(opts[:data] || {})
end

#admin_form_for(object, *args, &block) ⇒ Object



4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# File 'lib/ab_admin/views/admin_helpers.rb', line 4

def admin_form_for(object, *args, &block)
  record = Array(object).last
  record.fallbacks_for_empty_translations = false if record.respond_to?(:fallbacks_for_empty_translations)
  options = args.extract_options!
  options[:wrapper] = :bootstrap
  options[:remote] = true if request.xhr?
  options[:html] ||= {}
  options[:html][:class] = Array(options[:html][:class])
  options[:html][:class] << 'form-horizontal' if options[:html][:class].empty?
  options[:html][:class] << 'save-error' if Array(object).last.errors.of_kind?(:base, :changed)
  options[:builder] ||= ::AbAdmin::Views::FormBuilder
  options[:html]['data-id'] = record.id
  if controller_name == 'manager' && resource_class == Array(object).last.class
    options[:url] ||= object.new_record? ? collection_path : resource_path
  end
  if options.delete(:nested)
    simple_nested_form_for([:admin, object].flatten, *(args << options), &block)
  else
    simple_form_for([:admin, object].flatten, *(args << options), &block)
  end
end

#admin_layout_cssObject



99
100
101
102
103
104
105
# File 'lib/ab_admin/views/admin_helpers.rb', line 99

def admin_layout_css
  css = []
  css << 'content_with_sidebar' if settings[:sidebar] || content_for?(:sidebar)
  css << 'well' if !@settings[:well].is_a?(FalseClass) && (collection_action? || %w(show history).include?(action_name)) && @settings[:current_index_view] != :tree
  css << "#{settings[:current_index_view]}_view"
  css
end

#admin_pretty_data(object) ⇒ Object



137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
# File 'lib/ab_admin/views/admin_helpers.rb', line 137

def admin_pretty_data(object)
  case object
    when Integer, BigDecimal, Float
      object
    when String
      object.html_safe? ? object : object.no_html.gsub("\n", '<br/>').html_safe
    when TrueClass, FalseClass
      color_bool(object)
    when Date
      I18n.l(object, format: AbAdmin.date_format)
    when DateTime, Time, ActiveSupport::TimeWithZone
      I18n.l(object, format: AbAdmin.datetime_format)
    when NilClass
      ''
    when ActiveRecord::Base
      admin_show_link(object)
    else
      AbAdmin.safe_display_name(object) || object
  end
end

#admin_site_nameObject



198
199
200
# File 'lib/ab_admin/views/admin_helpers.rb', line 198

def admin_site_name
  AbAdmin.site_name.is_a?(String) ? AbAdmin.site_name : AbAdmin.site_name.call
end

#admin_titleObject



107
108
109
110
111
# File 'lib/ab_admin/views/admin_helpers.rb', line 107

def admin_title
  base = @breadcrumbs ? @breadcrumbs.map{|b| b[:name] }.reverse : []
  base << @page_title || 'Ab Admin'
  base.join(' - ')
end

#admin_tree(items) ⇒ Object



94
95
96
97
# File 'lib/ab_admin/views/admin_helpers.rb', line 94

def admin_tree(items)
  return if items.blank?
  items.map { |item| admin_tree_item(item) }.join.html_safe
end

#admin_tree_item(item) ⇒ Object



90
91
92
# File 'lib/ab_admin/views/admin_helpers.rb', line 90

def admin_tree_item(item)
  render 'tree_item', item: item, child_tree: admin_tree(item.cached_children)
end

#color_bool(val, options = {}) ⇒ Object



121
122
123
124
125
126
# File 'lib/ab_admin/views/admin_helpers.rb', line 121

def color_bool(val, options={})
  options.reverse_merge!(true_css: 'badge-success', false_css: nil, nil_css: nil)
  css = options["#{val.inspect}_css".to_sym]
  text = val.nil? ? '?' : (val ? '+' : '-')
  %(<span class="badge #{css}">#{text}</span>).html_safe
end

#copy_btn(text, btn_text: nil, tooltip: false) ⇒ Object



189
190
191
192
# File 'lib/ab_admin/views/admin_helpers.rb', line 189

def copy_btn(text, btn_text: nil, tooltip: false)
  return if text.blank?
  (:div, "#{icon('share')} #{btn_text}".html_safe, 'data-clipboard-text' => text, class: ['btn', 'btn-mini', 'js-copy', ('tool' if tooltip)], title: (text.no_html if tooltip))
end

#editable_bool(item, attr, label: nil, wrapper_class: nil) ⇒ Object



26
27
28
29
30
31
# File 'lib/ab_admin/views/admin_helpers.rb', line 26

def editable_bool(item, attr, label: nil, wrapper_class: nil)
  url = "/admin/#{item.class.model_name.plural}/#{item.id}.json"
  html = check_box_tag("#{item.class.model_name.singular}[#{attr}]", '1', item.send(attr), class: 'js-auto-submit-checkbox', data: {url: url})
  html = (:label, "#{label}&nbsp;#{html}".html_safe) if label
   :div, html, class: ['auto-submit-checkbox-wrap', 'white-space-nowrap', ('tool' unless label), wrapper_class], title: attr
end

#ha(attr) ⇒ Object



194
195
196
# File 'lib/ab_admin/views/admin_helpers.rb', line 194

def ha(attr)
  resource_class.han(attr)
end

#icon(name, white = false, title: nil) ⇒ Object



128
129
130
131
# File 'lib/ab_admin/views/admin_helpers.rb', line 128

def icon(name, white=false, title: nil)
  title_html = %( title="#{h(title)}") if title
  "<i class='icon-#{name}#{' icon-white' if white}#{' tool' if title}'#{title_html}></i> ".html_safe
end

#include_fvObject



113
114
115
# File 'lib/ab_admin/views/admin_helpers.rb', line 113

def include_fv
  "<script type='text/javascript'>window.fv = #{fv.to_h.to_json}</script>".html_safe
end

#input_set(title, options = {}, &block) ⇒ Object

input_set ‘title’, legend_class: ‘do_sort’, label_class: ‘label-info’ do



182
183
184
185
186
187
# File 'lib/ab_admin/views/admin_helpers.rb', line 182

def input_set(title, options={}, &block)
  options.reverse_merge!(class: "inputs well well-small clearfix #{options.delete(:legend_class) || 'do_sort'}", id: options.delete(:legend_id))
  html = title ? (:label, title, class: "input_set label #{options.delete(:label_class)}") : ''.html_safe
  html.concat(capture(&block)) if block_given?
  (:div, html, options)
end

#item_image(item, assoc = :photo, size = :thumb) ⇒ Object



177
178
179
# File 'lib/ab_admin/views/admin_helpers.rb', line 177

def item_image(item, assoc=:photo, size=:thumb)
  image_tag_if(item.send(assoc).try(:url, size))
end


162
163
164
165
166
167
168
169
170
171
172
173
174
175
# File 'lib/ab_admin/views/admin_helpers.rb', line 162

def item_image_link(item, options={})
  options.reverse_merge!(assoc: :picture)
  options[:url] ||= resource_path(item)
  image = item.send(options[:assoc])
  return nil unless image
  version = options[:version] || image.class.thumb_size
  image_url_method = options[:image_url_method] || :url
  popover_content = "<img class='image_link_popover popover_#{options[:assoc]}' src='#{image.send(image_url_method, options[:full_version])}'></img>"
  popover_data = {content: popover_content, title: AbAdmin.display_name(item)}

  html_options = options.delete(:html_options) || {}
  html_options.reverse_merge!(rel: 'popover', remote: options[:remote], data: popover_data)
  link_to image_tag(image.send(image_url_method, version)), options[:url], html_options
end

#locale_flag(code) ⇒ Object



133
134
135
# File 'lib/ab_admin/views/admin_helpers.rb', line 133

def locale_flag(code)
  (AbAdmin.locale_to_country_code[code] || code).to_s[0..1].upcase.tr('A-Z', '🇦-🇿')
end

#method_or_proc_on(symbol_or_proc, object = nil) ⇒ Object



209
210
211
212
213
214
215
216
# File 'lib/ab_admin/views/admin_helpers.rb', line 209

def method_or_proc_on(symbol_or_proc, object=nil)
  return unless symbol_or_proc
  if symbol_or_proc.is_a?(Symbol)
    (object || self).public_send(symbol_or_proc)
  else
    object ? instance_exec(object, &symbol_or_proc) : instance_exec(&symbol_or_proc)
  end
end

#option_conditions_met?(options, object = nil) ⇒ Boolean

Returns:

  • (Boolean)


202
203
204
205
206
207
# File 'lib/ab_admin/views/admin_helpers.rb', line 202

def option_conditions_met?(options, object=nil)
  return true unless options
  condition = options[:if] || options[:unless]
  return true unless condition
  options[:if] ? method_or_proc_on(condition, object) : !method_or_proc_on(condition, object)
end

#options_for_ckeditor(options = {}) ⇒ Object



86
87
88
# File 'lib/ab_admin/views/admin_helpers.rb', line 86

def options_for_ckeditor(options = {})
  {width: 930, height: 200, namespace: ''}.update(options)
end

#pretty_data(object) ⇒ Object



158
159
160
# File 'lib/ab_admin/views/admin_helpers.rb', line 158

def pretty_data(object)
  AbAdmin.pretty_data(object)
end