Sha256: 0b39e27c102cb387228b834338d4411bf492f5254e935cf577976fd7e348af0d
Contents?: true
Size: 1.34 KB
Versions: 2
Compression:
Stored size: 1.34 KB
Contents
require 'alephant/logger' module Alephant module Renderer class ViewMapper include Logger DEFAULT_LOCATION = 'components' def initialize(component_id, view_base_path=nil) self.base_path = "#{view_base_path}/#{component_id}" unless view_base_path.nil? @component_id = component_id end def base_path @base_path || DEFAULT_LOCATION end def base_path=(path) @base_path = File.directory?(path) ? path : raise_error(path) end def generate(data) model_locations.reduce({}) do |obj, file| obj.tap do |o| model_id = model_id_for file o[model_id] = model(model_id, data) end end end private def raise_error(path) logger.metric("ViewMapperInvalidPath") raise "Invalid path: '#{path}'" end def model(view_id, data) require model_location_for view_id Views.get_registered_class(view_id).new(data) end def model_location_for(view_id) File.join(base_path, 'models', "#{view_id}.rb") end def model_locations Dir[model_base_path] end def model_base_path "#{base_path}/models/*" end def model_id_for(location) location.split('/').last.sub(/\.rb/, '') end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
alephant-renderer-1.0.5 | lib/alephant/renderer/view_mapper.rb |
alephant-renderer-1.0.4 | lib/alephant/renderer/view_mapper.rb |