Module: ActiveScaffold::Helpers::IdHelpers
- Included in:
- ControllerHelpers, ViewHelpers
- Defined in:
- lib/active_scaffold/helpers/id_helpers.rb
Overview
A bunch of helper methods to produce the common view ids
Instance Method Summary collapse
- #action_iframe_id(options) ⇒ Object
- #action_link_id(link_action, link_id) ⇒ Object
- #active_scaffold_calculations_id(column = nil) ⇒ Object
- #active_scaffold_column_header_id(column) ⇒ Object
- #active_scaffold_content_id ⇒ Object
- #active_scaffold_id ⇒ Object
- #active_scaffold_messages_id(options = {}) ⇒ Object
- #active_scaffold_tbody_id ⇒ Object
- #association_subform_id(column) ⇒ Object
- #before_header_id ⇒ Object
- #controller_id(controller = (params[:eid] || params[:parent_controller] || params[:controller])) ⇒ Object
- #element_cell_id(options = {}) ⇒ Object
- #element_form_id(options = {}) ⇒ Object
- #element_messages_id(options = {}) ⇒ Object
- #element_row_id(options = {}) ⇒ Object
- #empty_message_id ⇒ Object
- #id_from_controller(controller) ⇒ Object
- #loading_indicator_id(options = {}) ⇒ Object
- #scope_id(scope) ⇒ Object
- #search_input_id ⇒ Object
- #sub_form_id(options = {}) ⇒ Object
- #sub_form_list_id(options = {}) ⇒ Object
- #sub_section_id(options = {}) ⇒ Object
Instance Method Details
#action_iframe_id(options) ⇒ Object
111 112 113 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 111 def action_iframe_id() "#{controller_id}-#{[:action]}-#{[:id]}-iframe" end |
#action_link_id(link_action, link_id) ⇒ Object
45 46 47 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 45 def action_link_id(link_action,link_id) "#{controller_id}-#{link_action}-#{link_id}-link" end |
#active_scaffold_calculations_id(column = nil) ⇒ Object
29 30 31 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 29 def active_scaffold_calculations_id(column = nil) "#{controller_id}-calculations#{'-' + column.name.to_s if column}" end |
#active_scaffold_column_header_id(column) ⇒ Object
49 50 51 52 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 49 def active_scaffold_column_header_id(column) name = column.respond_to?(:name) ? column.name : column.to_s clean_id "#{controller_id}-#{name}-column" end |
#active_scaffold_content_id ⇒ Object
17 18 19 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 17 def active_scaffold_content_id "#{controller_id}-content" end |
#active_scaffold_id ⇒ Object
13 14 15 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 13 def active_scaffold_id "#{controller_id}-active-scaffold" end |
#active_scaffold_messages_id(options = {}) ⇒ Object
25 26 27 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 25 def ( = {}) "#{[:controller_id] || controller_id}-messages" end |
#active_scaffold_tbody_id ⇒ Object
21 22 23 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 21 def active_scaffold_tbody_id "#{controller_id}-tbody" end |
#association_subform_id(column) ⇒ Object
76 77 78 79 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 76 def association_subform_id(column) klass = column.association.associated_class.to_s.underscore clean_id "#{controller_id}-associated-#{klass}" end |
#before_header_id ⇒ Object
37 38 39 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 37 def before_header_id "#{controller_id}-search-container" end |
#controller_id(controller = (params[:eid] || params[:parent_controller] || params[:controller])) ⇒ Object
9 10 11 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 9 def controller_id(controller = (params[:eid] || params[:parent_controller] || params[:controller])) controller_id ||= 'as_' + id_from_controller(controller) end |
#element_cell_id(options = {}) ⇒ Object
61 62 63 64 65 66 67 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 61 def element_cell_id( = {}) [:action] ||= params[:action] [:id] ||= params[:id] [:id] ||= params[:parent_id] [:name] ||= params[:name] clean_id "#{controller_id}-#{[:action]}-#{[:id]}-#{[:name]}-cell" end |
#element_form_id(options = {}) ⇒ Object
69 70 71 72 73 74 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 69 def element_form_id( = {}) [:action] ||= params[:action] [:id] ||= params[:id] [:id] ||= params[:parent_id] clean_id "#{controller_id}-#{[:action]}-#{[:id]}-form" end |
#element_messages_id(options = {}) ⇒ Object
104 105 106 107 108 109 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 104 def ( = {}) [:action] ||= params[:action] [:id] ||= params[:id] [:id] ||= params[:parent_id] clean_id "#{controller_id}-#{[:action]}-#{[:id]}-messages" end |
#element_row_id(options = {}) ⇒ Object
54 55 56 57 58 59 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 54 def element_row_id( = {}) [:action] ||= params[:action] [:id] ||= params[:id] [:id] ||= params[:parent_id] clean_id "#{[:controller_id] || controller_id}-#{[:action]}-#{[:id]}-row" end |
#empty_message_id ⇒ Object
33 34 35 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 33 def "#{controller_id}-empty-message" end |
#id_from_controller(controller) ⇒ Object
5 6 7 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 5 def id_from_controller(controller) controller.to_s.gsub("/", "__").html_safe end |
#loading_indicator_id(options = {}) ⇒ Object
81 82 83 84 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 81 def loading_indicator_id( = {}) [:action] ||= params[:action] clean_id "#{controller_id}-#{[:action]}-#{[:id]}-loading-indicator" end |
#scope_id(scope) ⇒ Object
115 116 117 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 115 def scope_id(scope) scope.gsub(/(\[|\])/, '_').gsub('__', '_').gsub(/_$/, '') end |
#search_input_id ⇒ Object
41 42 43 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 41 def search_input_id "#{controller_id}-search-input" end |
#sub_form_id(options = {}) ⇒ Object
92 93 94 95 96 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 92 def sub_form_id( = {}) [:id] ||= params[:id] [:id] ||= params[:parent_id] clean_id "#{controller_id}-#{[:id]}-#{[:association]}-subform" end |
#sub_form_list_id(options = {}) ⇒ Object
98 99 100 101 102 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 98 def sub_form_list_id( = {}) [:id] ||= params[:id] [:id] ||= params[:parent_id] clean_id "#{controller_id}-#{[:id]}-#{[:association]}-subform-list" end |
#sub_section_id(options = {}) ⇒ Object
86 87 88 89 90 |
# File 'lib/active_scaffold/helpers/id_helpers.rb', line 86 def sub_section_id( = {}) [:id] ||= params[:id] [:id] ||= params[:parent_id] clean_id "#{controller_id}-#{[:id]}-#{[:sub_section]}-subsection" end |