Module: Card::Set::Format::AbstractFormat
Overview
All Format modules are extended with this module in order to support
the basic format API (ok, view definitions. It's just view
definitions.)
No longer just view definitions. Also basket definitions now.
Instance Method Summary
collapse
Methods included from HamlViews
#haml_template_path, #haml_template_render_block, #haml_template_render_block_with_locals, #haml_to_html, #haml_view_block, #template_location, #try_haml_template_path
Methods included from Basket
#abstract_basket, #add_to_basket, #basket
Instance Method Details
#async_view?(args) ⇒ Boolean
136
137
138
|
# File 'lib/card/set/format.rb', line 136
def async_view? args
args.first.is_a?(Hash) && args.first[:async]
end
|
#define_async_view_method(view, &block) ⇒ Object
107
108
109
110
111
112
113
|
# File 'lib/card/set/format.rb', line 107
def define_async_view_method view, &block
view_content = "#{view}_async_content"
define_standard_view_method view_content, &block
define_standard_view_method view do
"<card-view-placeholder data-url=#{path view: view_content}/>"
end
end
|
#define_standard_view_method(view, &block) ⇒ Object
102
103
104
105
|
# File 'lib/card/set/format.rb', line 102
def define_standard_view_method view, &block
views[self][view] = block
define_method "_view_#{view}", &block
end
|
121
122
123
124
125
|
# File 'lib/card/set/format.rb', line 121
def view, cache_rule
return unless cache_rule
methodname = Card::Format.view_cache_setting_method view
define_method(methodname) { cache_rule }
end
|
#haml_view?(args) ⇒ Boolean
132
133
134
|
# File 'lib/card/set/format.rb', line 132
def haml_view? args
args.first.is_a?(Hash) && args.first[:template] == :haml
end
|
#interpret_view_opts(view, opts) ⇒ Object
115
116
117
118
119
|
# File 'lib/card/set/format.rb', line 115
def interpret_view_opts view, opts
return unless opts.present?
Card::Format.interpret_view_opts view, opts
view, opts.delete(:cache)
end
|
#lookup_alias_block(view, args) ⇒ Object
140
141
142
143
144
145
146
147
148
|
# File 'lib/card/set/format.rb', line 140
def lookup_alias_block view, args
opts = args[0].is_a?(Hash) ? args.shift : { view: args.shift }
opts[:mod] ||= self
opts[:view] ||= view
views[opts[:mod]][opts[:view]] || begin
raise "cannot find #{opts[:view]} view in #{opts[:mod]}; " \
"failed to alias #{view} in #{self}"
end
end
|
#set_module ⇒ Object
remove the format part of the module name
155
156
157
|
# File 'lib/card/set/format.rb', line 155
def set_module
Card.const_get name.split("::")[0..-2].join("::")
end
|
#source_location ⇒ Object
150
151
152
|
# File 'lib/card/set/format.rb', line 150
def source_location
set_module.source_location
end
|
#view(view, *args, &block) ⇒ Object
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
# File 'lib/card/set/format.rb', line 86
def view view, *args, &block
view = view.to_viewname.key.to_sym
interpret_view_opts view, args[0] if block_given?
view_method_block = view_block(view, args, &block)
if async_view? args
define_async_view_method view, &view_method_block
else
define_standard_view_method view, &view_method_block
end
end
|
#view_block(view, args, &block) ⇒ Object
127
128
129
130
|
# File 'lib/card/set/format.rb', line 127
def view_block view, args, &block
return haml_view_block(view, &block) if haml_view?(args)
block_given? ? block : lookup_alias_block(view, args)
end
|