Sha256: 90cebecaa1fd37f7f4f81acec1b1b98eb00bfe9da8d66215d7a10905d6ab544f
Contents?: true
Size: 1.03 KB
Versions: 3
Compression:
Stored size: 1.03 KB
Contents
require 'volt/server/html_parser/view_parser' require 'volt/server/component_templates' require 'volt/server/rack/asset_files' # Takes in the name and all component paths and has a .code # method that returns all of the ruby setup code for the component. module Volt class ComponentCode def initialize(component_name, component_paths, client = true) @component_name = component_name @component_paths = component_paths @client = client end # The client argument is for if this code is being generated for the client def code(client=true) # Start with config code code = generate_config_code asset_files = AssetFiles.new(@component_name, @component_paths) asset_files.component_paths.each do |component_path, component_name| code << ComponentTemplates.new(component_path, component_name, client).code code << "\n\n" end code end def generate_config_code "\nVolt.setup_client_config(#{Volt.config.public.to_h.inspect})\n" end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
volt-0.8.22 | lib/volt/server/rack/component_code.rb |
volt-0.8.22.beta2 | lib/volt/server/rack/component_code.rb |
volt-0.8.22.beta1 | lib/volt/server/rack/component_code.rb |