Module: Gon::Base
- Defined in:
- lib/gon/base.rb
Class Method Summary collapse
- .get_controller(options) ⇒ Object
- .get_template_path(options, extension) ⇒ Object
- .render_data(options) ⇒ Object
Class Method Details
.get_controller(options) ⇒ Object
27 28 29 30 31 32 33 |
# File 'lib/gon/base.rb', line 27 def get_controller() [:controller] || Gon::Request.env['action_controller.instance'] || Gon::Request.env['action_controller.rescue.response']. instance_variable_get('@template'). instance_variable_get('@controller') end |
.get_template_path(options, extension) ⇒ Object
35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/gon/base.rb', line 35 def get_template_path(, extension) if [:template] if right_extension?(extension, [:template]) [:template] else [[:template], extension].join('.') end else controller = get_controller().controller_path action = get_controller().action_name "app/views/#{controller}/#{action}.json.#{extension}" end end |
.render_data(options) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/gon/base.rb', line 5 def render_data() data = Gon.all_variables || {} if Gon.global.all_variables.present? data[:global] = Gon.global.all_variables end namespace, tag, cameled = start = "#{tag if tag}window.#{namespace} = {};" script = '' data.each do |key, val| if cameled script << "#{namespace}.#{key.to_s.camelize(:lower)}=#{val.to_json};" else script << "#{namespace}.#{key.to_s}=#{val.to_json};" end end script = start + Gon::Escaper.escape(script) script << '</script>' if tag script.html_safe end |