1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00
haml--haml/lib/hamlit/cli.rb
2015-03-28 12:17:19 +09:00

89 lines
2.1 KiB
Ruby

require 'hamlit'
require 'thor'
module Hamlit
class CLI < Thor
IGNORED_COMPILERS = ['HTML'].freeze
desc 'render HAML', 'Render haml template'
option :ugly, type: :boolean, aliases: ['-u']
def render(file)
code = generate_code(file)
puts eval(code)
end
desc 'compile HAML', 'Show generated rendering code'
option :ugly, type: :boolean, aliases: ['-u']
def compile(file)
code = generate_code(file)
puts code
end
desc 'temple HAML', 'Show a compile result of hamlit AST'
option :ugly, type: :boolean, aliases: ['-u']
def temple(file)
pp generate_temple_ast(file)
end
desc 'parse HAML', 'Show parse result'
def parse(file)
pp generate_hamlit_ast(file)
end
private
# Flexible default_task, compatible with haml's CLI
def method_missing(*args)
return super(*args) if args.length > 1
render(args.first.to_s)
end
def generate_code(file)
template = File.read(file)
Hamlit::Engine.new(options).call(template)
end
def generate_temple_ast(file)
chain = Hamlit::Engine.chain.map(&:first).map(&:to_s)
compilers = chain.select do |compiler|
compiler =~ /\AHamlit::/ && !ignored_compilers.include?(compiler)
end
template = File.read(file)
compilers.inject(template) do |exp, compiler|
Module.const_get(compiler).new(options).call(exp)
end
end
def generate_hamlit_ast(file)
template = File.read(file)
Hamlit::Parser.new.call(template)
end
# Enable colored pretty printing only for development environment.
# I don't think it is a good idea to add pry as runtime dependency
# just for debug color printing.
def pp(arg)
begin
require 'pry'
Pry::ColorPrinter.pp(arg)
rescue LoadError
require 'pp'
super(arg)
end
end
def ignored_compilers
IGNORED_COMPILERS.map { |name| "Hamlit::#{name}" }
end
def options
symbolize_keys(super)
end
def symbolize_keys(hash)
{}.tap { |h| hash.each { |k, v| h[k.to_sym] = v } }
end
end
end