# frozen_string_literal: true module Vedeu module Repositories # When included into a class, provides the mechanism to store the # class in a repository for later retrieval. # module Model # This is used by including classes. include Vedeu::Common # @!attribute [rw] repository # @return [Vedeu::Repositories::Repository] attr_accessor :repository # When {Vedeu::Repositories::Model} is included in a class, the # methods within this module are included as class methods on # that class. # module ClassMethods # @!attribute [r] repository # @return [Vedeu::Repositories::Repository] attr_reader :repository # Build models using a simple DSL when a block is given, # otherwise returns a new instance of the class including this # module. # # @param attributes [Hash] A collection of attributes specific # to the model. # @param block [Proc] The block passed to the build method. # @return [Object] An instance of the model. def build(attributes = {}, &block) model = new(attributes) Vedeu.log(type: :debug, message: "DSL building: '#{model.class.name}' for " \ "'#{model.name}'") model.deputy.instance_eval(&block) if block_given? model end # Allow models to specify their repository using a class # method. # # @param klass [void] # @return [void] def repo(klass) @repository = klass end # Create and store a model with the given attributes. # # @param attributes [Hash] A collection of attributes specific # to the model. # @param block [Proc] A block of code to be executing whilst # storing. # @return [Object] An instance of the model. def store(attributes = {}, &block) new(attributes).store(&block) end end # ClassMethods # When this module is included in a class, provide ClassMethods # as class methods for the class. # # @param klass [Class] # @return [void] def self.included(klass) klass.extend(Vedeu::Repositories::Model::ClassMethods) end # @note If a block is given, store the model, return the model # after yielding. # @todo Perhaps some validation could be added here? # @return [void] The model instance stored in the repository. def store(&block) repository.store(self, &block) end end # Model end # Repositories end # Vedeu