Module: SmartListing::Helper
- Defined in:
- app/helpers/smart_listing/helper.rb
Defined Under Namespace
Modules: ControllerExtensions Classes: Builder
Instance Method Summary collapse
-
#smart_listing_for(name, *args, &block) ⇒ Object
Outputs smart list container.
-
#smart_listing_item(name, item_action, object = nil, partial = nil, options = {}) ⇒ Object
Renders single item (i.e for create, update actions).
-
#smart_listing_item_actions(actions = []) ⇒ Object
Render item action buttons (ie. edit, destroy and custom ones).
- #smart_listing_limit_left(name) ⇒ Object
-
#smart_listing_update(name) ⇒ Object
Updates the smart list.
Instance Method Details
#smart_listing_for(name, *args, &block) ⇒ Object
Outputs smart list container
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
# File 'app/helpers/smart_listing/helper.rb', line 175 def smart_listing_for name, *args, &block raise ArgumentError, "Missing block" unless block_given? name = name.to_sym = args. = .delete(:bare) builder = Builder.new(name, @smart_listings[name], self, , block) output = "" data = {} data[SmartListing.config.data_attributes(:max_count)] = @smart_listings[name].max_count if @smart_listings[name].max_count && @smart_listings[name].max_count > 0 data[SmartListing.config.data_attributes(:href)] = @smart_listings[name].href if @smart_listings[name].href data[SmartListing.config.data_attributes(:callback_href)] = @smart_listings[name].callback_href if @smart_listings[name].callback_href data.merge!([:data]) if [:data] if output = capture(builder, &block) else output = content_tag(:div, :class => SmartListing.config.classes(:main), :id => name, :data => data) do concat(content_tag(:div, "", :class => SmartListing.config.classes(:loading))) concat(content_tag(:div, :class => SmartListing.config.classes(:content)) do concat(capture(builder, &block)) end) end end output end |
#smart_listing_item(name, item_action, object = nil, partial = nil, options = {}) ⇒ Object
Renders single item (i.e for create, update actions)
280 281 282 283 284 285 286 287 288 289 |
# File 'app/helpers/smart_listing/helper.rb', line 280 def smart_listing_item name, item_action, object = nil, partial = nil, = {} name = name.to_sym type = object.class.name.downcase.to_sym if object id = [:id] || object.try(:id) valid = [:valid] if .has_key?(:valid) object_key = .delete(:object_key) || :object new = .delete(:new) render(:partial => "smart_listing/item/#{item_action.to_s}", :locals => {:name => name, :id => id, :valid => valid, :object_key => object_key, :object => object, :part => partial, :new => new}) end |
#smart_listing_item_actions(actions = []) ⇒ Object
Render item action buttons (ie. edit, destroy and custom ones)
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 |
# File 'app/helpers/smart_listing/helper.rb', line 206 def smart_listing_item_actions actions = [] content_tag(:span) do actions.each do |action| next unless action.is_a?(Hash) if action.has_key?(:if) unless action[:if] concat(render(:partial => 'smart_listing/action_inactive')) next end end action_name = action[:name].to_sym case action_name when :show locals = { :url => action.delete(:url), :icon => action.delete(:icon), } concat(render(:partial => 'smart_listing/action_show', :locals => locals)) when :edit locals = { :url => action.delete(:url), :icon => action.delete(:icon), } concat(render(:partial => 'smart_listing/action_edit', :locals => locals)) when :destroy locals = { :url => action.delete(:url), :icon => action.delete(:icon), :confirmation => action.delete(:confirmation), } concat(render(:partial => 'smart_listing/action_delete', :locals => locals)) when :custom locals = { :url => action.delete(:url), :icon => action.delete(:icon), :html_options => action, } concat(render(:partial => 'smart_listing/action_custom', :locals => locals)) else concat(render(:partial => "smart_listing/action_#{action_name}", :locals => {:action => action})) end end end end |
#smart_listing_limit_left(name) ⇒ Object
253 254 255 256 257 258 |
# File 'app/helpers/smart_listing/helper.rb', line 253 def smart_listing_limit_left name name = name.to_sym smart_listing = @smart_listings[name] smart_listing.max_count - smart_listing.count end |
#smart_listing_update(name) ⇒ Object
Updates the smart list
264 265 266 267 268 269 270 271 272 273 274 275 276 277 |
# File 'app/helpers/smart_listing/helper.rb', line 264 def smart_listing_update name name = name.to_sym smart_listing = @smart_listings[name] builder = Builder.new(name, smart_listing, self, {}, nil) render(:partial => 'smart_listing/update_list', :locals => { :name => smart_listing.name, :part => smart_listing.partial, :smart_listing => builder, :smart_listing_data => { SmartListing.config.data_attributes(:params) => smart_listing.all_params, SmartListing.config.data_attributes(:max_count) => smart_listing.max_count, } }) end |