Class: Opal::Server::Index
- Inherits:
-
Object
- Object
- Opal::Server::Index
- Defined in:
- opal/lib/opal/sprockets/server.rb
Instance Method Summary collapse
- #call(env) ⇒ Object
-
#html ⇒ Object
Returns the html content for the root path.
-
#initialize(app, server) ⇒ Index
constructor
A new instance of Index.
- #javascript_include_tag(name) ⇒ Object
- #source ⇒ Object
Constructor Details
#initialize(app, server) ⇒ Index
Returns a new instance of Index
84 85 86 87 88 |
# File 'opal/lib/opal/sprockets/server.rb', line 84 def initialize(app, server) @app = app @server = server @index_path = server.index_path end |
Instance Method Details
#call(env) ⇒ Object
90 91 92 93 94 95 96 |
# File 'opal/lib/opal/sprockets/server.rb', line 90 def call(env) if %w[/ /index.html].include? env['PATH_INFO'] [200, { 'Content-Type' => 'text/html' }, [html]] else @app.call env end end |
#html ⇒ Object
Returns the html content for the root path. Supports ERB
99 100 101 102 103 104 105 106 107 |
# File 'opal/lib/opal/sprockets/server.rb', line 99 def html if @index_path raise "index does not exist: #{@index_path}" unless File.exist?(@index_path) Tilt.new(@index_path).render(self) else raise "Main asset path not configured (set 'main' within Opal::Server.new block)" if @server.main.nil? source end end |
#javascript_include_tag(name) ⇒ Object
109 110 111 112 113 114 115 |
# File 'opal/lib/opal/sprockets/server.rb', line 109 def javascript_include_tag name sprockets = @server.sprockets prefix = @server.prefix debug = @server.debug ::Opal::Sprockets.javascript_include_tag(name, sprockets: sprockets, prefix: prefix, debug: debug) end |
#source ⇒ Object
117 118 119 120 121 122 123 124 125 126 127 128 129 130 |
# File 'opal/lib/opal/sprockets/server.rb', line 117 def source <<-HTML <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Opal Server</title> </head> <body> #{javascript_include_tag @server.main} </body> </html> HTML end |