Sha256: de801ea644076635c98a7c931884b0bb3b25f0fe4ae72de33116f203cb857bc6

Contents?: true

Size: 1.35 KB

Versions: 5

Compression:

Stored size: 1.35 KB

Contents

require 'rack'

class Susanoo::Application
  # This controller is responsible to serving/building angularjs templates.
  class Views < Susanoo::Controller
    def call(env)
      path =  env['PATH_INFO']
      if File.exist?(File.join(project_root, "src/views#{path}.erb"))
        template = Tilt.new(File.join(project_root, "src/views#{path}.erb"))
      elsif File.exist?(File.join(project_root, "src/views#{path}"))
        template = Tilt.new(File.join(project_root, "src/views#{path}"))
      else
        fail "There is no '#{path}' in 'src/views' directory."
      end
      [200, {'Content-Type' => 'text/html'}, [template.render(self)]]
    end

    def build(generator)
      file_pattern = File.join(project_root, 'src/views/**/*.{html,html.erb}')
      dest_path = File.join(project_root, 'www')
      src_path = File.join(project_root, 'src')

      Dir.glob(file_pattern) do |file|
        template = Tilt.new file

        dest_file = File.join(dest_path,
                              file.gsub(src_path, ''))

        # Create missing directories in destination path
        FileUtils.mkpath dest_path

        # Remove erb extension name from destination path
        dest_file.gsub!('.erb', '') if File.extname(dest_file) == 'erb'

        # Create the destination file
        generator.create_file dest_file, template.render(self)
      end
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
susanoo-0.8.0 lib/susanoo/controllers/views.rb
susanoo-0.7.4 lib/susanoo/controllers/views.rb
susanoo-0.7.2 lib/susanoo/controllers/views.rb
susanoo-0.7.1 lib/susanoo/controllers/views.rb
susanoo-0.7.0 lib/susanoo/controllers/views.rb