bodrovis/rating-chgk-v2

View on GitHub
lib/rating_chgk_v2/collections/base_collection.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module RatingChgkV2
  module Collections
    # Base class for all collections. A collection contains an array of models, for example
    # a collection of players, tournaments, or regions. Some collections are paginated but not all.
    class BaseCollection
      include Enumerable
      extend Forwardable

      MODEL = ''
      attr_reader :items, :endpoint

      def_delegators :items, :[], :last, :each

      class << self
        def load(method, endpoint)
          new endpoint.send(method), endpoint
        end

        def paginated
          include RatingChgkV2::Concerns::Paginated
        end
      end

      def initialize(raw_data, endpoint = nil)
        setup raw_data, endpoint
      end

      private

      def setup(raw_data, endpoint)
        @endpoint = endpoint
        @items = produce_models_from raw_data
      end

      def produce_models_from(raw_data)
        return [] if raw_data&.empty?

        model_name = self.class.const_get :MODEL
        model_klass = RatingChgkV2::Models.const_get "#{model_name}Model"
        raw_data.map do |item|
          model_klass.new item
        end
      end
    end
  end
end