Sha256: 31adccc9eda33475329af90436cfcac2ecfb19f20866043921aae7d85b932fba

Contents?: true

Size: 1.53 KB

Versions: 2

Compression:

Stored size: 1.53 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)
        raise("Invalid path: '#{path}'").tap do
          logger.metric("ViewMapperInvalidPath")
          logger.error(
            "event"  => "ViewMapperBasePathInvalidFound",
            "path"   => path,
            "method" => "#{self.class}#raise_error"
          )
        end
      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-2.0.1 lib/alephant/renderer/view_mapper.rb
alephant-renderer-2.0.0 lib/alephant/renderer/view_mapper.rb