Genshin/GAKUEngine

View on GitHub
core/lib/gaku/grading/collection/calculations.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Gaku
  module Grading
    module Collection
      class Calculations
        attr_reader :grading_methods, :students, :exam, :gradable_scope

        def initialize(grading_method, students, exam, gradable_scope)
          @exam            = exam
          @students        = students
          @grading_methods = grading_method
          @gradable_scope  = gradable_scope
        end

        def calculate
          {}.tap do |hash|
            @grading_methods.each do |grading_method|
              grading = grading_types[grading_method.grading_type].constantize.new(@exam, @students, gradable_scope, grading_method.criteria)
              hash[grading_method.id] = grading.grade
            end
          end
        end

        private

        def grading_types
          ActiveSupport::HashWithIndifferentAccess.new(
            score: 'Gaku::Grading::Collection::Score',
            percentage: 'Gaku::Grading::Collection::Percentage',
            ordinal: 'Gaku::Grading::Collection::Ordinal',
            interval: 'Gaku::Grading::Collection::Interval'
          )
        end
      end
    end
  end
end