Module: Fae::ViewHelper

Defined in:
app/helpers/fae/view_helper.rb

Instance Method Summary collapse

Instance Method Details

#attr_toggle(item, column) ⇒ Object Also known as: fae_toggle



35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'app/helpers/fae/view_helper.rb', line 35

def attr_toggle(item, column)
  active = item.send(column)
  link_class = active ? 'slider-yes-selected' : ''
  model_name = item.class.to_s.gsub('::','__').underscore.pluralize
  url = fae.toggle_path(model_name, item.id.to_s, column)

  link_to url, class: "slider-wrapper #{link_class}", method: :post, remote: true do
    '<div class="slider-options">
      <div class="slider-option slider-option-yes">Yes</div>
      <div class="slider-option-selector"></div>
      <div class="slider-option slider-option-no">No</div>
    </div>'.html_safe
  end
end

#fae_avatar(user = current_user) ⇒ Object



134
135
136
137
# File 'app/helpers/fae/view_helper.rb', line 134

def fae_avatar(user = current_user)
  hash = Digest::MD5.hexdigest(user.email.downcase)
  "https://secure.gravatar.com/avatar/#{hash}?s=80&d=mm"
end

#fae_clone_button(item) ⇒ Object



52
53
54
55
56
57
# File 'app/helpers/fae/view_helper.rb', line 52

def fae_clone_button(item)
  return if item.blank?
  link_to "#{@index_path}?from_existing=#{item.id}", method: :post, title: 'Clone', class: 'js-tooltip table-action', data: { confirm: t('fae.clone_confirmation') } do
    concat  :i, nil, class: 'icon-copy'
  end
end

#fae_content_form(f, attribute, label: nil, hint: nil, helper_text: nil, markdown: nil, markdown_supported: nil, input_options: nil) ⇒ Object



24
25
26
# File 'app/helpers/fae/view_helper.rb', line 24

def fae_content_form(f, attribute, label: nil, hint: nil, helper_text: nil, markdown: nil, markdown_supported: nil, input_options: nil)
  render 'fae/application/content_form', f: f, attribute: attribute, label: label, hint: hint, helper_text: helper_text, markdown: markdown, markdown_supported: markdown_supported, input_options: input_options
end

#fae_date_format(datetime, timezone = @option.time_zone) ⇒ Object



4
5
6
# File 'app/helpers/fae/view_helper.rb', line 4

def fae_date_format(datetime, timezone = @option.time_zone)
  datetime.in_time_zone(timezone).strftime('%m/%d/%y') if is_date_or_time?(datetime)
end

#fae_datetime_format(datetime, timezone = @option.time_zone) ⇒ Object



8
9
10
# File 'app/helpers/fae/view_helper.rb', line 8

def fae_datetime_format(datetime, timezone = @option.time_zone)
  datetime.in_time_zone(timezone).strftime("%b %-d, %Y %l:%M%P %Z") if is_date_or_time?(datetime)
end

#fae_delete_button(item, delete_path = nil, *custom_attrs) ⇒ Object



59
60
61
62
63
64
65
66
67
# File 'app/helpers/fae/view_helper.rb', line 59

def fae_delete_button(item, delete_path = nil, *custom_attrs)
  return if item.blank?
  delete_path ||= polymorphic_path([main_app, fae_scope, item.try(:fae_parent), item])
  attrs = { method: :delete, title: 'Delete', class: 'js-tooltip table-action', data: { confirm: t('fae.delete_confirmation') } }
  attrs.deep_merge!(custom_attrs[0]) if custom_attrs.present?
  link_to delete_path, attrs do
    concat  :i, nil, class: 'icon-trash'
  end
end

#fae_file_form(f, file_name, label: nil, helper_text: nil, required: nil) ⇒ Object



20
21
22
# File 'app/helpers/fae/view_helper.rb', line 20

def fae_file_form(f, file_name, label: nil, helper_text: nil, required: nil)
  render 'fae/application/file_uploader', f: f, file_name: file_name, label: label, required: required, helper_text: helper_text
end

#fae_filter_form(options = {}, &block) ⇒ 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
# File 'app/helpers/fae/view_helper.rb', line 75

def fae_filter_form(options = {}, &block)
  options[:collection] ||= @items
  options[:action]     ||= "#{@index_path}/filter"
  options[:title]      ||= "Search #{@klass_humanized.pluralize.titleize}"
  options[:search]       = true if options[:search].nil?
  options[:cookie_key] ||= false

  return if options[:collection].blank?

  form_hash = { class: 'js-filter-form table-filter-area' }
  form_hash['data-cookie-key'] = options[:cookie_key] if options[:cookie_key].present?

  filter_header = (:div, class: 'table-filter-header') do
    concat  :h4, options[:title]
    concat filter_search_field if options[:search]
  end

  form_tag(options[:action], form_hash) do
    concat filter_header

    if block_given?
      filter_group_wrapper = (:div, class: 'table-filter-group-wrapper') do
        concat capture(&block)
        concat (:div, (:a, 'Reset Search', class: 'js-reset-btn button -small hidden', href: '#'), class: 'table-filter-group')
      end
    end

    concat filter_group_wrapper
    # I know this `unless !` looks like it should be an `if` but it's definitely supposed to be `unless !`
    concat submit_tag 'Apply Filters', class: 'hidden' unless !options[:search]
  end
end

#fae_filter_select(attribute, options = {}) ⇒ Object



108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
# File 'app/helpers/fae/view_helper.rb', line 108

def fae_filter_select(attribute, options = {})
  options[:label]           ||= attribute.to_s.titleize
  options[:collection]      ||= default_collection_from_attribute(attribute)
  options[:label_method]    ||= :fae_display_field
  options[:placeholder]       = "All #{options[:label].pluralize}" if options[:placeholder].nil?
  options[:options]         ||= []
  options[:grouped_by]      ||= nil
  options[:grouped_options] ||= []

  # grouped_by takes priority over grouped_options
  if options[:grouped_by].present?
    select_options = filter_generate_select_group(options[:collection], options[:grouped_by], options[:label_method])
  elsif options[:grouped_options].present?
    select_options = grouped_options_for_select(options[:grouped_options])
  else
    select_options = options_from_collection_for_select(options[:collection], 'id', options[:label_method])
    select_options = options_for_select(options[:options]) if options[:options].present?
  end


   :div, class: 'table-filter-group' do
    concat label_tag "filter[#{attribute}]", options[:label]
    concat select_tag "filter[#{attribute}]", select_options, prompt: options[:placeholder]
  end
end

#fae_image_form(f, image_name, label: nil, alt_label: nil, caption_label: nil, show_alt: nil, show_caption: nil, required: nil, helper_text: nil, alt_helper_text: nil, caption_helper_text: nil, attached_as: nil) ⇒ Object



16
17
18
# File 'app/helpers/fae/view_helper.rb', line 16

def fae_image_form(f, image_name, label: nil, alt_label: nil, caption_label: nil, show_alt: nil, show_caption: nil, required: nil, helper_text: nil, alt_helper_text: nil, caption_helper_text: nil, attached_as: nil)
  render 'fae/images/image_uploader', f: f, image_name: image_name, label: label, alt_label: alt_label, caption_label: caption_label, show_alt: show_alt, show_caption: show_caption, required: required, helper_text: helper_text, alt_helper_text: alt_helper_text, caption_helper_text: caption_helper_text, attached_as: attached_as
end

#fae_index_image(image, path = nil) ⇒ Object



28
29
30
31
32
33
# File 'app/helpers/fae/view_helper.rb', line 28

def fae_index_image(image, path = nil)
  return if image.blank? || image.asset.blank? || image.asset.thumb.blank?
   :div, class: 'image-mat' do
    link_to_if path.present?, image_tag(image.asset.thumb.url), path
  end
end

#fae_paginate(items) ⇒ Object



139
140
141
142
143
# File 'app/helpers/fae/view_helper.rb', line 139

def fae_paginate(items)
   :nav, class: 'pagination' do
    paginate items, theme: 'fae'
  end
end

#fae_pathObject



12
13
14
# File 'app/helpers/fae/view_helper.rb', line 12

def fae_path
  Rails.application.routes.url_helpers.fae_path[1..-1]
end

#fae_sort_id(item) ⇒ Object



69
70
71
72
73
# File 'app/helpers/fae/view_helper.rb', line 69

def fae_sort_id(item)
  return if item.blank?
  klass = item.class.name.underscore.gsub('/','__')
  "#{klass}_#{item.id}"
end