Class: SorbetRails::ModelPlugins::ActiveRelationWhereNot

Inherits:
Base
  • Object
show all
Defined in:
lib/sorbet-rails/model_plugins/active_relation_where_not.rb

Constant Summary

Constants inherited from Base

Base::Parameter

Instance Attribute Summary

Attributes inherited from Base

#available_classes, #model_class

Instance Method Summary collapse

Methods inherited from Base

#initialize, #serialization_coder_for_column

Methods included from SorbetRails::ModelUtils

#add_relation_query_method, #exists_class_method?, #exists_instance_method?, #habtm_class?, #model_assoc_proxy_class_name, #model_assoc_relation_class_name, #model_class_name, #model_module_name, #model_query_methods_returning_assoc_relation_module_name, #model_query_methods_returning_relation_module_name, #model_relation_class_name, #model_relation_type_alias, #model_relation_type_class_name

Methods included from SorbetRails::ModelColumnUtils

#active_record_type_to_sorbet_type, #attribute_has_unconditional_presence_validation?, #model_class, #nilable_column?, #time_zone_aware_column?, #type_for_column_def

Constructor Details

This class inherits a constructor from SorbetRails::ModelPlugins::Base

Instance Method Details

#generate(root) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/sorbet-rails/model_plugins/active_relation_where_not.rb', line 6

def generate(root)
  where_not_module_name = self.model_module_name("ActiveRelation_WhereNot")
  where_not_module_rbi = root.create_module(where_not_module_name)

  model_relation_class_rbi = root.create_class(self.model_relation_class_name)
  model_relation_class_rbi.create_include(where_not_module_name)

  model_assoc_relation_rbi = root.create_class(self.model_assoc_relation_class_name)
  model_assoc_relation_rbi.create_include(where_not_module_name)

  # TODO: where.not is a special case that we replace it with a `where_not` method
  # `where` when not given parameters will return a `ActiveRecord::QueryMethods::WhereChain`
  # instance that has a method `not` on it
  where_not_module_rbi.create_method(
    "not",
    parameters: [
      Parameter.new("opts", type: "T.untyped", default: nil),
      Parameter.new("*rest", type: "T.untyped", default: nil),
    ],
    return_type: "T.self_type",
  )
end