Sha256: 94edd2a8f2ea2947cb9543de9d28809065ec06b8f76fe8dd715d8649f8fe180b
Contents?: true
Size: 1.25 KB
Versions: 4
Compression:
Stored size: 1.25 KB
Contents
class Gon class Watch < Gon class << self JS_FUNCTION = File.read(File.expand_path('../../../js/watch.js', __FILE__)) def render JS_FUNCTION + "window.gon.watchedVariables=#{all_variables.to_json};" end def all_variables @watch_variables || {} end def clear @watch_variables = {} end private def set_variable(name, value) if return_variable?(name) return_variable value else variable = {} @watch_variables ||= {} env = Gon::Request.env variable['url'] = env['ORIGINAL_FULLPATH'] || env['REQUEST_URI'] variable['method'] = env['REQUEST_METHOD'] variable['name'] = name @watch_variables[name] = variable super end end def return_variable?(variable) controller = Gon::Base.get_controller params = controller.params variable = variable.to_s.gsub('=', '') controller.request.xhr? && params[:gon_return_variable] && params[:gon_watched_variable] == variable end def return_variable(value) controller = Gon::Base.get_controller controller.render :json => value end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
gon-4.1.1 | lib/gon/watch.rb |
gon-4.1.0 | lib/gon/watch.rb |
gon-4.0.3 | lib/gon/watch.rb |
gon-4.0.2 | lib/gon/watch.rb |