Class: IndexFiles

Inherits:
Object show all
Defined in:
lib/volt/server/rack/index_files.rb

Overview

Serves the main pages

Instance Method Summary collapse

Constructor Details

#initialize(app, component_paths, opal_files) ⇒ IndexFiles

Returns a new instance of IndexFiles.



6
7
8
9
10
11
12
13
14
15
16
# File 'lib/volt/server/rack/index_files.rb', line 6

def initialize(app, component_paths, opal_files)
  @app = app
  @component_paths = component_paths
  @opal_files = opal_files
  
  @@router ||= Routes.new.define do
    # Find the route file
    route_file = File.read('app/home/config/routes.rb')
    eval(route_file)
  end
end

Instance Method Details

#call(env) ⇒ Object



26
27
28
29
30
31
32
# File 'lib/volt/server/rack/index_files.rb', line 26

def call(env)
  if route_match?(env['PATH_INFO'])
    [200, { 'Content-Type' => 'text/html' }, [html]]
  else
    @app.call env
  end
end

#css_filesObject



46
47
48
# File 'lib/volt/server/rack/index_files.rb', line 46

def css_files
  AssetFiles.new('home', @component_paths).css_files
end

#htmlObject



34
35
36
37
38
39
# File 'lib/volt/server/rack/index_files.rb', line 34

def html
  index_path = File.expand_path(File.join(Dir.pwd, "public/index.html"))
  html = File.read(index_path)
  
  ERB.new(html).result(binding)
end

#javascript_filesObject



41
42
43
44
# File 'lib/volt/server/rack/index_files.rb', line 41

def javascript_files
  # TODO: Cache somehow, this is being loaded every time
  AssetFiles.new('home', @component_paths).javascript_files(@opal_files)
end

#route_match?(path) ⇒ Boolean

Returns:



18
19
20
21
22
23
24
# File 'lib/volt/server/rack/index_files.rb', line 18

def route_match?(path)
  @@router.path_matchers.each do |path_matcher|
    return true if path =~ path_matcher
  end
  
  return false
end