Class: Utopia::Content::Document::State
- Inherits:
-
Object
- Object
- Utopia::Content::Document::State
- Defined in:
- lib/utopia/content/document.rb
Overview
The state of a single tag being rendered within a document instance.
Instance Attribute Summary collapse
-
#attributes ⇒ Object
readonly
Returns the value of attribute attributes.
-
#content ⇒ Object
readonly
Returns the value of attribute content.
-
#deferred ⇒ Object
readonly
Returns the value of attribute deferred.
-
#node ⇒ Object
readonly
Returns the value of attribute node.
-
#parent ⇒ Object
readonly
Returns the value of attribute parent.
-
#tags ⇒ Object
readonly
A list of all tags in order of rendering them, which have not been finished yet.
Instance Method Summary collapse
-
#[](key) ⇒ Object
-
#call(document) ⇒ Object
-
#defer(value = nil, &block) ⇒ Object
-
#empty? ⇒ Boolean
Whether this state has any nested tags.
-
#initialize(parent, tag, node, attributes = tag.to_hash) ⇒ State
constructor
A new instance of State.
-
#tag_begin(tag) ⇒ Object
-
#tag_complete(tag) ⇒ Object
-
#tag_end(tag) ⇒ Object
-
#text(string) ⇒ Object
-
#write(string) ⇒ Object
Constructor Details
#initialize(parent, tag, node, attributes = tag.to_hash) ⇒ State
Returns a new instance of State
228 229 230 231 232 233 234 235 236 237 238 239 240 |
# File 'lib/utopia/content/document.rb', line 228 def initialize(parent, tag, node, attributes = tag.to_hash) @parent = parent @tag = tag @node = node @attributes = attributes @buffer = Trenni::MarkupString.new.force_encoding(Encoding::UTF_8) @content = nil @deferred = [] @tags = [] end |
Instance Attribute Details
#attributes ⇒ Object (readonly)
Returns the value of attribute attributes
243 244 245 |
# File 'lib/utopia/content/document.rb', line 243 def attributes @attributes end |
#content ⇒ Object (readonly)
Returns the value of attribute content
244 245 246 |
# File 'lib/utopia/content/document.rb', line 244 def content @content end |
#deferred ⇒ Object (readonly)
Returns the value of attribute deferred
250 251 252 |
# File 'lib/utopia/content/document.rb', line 250 def deferred @deferred end |
#node ⇒ Object (readonly)
Returns the value of attribute node
245 246 247 |
# File 'lib/utopia/content/document.rb', line 245 def node @node end |
#parent ⇒ Object (readonly)
Returns the value of attribute parent
242 243 244 |
# File 'lib/utopia/content/document.rb', line 242 def parent @parent end |
#tags ⇒ Object (readonly)
A list of all tags in order of rendering them, which have not been finished yet.
248 249 250 |
# File 'lib/utopia/content/document.rb', line 248 def @tags end |
Instance Method Details
#[](key) ⇒ Object
258 259 260 |
# File 'lib/utopia/content/document.rb', line 258 def [](key) @attributes[key] end |
#call(document) ⇒ Object
262 263 264 265 266 267 268 269 270 271 272 273 |
# File 'lib/utopia/content/document.rb', line 262 def call(document) @content = @buffer @buffer = Trenni::MarkupString.new.force_encoding(Encoding::UTF_8) if node.respond_to? :call node.call(document, self) else document.parse_markup(@content) end return @buffer end |
#defer(value = nil, &block) ⇒ Object
252 253 254 255 256 |
# File 'lib/utopia/content/document.rb', line 252 def defer(value = nil, &block) @deferred << block Tag.closed(DEFERRED_TAG_NAME, :id => @deferred.size - 1) end |
#empty? ⇒ Boolean
Whether this state has any nested tags.
288 289 290 |
# File 'lib/utopia/content/document.rb', line 288 def empty? @tags.empty? end |
#tag_begin(tag) ⇒ Object
292 293 294 295 296 297 |
# File 'lib/utopia/content/document.rb', line 292 def tag_begin(tag) # raise ArgumentError.new("tag_begin: #{tag} is tag.self_closed?") if tag.self_closed? @tags << tag tag.write_opening_tag(@buffer) end |
#tag_complete(tag) ⇒ Object
283 284 285 |
# File 'lib/utopia/content/document.rb', line 283 def tag_complete(tag) tag.write(@buffer) end |
#tag_end(tag) ⇒ Object
299 300 301 302 |
# File 'lib/utopia/content/document.rb', line 299 def tag_end(tag) raise UnbalancedTagError.new(tag) unless @tags.pop.name == tag.name tag.write_closing_tag(@buffer) end |
#text(string) ⇒ Object
279 280 281 |
# File 'lib/utopia/content/document.rb', line 279 def text(string) Trenni::Markup.append(@buffer, string) end |
#write(string) ⇒ Object
275 276 277 |
# File 'lib/utopia/content/document.rb', line 275 def write(string) @buffer << string end |