Sha256: 4ca02080e57af805eb1eb71dfb845fa2495f6f3b5a442c9858dce956d4afc047
Contents?: true
Size: 1.44 KB
Versions: 1
Compression:
Stored size: 1.44 KB
Contents
module Volt class Task if RUBY_PLATFORM == 'opal' # On the front-end we setup a proxy class to the backend that returns # promises for all calls. def self.method_missing(name, *args, &block) # Meta data is passed from the browser to the server so the server can know # things like who's logged in. meta_data = {} user_id = $page.cookies._user_id meta_data['user_id'] = user_id unless user_id.nil? $page.tasks.call(self.name, name, meta_data, *args, &block) end else def initialize(volt_app, channel = nil, dispatcher = nil) @volt_app = volt_app @channel = channel @dispatcher = dispatcher end def self.inherited(subclass) @subclasses ||= [] @subclasses << subclass end def self.known_handlers @subclasses ||= [] end # On the backend, we proxy all class methods like we would # on the front-end. This returns a promise, even if the # original code did not. def self.method_missing(name, *args, &block) # TODO: optimize: this could run the inside first to see if it # returns a promise, so we don't have to wrap it. Promise.new.then do new(Volt.current_app, nil, nil).send(name, *args, &block) end.resolve(nil) end # Provide access to the store collection def store $page.store end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
volt-0.9.3.pre2 | lib/volt/tasks/task_handler.rb |