Sha256: 69450feacf6abb2ac20d15cc6cc35edb0ac243bf6f65db313b7dbb4de5231c5a
Contents?: true
Size: 1.55 KB
Versions: 4
Compression:
Stored size: 1.55 KB
Contents
module Apotomo class RequestProcessor include Hooks define_hook :after_initialize define_hook :after_fire attr_reader :root def initialize(controller, options={}, has_widgets_blocks=[]) @root = Widget.new(controller, 'root', :display) attach_stateless_blocks_for(has_widgets_blocks, @root, controller) run_hook :after_initialize, self end def attach_stateless_blocks_for(blocks, root, controller) blocks.each { |blk| controller.instance_exec(root, &blk) } end # Called when the browser wants an url_for_event address. This fires the request event in # the widget tree and collects the rendered page updates. def process_for(request_params) source = self.root.find_widget(request_params[:source]) or raise "Source #{request_params[:source].inspect} non-existent." source.fire(request_params[:type].to_sym, request_params) # set data to params for now. run_hook :after_fire, self source.root.page_updates ### DISCUSS: that's another dependency. end # Renders the widget named +widget_id+. Any additional args is passed through to Widget#invoke. def render_widget_for(*args) root.render_widget(*args) end # Computes the address hash for a +:source+ widget and an event +:type+. # Additional parameters will be merged. def address_for(options) raise "You forgot to provide :source or :type" unless options.has_key?(:source) and options.has_key?(:type) options end end end
Version data entries
4 entries across 4 versions & 1 rubygems