Sha256: 540d6e8d59bb3a139e00ea14e3c623ba509746a24872a4542367a79235286e11

Contents?: true

Size: 1.35 KB

Versions: 4

Compression:

Stored size: 1.35 KB

Contents

module Vedeu

  # Provides the mechanism to render views for the client application. The
  # client application's ApplicationView will inherit from this class.
  #
  class ApplicationView

    include Vedeu::View

    # Renders the view.
    #
    # @param params [Hash]
    # @return [void]
    def self.render(**params)
      new(params).render
    end

    # Returns a new instance of Vedeu::ApplicationView.
    #
    # @param params [Hash]
    # @return [Vedeu::ApplicationView]
    def initialize(**params)
      @params = params

      @params.each do |key, value|
        self.class.send(:define_method, key) { value } unless respond_to?(key)
      end
    end

    # @raise [Vedeu::NotImplemented] Subclasses of this class must implement
    #   this method.
    def render
      fail Vedeu::NotImplemented,
           'The subclass of Vedeu::ApplicationView must implement the #render' \
           'method.'
    end

    protected

    # @!attribute [rw] params
    # @return [Hash]
    attr_accessor :params

    private

    # Provides the path to the template file using the base_path configuration
    # option.
    #
    # @param value [String]
    # @return [String]
    # :nocov:
    def template(value)
      @template = Vedeu::Configuration.base_path +
                  "/app/views/templates/#{value}.erb"
    end
    # :nocov:

  end # ApplicationView

end # Vedeu

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
vedeu-0.6.1 lib/vedeu/application/application_view.rb
vedeu-0.6.0 lib/vedeu/application/application_view.rb
vedeu-0.5.13 lib/vedeu/application/application_view.rb
vedeu-0.5.12 lib/vedeu/application/application_view.rb