Sha256: 15b1a6c144637121f14f0d5e7ad16562bc41ba11674589cab0e1243ac0855be0

Contents?: true

Size: 1.23 KB

Versions: 18

Compression:

Stored size: 1.23 KB

Contents

# frozen_string_literal: true
module Hyrax
  class AbstractTypeRelation < ActiveFedora::Relation
    def initialize(allowable_types: nil, **opts)
      @allowable_types = allowable_types
      super(DummyModel, opts)
    end

    def allowable_types
      @allowable_types ||
        raise(NotImplementedException, "Implement allowable_types in a subclass")
    end

    def equivalent_class?(klass)
      allowable_types.include?(klass)
    end

    def search_model_clause
      clauses = allowable_types.map do |k|
        ActiveFedora::SolrQueryBuilder.construct_query_for_rel(has_model: k.to_s)
      end
      # empty array returns nil, AF finder method handles it properly, see hyrax issue #2844
      clauses.size <= 1 ? clauses.first : "(#{clauses.join(' OR ')})"
    end

    class DummyModel
      def self.primary_concern
        Hyrax.config.curation_concerns.first
      end

      def self.delegated_attributes
        primary_concern.delegated_attributes
      end

      def self.solr_query_handler
        primary_concern.solr_query_handler
      end

      def self.default_sort_params
        primary_concern.default_sort_params
      end

      def self.id_to_uri(*args)
        primary_concern.id_to_uri(*args)
      end
    end
  end
end

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
hyrax-5.0.1 app/search_builders/hyrax/abstract_type_relation.rb
hyrax-5.0.0 app/search_builders/hyrax/abstract_type_relation.rb
hyrax-5.0.0.rc3 app/search_builders/hyrax/abstract_type_relation.rb
hyrax-5.0.0.rc2 app/search_builders/hyrax/abstract_type_relation.rb
hyrax-5.0.0.rc1 app/search_builders/hyrax/abstract_type_relation.rb
hyrax-3.6.0 app/search_builders/hyrax/abstract_type_relation.rb
hyrax-4.0.0 app/search_builders/hyrax/abstract_type_relation.rb
hyrax-4.0.0.rc3 app/search_builders/hyrax/abstract_type_relation.rb
hyrax-4.0.0.rc2 app/search_builders/hyrax/abstract_type_relation.rb
hyrax-4.0.0.rc1 app/search_builders/hyrax/abstract_type_relation.rb
hyrax-3.5.0 app/search_builders/hyrax/abstract_type_relation.rb
hyrax-4.0.0.beta2 app/search_builders/hyrax/abstract_type_relation.rb
hyrax-3.4.2 app/search_builders/hyrax/abstract_type_relation.rb
hyrax-4.0.0.beta1 app/search_builders/hyrax/abstract_type_relation.rb
hyrax-3.4.1 app/search_builders/hyrax/abstract_type_relation.rb
hyrax-3.4.0 app/search_builders/hyrax/abstract_type_relation.rb
hyrax-3.3.0 app/search_builders/hyrax/abstract_type_relation.rb
hyrax-3.2.0 app/search_builders/hyrax/abstract_type_relation.rb