Class: Utopia::Content::Document::State

Inherits:
Object
  • Object
show all
Defined in:
lib/utopia/content/document.rb

Overview

The state of a single tag being rendered within a document instance.

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#attributesObject (readonly)

Returns the value of attribute attributes.



243
244
245
# File 'lib/utopia/content/document.rb', line 243

def attributes
  @attributes
end

#contentObject (readonly)

Returns the value of attribute content.



244
245
246
# File 'lib/utopia/content/document.rb', line 244

def content
  @content
end

#deferredObject (readonly)

Returns the value of attribute deferred.



250
251
252
# File 'lib/utopia/content/document.rb', line 250

def deferred
  @deferred
end

#nodeObject (readonly)

Returns the value of attribute node.



245
246
247
# File 'lib/utopia/content/document.rb', line 245

def node
  @node
end

#parentObject (readonly)

Returns the value of attribute parent.



242
243
244
# File 'lib/utopia/content/document.rb', line 242

def parent
  @parent
end

#tagsObject (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
  @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.

Returns:

  • (Boolean)


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

Raises:



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