Module: AbstractController::Layouts::ClassMethods

Defined in:
lib/abstract_controller/layouts.rb

Defined Under Namespace

Modules: LayoutConditions

Instance Method Summary collapse

Instance Method Details

#_implied_layout_nameObject

If no layout is supplied, look for a template named the return value of this method.

Returns

  • String - A template name



266
267
268
# File 'lib/abstract_controller/layouts.rb', line 266

def _implied_layout_name
  controller_path
end

#_write_layout_methodObject

Creates a _layout method to be called by _default_layout .

If a layout is not explicitly mentioned then look for a layout with the controller’s name. if nothing is found then try same procedure to find super class’s layout.



274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
# File 'lib/abstract_controller/layouts.rb', line 274

def _write_layout_method
  remove_possible_method(:_layout)

  prefixes    = _implied_layout_name =~ /\blayouts/ ? [] : ["layouts"]
  name_clause = if name
    "      lookup_context.find_all(\"\#{_implied_layout_name}\", \#{prefixes.inspect}).first || super\n    RUBY\n  end\n\n  if defined?(@_layout)\n    layout_definition = case @_layout\n      when String\n        @_layout.inspect\n      when Symbol\n        <<-RUBY\n          \#{@_layout}.tap do |layout|\n            unless layout.is_a?(String) || !layout\n              raise ArgumentError, \"Your layout method :\#{@_layout} returned \\\#{layout}. It \" \\\n                \"should have returned a String, false, or nil\"\n            end\n          end\n        RUBY\n      when Proc\n        define_method :_layout_from_proc, &@_layout\n        \"_layout_from_proc(self)\"\n      when false\n        nil\n      when true\n        raise ArgumentError, \"Layouts must be specified as a String, Symbol, false, or nil\"\n      when nil\n        name_clause\n      end\n  else\n    # Add a deprecation if the parent layout was explicitly set and the child\n    # still does a dynamic lookup. In next Rails release, we should @_layout\n    # to be inheritable so we can skip the child lookup if the parent explicitly\n    # set the layout.\n    parent   = self.superclass.instance_eval { @_layout if defined?(@_layout) }\n    @_layout = nil\n    inspect  = parent.is_a?(Proc) ? parent.inspect : parent\n\n    layout_definition = if parent.nil?\n        name_clause\n      elsif name\n        <<-RUBY\n          if template = lookup_context.find_all(\"\#{_implied_layout_name}\", \#{prefixes.inspect}).first\n            ActiveSupport::Deprecation.warn 'Layout found at \"\#{_implied_layout_name}\" for \#{name} but parent controller ' \\\n              'set layout to \#{inspect.inspect}. Please explicitly set your layout to \"\#{_implied_layout_name}\" ' \\\n              'or set it to nil to force a dynamic lookup.'\n            template\n          else\n            super\n          end\n        RUBY\n      end\n  end\n\n  self.class_eval <<-RUBY, __FILE__, __LINE__ + 1\n    def _layout\n      if conditional_layout?\n        \#{layout_definition}\n      else\n        \#{name_clause}\n      end\n    end\n    private :_layout\n  RUBY\nend\n"

#inherited(klass) ⇒ Object



207
208
209
210
# File 'lib/abstract_controller/layouts.rb', line 207

def inherited(klass)
  super
  klass._write_layout_method
end

#layout(layout, conditions = {}) ⇒ Object

Specify the layout to use for this class.

If the specified layout is a:

String

the String is the template name

Symbol

call the method specified by the symbol, which will return the template name

false

There is no layout

true

raise an ArgumentError

nil

Force default layout behavior with inheritance

Parameters

  • layout - The layout to use.

Options (conditions)

  • :only - A list of actions to apply this layout to.

  • :except - Apply this layout to all actions but this one.



251
252
253
254
255
256
257
258
259
# File 'lib/abstract_controller/layouts.rb', line 251

def layout(layout, conditions = {})
  include LayoutConditions unless conditions.empty?

  conditions.each {|k, v| conditions[k] = Array(v).map {|a| a.to_s} }
  self._layout_conditions = conditions

  @_layout = layout
  _write_layout_method
end