Module: SmartListing::Helper

Defined in:
app/helpers/smart_listing/helper.rb

Defined Under Namespace

Modules: ControllerExtensions Classes: Builder

Instance Method Summary collapse

Instance Method Details

#smart_listing_for(name, *args, &block) ⇒ Object

Outputs smart list container

Raises:

  • (ArgumentError)


160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
# File 'app/helpers/smart_listing/helper.rb', line 160

def smart_listing_for name, *args, &block
  raise ArgumentError, "Missing block" unless block_given?
  name = name.to_sym
  options = args.extract_options!
  bare = options.delete(:bare)

  builder = Builder.new(name, @smart_listings[name], self, options, block)

  output = ""

  data = {}
  data['max-count'] = @smart_listings[name].max_count if @smart_listings[name].max_count && @smart_listings[name].max_count > 0
  data['href'] = @smart_listings[name].href if @smart_listings[name].href
  data['callback_href'] = @smart_listings[name].callback_href if @smart_listings[name].callback_href
  data.merge!(options[:data]) if options[:data]

  if bare
    output = capture(builder, &block)
  else
    output = (:div, :class => "smart_listing", :id => name, :data => data) do
      concat((:div, "", :class => "loading"))
      concat((:div, :class => "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)



259
260
261
262
263
264
265
266
267
# File 'app/helpers/smart_listing/helper.rb', line 259

def smart_listing_item name, item_action, object = nil, partial = nil, options = {}
  name = name.to_sym
  type = object.class.name.downcase.to_sym if object
  id = options[:id] || object.try(:id)
  valid = options[:valid] if options.has_key?(:valid)
  object_key = options.delete(:object_key) || :object

  render(:partial => "smart_listing/item/#{item_action.to_s}", :locals => {:name => name, :id => id, :valid => valid, :object_key => object_key, :object => object, :part => partial})
end

#smart_listing_item_actions(actions = []) ⇒ Object

Render item action buttons (ie. edit, destroy and custom ones)



191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
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
# File 'app/helpers/smart_listing/helper.rb', line 191

def smart_listing_item_actions actions = []
  (: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 :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



232
233
234
235
236
237
# File 'app/helpers/smart_listing/helper.rb', line 232

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



243
244
245
246
247
248
249
250
251
252
253
254
255
256
# File 'app/helpers/smart_listing/helper.rb', line 243

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 => {
      :params => smart_listing.all_params,
      'max-count' => smart_listing.max_count,
    }
  })
end