Code Monkey home page Code Monkey logo

Comments (6)

hdoan741 avatar hdoan741 commented on August 30, 2024

Hi Riley, like you said, sorbet doesn't support having 2 sig for one method. The .select method that returns an array is a select performed on the materialized element of an active record.

You can convert the relation to array then perform select for typechecking.
For example: User.all.to_a.select <- This will take a block and returns an Array

Let me know if this is helpful.

from sorbet-rails.

riley-klingler avatar riley-klingler commented on August 30, 2024

Do you want to remove the block as a parameter then? Right now, the sig produced implies that you can pass in a block and return an ActiveRecord_Relation, which will not happen. It also implies you can pass both args and a block, which will throw a runtime error.

from sorbet-rails.

hdoan741 avatar hdoan741 commented on August 30, 2024

from sorbet-rails.

pje avatar pje commented on August 30, 2024

Making the return type of select be T.any(User::ActiveRecord_Relation, T::Array[User]) is not great, because callers will always have to check which type is being returned, even though it can always be inferred from the argument type.

Yeah, this is a limitation of Sorbet. Unless they start supporting sig overloading (mutltiple sigs per def ), this is impossible to express using the type system.

I agree that returning T.any(User::ActiveRecord_Relation, T::Array[User]) is a worse user experience.

My workaround is adding to_a before any enumerable selects, i.e. replacing this:

User.where(foo: 'bar').select(&:some_predicate)

...with this:

User.where(foo: 'bar').to_a.select(&:some_predicate)

πŸ€·β€β™‚

from sorbet-rails.

ghiculescu avatar ghiculescu commented on August 30, 2024

If the block argument doesn't get removed, there's another issue there where args it yields are treated by sorbet as NilClass. This is the sig that currently gets generated in the User::ActiveRecord_Associations_CollectionProxy

  sig { params(args: T.untyped, block: T.nilable(T.proc.void)).returns(User::ActiveRecord_Relation) }
  def select(*args, &block); end

  foo.users.select {|u| T.reveal_type(u)} # Revealed type: NilClass

If the generated sig looked like this:

  sig { params(args: T.untyped, block: T.proc.params(user: User).void).returns(User::ActiveRecord_Relation) }
  def select(*args, &block); end

  foo.users.select {|u| T.reveal_type(u)} # Revealed type: User

It would be handy. At the moment you have to either call to_a as @pje said. This is separate from the issue of the return type, which I don't have a strong opinion on yet.

from sorbet-rails.

hdoan741 avatar hdoan741 commented on August 30, 2024

from sorbet-rails.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.