Class: ActiveScaffold::DataStructures::ActionLink
- Defined in:
- lib/active_scaffold/data_structures/action_link.rb
Constant Summary collapse
- NO_OPTIONS =
{}.freeze
Instance Attribute Summary collapse
-
#action ⇒ Object
the action-path for this link.
-
#column ⇒ Object
nested action_links are referencing a column.
- #controller ⇒ Object
-
#controller_actions ⇒ Object
for links in singular associations, copied from column.actions_for_association_links, excluding actions not available in association’s controller.
-
#crud_type ⇒ Object
the crud type of the (eventual?) action.
-
#dhtml_confirm ⇒ Object
if the action uses a DHTML based (i.e. 2-phase) confirmation.
-
#dynamic_parameters ⇒ Object
a block for dynamic_parameters.
- #html_options ⇒ Object
-
#ignore_method ⇒ Object
what method to call on the controller to see if this action_link should be visible if method return true, link won’t be displayed.
-
#image ⇒ Object
image to use => ‘arrow.png’, :size => ‘16x16’.
-
#keep_open ⇒ Object
writeonly
don’t close the panel when another action link is open.
- #label(record = nil) ⇒ Object
-
#method ⇒ Object
the RESTful method.
- #parameters ⇒ Object
- #position ⇒ Object
-
#refresh_on_close ⇒ Object
enable it to refresh the parent row when the view is closed.
- #security_method ⇒ Object
-
#toggle ⇒ Object
if active class is added to link when current request matches link enabled automatically for links to index with parameters or dynamic parameters disable when is not needed so current request match check is skipped.
-
#type ⇒ Object
what type of link this is.
-
#weight ⇒ Object
the weight for this link in the action links collection, it will be used to sort the collection.
Instance Method Summary collapse
- #confirm(label = '') ⇒ Object
-
#confirm=(value) ⇒ Object
if the action requires confirmation.
- #confirm? ⇒ Boolean
- #dhtml_confirm? ⇒ Boolean
- #freeze ⇒ Object
-
#initialize(action, options = {}) ⇒ ActionLink
constructor
provides a quick way to set any property of the object from a hash.
- #initialize_copy(action_link) ⇒ Object
-
#inline=(val) ⇒ Object
an “inline” link is inserted into the existing page exclusive with popup? and page?.
- #inline? ⇒ Boolean
- #keep_open? ⇒ Boolean
- #name_to_cache ⇒ Object
-
#nested_link? ⇒ Boolean
indicates that this a nested_link.
-
#page=(val) ⇒ Object
a “page” link displays by reloading the current page exclusive with inline? and popup?.
- #page? ⇒ Boolean
-
#popup=(val) ⇒ Object
a “popup” link displays in a separate (browser?) window.
- #popup? ⇒ Boolean
- #security_method_set? ⇒ Boolean
- #static_controller? ⇒ Boolean
Constructor Details
#initialize(action, options = {}) ⇒ ActionLink
provides a quick way to set any property of the object from a hash
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 6 def initialize(action, = {}) # set defaults @action = action @label = action @confirm = false @type = :collection @method = :get @crud_type = case action&.to_sym when :destroy then :delete when :create, :new then :create when :update, :edit then :update else :read end @column = nil @image = nil @controller = nil @parameters = nil @dynamic_parameters = nil @html_options = nil @weight = 0 self.inline = true # apply quick properties .each_pair do |k, v| setter = "#{k}=" send(setter, v) if respond_to? setter end self.toggle = self.action&.to_sym == :index && !position && (parameters.present? || dynamic_parameters) unless .include? :toggle end |
Instance Attribute Details
#action ⇒ Object
the action-path for this link. what page to request? this is required!
46 47 48 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 46 def action @action end |
#column ⇒ Object
nested action_links are referencing a column
214 215 216 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 214 def column @column end |
#controller ⇒ Object
51 52 53 54 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 51 def controller @controller = @controller.call if @controller.is_a?(Proc) @controller end |
#controller_actions ⇒ Object
for links in singular associations, copied from column.actions_for_association_links, excluding actions not available in association’s controller
225 226 227 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 225 def controller_actions @controller_actions end |
#crud_type ⇒ Object
the crud type of the (eventual?) action. different than :method, because this crud action may not be imminent. this is used to determine record-level authorization (e.g. record.authorized_for?(:crud_type => link.crud_type). options are :create, :read, :update, and :delete
142 143 144 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 142 def crud_type @crud_type end |
#dhtml_confirm ⇒ Object
if the action uses a DHTML based (i.e. 2-phase) confirmation
110 111 112 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 110 def dhtml_confirm @dhtml_confirm end |
#dynamic_parameters ⇒ Object
a block for dynamic_parameters
73 74 75 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 73 def dynamic_parameters @dynamic_parameters end |
#html_options ⇒ Object
208 209 210 211 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 208 def return @html_options || NO_OPTIONS if frozen? @html_options ||= NO_OPTIONS.dup end |
#ignore_method ⇒ Object
what method to call on the controller to see if this action_link should be visible if method return true, link won’t be displayed
137 138 139 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 137 def ignore_method @ignore_method end |
#image ⇒ Object
image to use => ‘arrow.png’, :size => ‘16x16’
92 93 94 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 92 def image @image end |
#keep_open=(value) ⇒ Object (writeonly)
don’t close the panel when another action link is open
217 218 219 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 217 def keep_open=(value) @keep_open = value end |
#label(record = nil) ⇒ Object
80 81 82 83 84 85 86 87 88 89 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 80 def label(record = nil) case @label when Symbol ActiveScaffold::Registry.cache(:translations, @label) { as_(@label) } when Proc @label.call(record) else @label end end |
#method ⇒ Object
the RESTful method
76 77 78 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 76 def method @method end |
#parameters ⇒ Object
62 63 64 65 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 62 def parameters return @parameters || NO_OPTIONS if frozen? @parameters ||= NO_OPTIONS.dup end |
#position ⇒ Object
196 197 198 199 200 201 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 196 def position return @position unless @position.nil? || @position == true return :replace if type == :member return :top if type == :collection raise "what should the default position be for #{type}?" end |
#refresh_on_close ⇒ Object
enable it to refresh the parent row when the view is closed
133 134 135 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 133 def refresh_on_close @refresh_on_close end |
#security_method ⇒ Object
124 125 126 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 124 def security_method @security_method || "#{action}_authorized?" end |
#toggle ⇒ Object
if active class is added to link when current request matches link enabled automatically for links to index with parameters or dynamic parameters disable when is not needed so current request match check is skipped
70 71 72 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 70 def toggle @toggle end |
#type ⇒ Object
what type of link this is. currently supported values are :collection and :member.
204 205 206 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 204 def type @type end |
#weight ⇒ Object
the weight for this link in the action links collection, it will be used to sort the collection
43 44 45 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 43 def weight @weight end |
Instance Method Details
#confirm(label = '') ⇒ Object
100 101 102 103 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 100 def confirm(label = '') return @confirm if !confirm? || @confirm.is_a?(String) ActiveScaffold::Registry.cache(:translations, @confirm) { as_(@confirm) } % {label: label} end |
#confirm=(value) ⇒ Object
if the action requires confirmation
95 96 97 98 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 95 def confirm=(value) @dhtml_confirm = nil if value @confirm = value end |
#confirm? ⇒ Boolean
105 106 107 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 105 def confirm? @confirm.present? end |
#dhtml_confirm? ⇒ Boolean
116 117 118 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 116 def dhtml_confirm? @dhtml_confirm.present? end |
#freeze ⇒ Object
244 245 246 247 248 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 244 def freeze # force generating cache_key, except for column's link without action, or polymorphic associations name_to_cache if action && !column&.association&.polymorphic? super end |
#initialize_copy(action_link) ⇒ Object
37 38 39 40 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 37 def initialize_copy(action_link) self.parameters = parameters.clone if action_link.instance_variable_get(:@parameters) self. = .clone if action_link.instance_variable_get(:@html_options) end |
#inline=(val) ⇒ Object
an “inline” link is inserted into the existing page exclusive with popup? and page?
146 147 148 149 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 146 def inline=(val) @inline = (val == true) self.popup = self.page = false if @inline end |
#inline? ⇒ Boolean
151 152 153 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 151 def inline? @inline end |
#keep_open? ⇒ Boolean
218 219 220 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 218 def keep_open? @keep_open end |
#name_to_cache ⇒ Object
232 233 234 235 236 237 238 239 240 241 242 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 232 def name_to_cache return @name_to_cache if defined? @name_to_cache [ controller || 'self', type, action, *parameters.map { |k, v| "#{k}=#{v.is_a?(Array) ? v.join(',') : v}" } ].compact.join('_').tap do |name_to_cache| @name_to_cache = name_to_cache unless frozen? end end |
#nested_link? ⇒ Boolean
indicates that this a nested_link
228 229 230 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 228 def nested_link? @column || parameters&.dig(:named_scope) end |
#page=(val) ⇒ Object
a “page” link displays by reloading the current page exclusive with inline? and popup?
173 174 175 176 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 173 def page=(val) @page = (val == true) self.inline = self.popup = false if @page end |
#page? ⇒ Boolean
178 179 180 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 178 def page? @page end |
#popup=(val) ⇒ Object
a “popup” link displays in a separate (browser?) window. this will eventually take arguments. exclusive with inline? and page?
157 158 159 160 161 162 163 164 165 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 157 def popup=(val) @popup = (val == true) return unless @popup self.inline = self.page = false # the :method parameter doesn't mix with the :popup parameter # when/if we start using DHTML popups, we can bring :method back self.method = nil end |
#popup? ⇒ Boolean
167 168 169 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 167 def popup? @popup end |
#security_method_set? ⇒ Boolean
128 129 130 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 128 def security_method_set? @security_method.present? end |
#static_controller? ⇒ Boolean
56 57 58 |
# File 'lib/active_scaffold/data_structures/action_link.rb', line 56 def static_controller? !(@controller.is_a?(Proc) || (@controller == :polymorph)) end |