class Glimmer::DSL::Opal::ShellExpression

Public Instance Methods

add_content(parent, keyword, *args, &block) click to toggle source
Calls superclass method
# File lib/glimmer/dsl/opal/shell_expression.rb, line 30
def add_content(parent, keyword, *args, &block)
  super(parent, &block)
  parent.post_add_content
end
interpret(parent, keyword, *args, &block) click to toggle source
# File lib/glimmer/dsl/opal/shell_expression.rb, line 16
def interpret(parent, keyword, *args, &block)
  if Glimmer::UI::CustomShell.requested_and_not_handled?
    parameters = Glimmer::UI::CustomShell.request_parameter_string.split("&").map {|str| str.split("=")}.to_h
    `history.pushState(#{parameters.merge('custom_shell_handled' => 'true')}, document.title, #{"?#{Glimmer::UI::CustomShell.encoded_request_parameter_string}&custom_shell_handled=true"})`
    custom_shell_keyword = parameters.delete('custom_shell')
    CustomWidgetExpression.new.interpret(nil, custom_shell_keyword, *[parameters])
    `history.pushState(#{parameters.reject {|k,v| k == 'custom_shell_handled'}}, document.title, #{"?#{Glimmer::UI::CustomShell.encoded_request_parameter_string.sub('&custom_shell_handled=true', '')}"})`
    # just a placeholder that has an open method # TODO return an actual CustomShell in the future that does the work happening above in the #open method
    Glimmer::SWT::MakeShiftShellProxy.new
  else
    Glimmer::SWT::ShellProxy.new(*args)
  end
end