Class: Prawn::Repeater

Inherits:
Object
  • Object
show all
Defined in:
lib/prawn/repeater.rb

Overview

:nodoc:

Experimental API collapse

Experimental API collapse

Constructor Details

#initialize(document, page_filter, dynamic = false, &block) ⇒ Repeater

Returns a new instance of Repeater.



94
95
96
97
98
99
100
101
102
103
104
# File 'lib/prawn/repeater.rb', line 94

def initialize(document, page_filter, dynamic = false, &block)
  @document    = document
  @page_filter = page_filter
  @dynamic = dynamic
  @stamp_name  = "prawn_repeater(#{Repeater.count})"
  @document.create_stamp(@stamp_name, &block) unless dynamic
  @block = block if dynamic
  @graphic_state = document.state.page.graphic_state.dup

  Repeater.count += 1
end

Class Attribute Details

.countObject



87
88
89
# File 'lib/prawn/repeater.rb', line 87

def count
  @count ||= 0
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



92
93
94
# File 'lib/prawn/repeater.rb', line 92

def name
  @name
end

Instance Method Details

#match?(page_number) ⇒ Boolean

Returns:

  • (Boolean)


106
107
108
# File 'lib/prawn/repeater.rb', line 106

def match?(page_number)
  @document.page_match?(@page_filter, page_number)
end

#run(page_number) ⇒ Object



110
111
112
113
114
115
116
117
118
119
# File 'lib/prawn/repeater.rb', line 110

def run(page_number)
  if !@dynamic
    @document.stamp(@stamp_name) if match?(page_number)
  elsif @block && match?(page_number)
    @document.save_graphics_state(@graphic_state) do
      @document.send(:freeze_stamp_graphics)
      @block.call
    end
  end
end