Class: Erector::HTMLWidget
- Inherits:
-
XMLWidget
- Object
- AbstractWidget
- XMLWidget
- Erector::HTMLWidget
- Includes:
- Convenience, HTML, JQuery, Sass
- Defined in:
- lib/erector/html_widget.rb
Overview
A Widget is the center of the Erector universe.
To create a widget, extend Erector::Widget and implement the content
method. Inside this method you may call any of the tag methods like span
or p
to emit HTML/XML tags.
You can also define a widget on the fly by passing a block to new
. This block will get executed when the widget’s content
method is called. See the userguide for important details about the scope of this block when run – erector.rubyforge.org/userguide.html#blocks
To render a widget from the outside, instantiate it and call its to_html
method.
A widget’s new
method optionally accepts an options hash. Entries in this hash are converted to instance variables.
You can add runtime input checking via the needs
macro. See #needs. This mechanism is meant to ameliorate development-time confusion about exactly what parameters are supported by a given widget, avoiding confusing runtime NilClass errors.
To call one widget from another, inside the parent widget’s content
method, instantiate the child widget and call the widget
method. This assures that the same output stream is used, which gives better performance than using capture
or to_html
. It also preserves the indentation and helpers of the enclosing class.
In this documentation we’ve tried to keep the distinction clear between methods that emit text and those that return text. “Emit” means that it writes to the output stream; “return” means that it returns a string like a normal method and leaves it up to the caller to emit that string if it wants.
This class extends AbstractWidget and includes several modules, so be sure to check all of those places for API documentation for the various methods of Widget:
-
AbstractWidget
-
Element
-
Attributes
-
Text
-
Needs
-
Caching
-
Externals
-
AfterInitialize
-
HTML
-
Convenience
-
JQuery
-
Sass
Also read the API Cheatsheet in the user guide at erector.rubyforge.org/userguide#apicheatsheet
Direct Known Subclasses
Instance Method Summary collapse
-
#to_html(options = {}) ⇒ Object
alias for AbstractWidget#render.
-
#to_s(*args) ⇒ Object
deprecated
Deprecated.
Please use #to_html instead
Methods included from Sass
Methods included from JQuery
#jquery, #jquery_load, #jquery_ready
Methods included from Convenience
#css, #dom_id, #javascript, #join, #to_pretty, #to_text, #url
Methods inherited from XMLWidget
#comment, full_tags, #instruct, #newliney?, self_closing_tags, tag, tag_named
Methods included from Needs
Methods inherited from AbstractWidget
#call_block, #capture_content, #content, #emit, hyphenize_underscores, hyphenize_underscores=, #initialize, inline, prettyprint_default, #prettyprint_default, prettyprint_default=, #to_a, #widget
Methods included from AfterInitialize
Methods included from Text
#character, #h, #nbsp, #raw, #text, #text!
Methods included from Attributes
#format_attributes, #format_sorted, #sort_attributes
Methods included from Element
#_element, #_empty_element, #element, #empty_element
Instance Method Details
#to_html(options = {}) ⇒ Object
alias for AbstractWidget#render
198 199 200 201 |
# File 'lib/erector/html_widget.rb', line 198 def to_html( = {}) raise "Erector::Widget#to_html takes an options hash, not a symbol. Try calling \"to_html(:content_method_name=> :#{})\"" if .is_a? Symbol _render().to_s end |
#to_s(*args) ⇒ Object
Please use #to_html instead
alias for #to_html
205 206 207 208 209 210 211 |
# File 'lib/erector/html_widget.rb', line 205 def to_s(*args) unless defined? @@already_warned_to_s $stderr.puts "Erector::Widget#to_s is deprecated. Please use #to_html instead. Called from #{caller.first}" @@already_warned_to_s = true end to_html(*args) end |