Giter Club home page Giter Club logo

Comments (3)

sunny avatar sunny commented on June 24, 2024 2

Hey @luizfonseca!

Actually the default is applied only if the argument is not given. When given, the default is never applied, even if it's nil.

The reasoning behind this is to be able to actually pass nil as a value. This is similar to the way Ruby methods assign defaults. For example:

def my_method(weekdays: [0, 1])
  weekdays
end

my_method # => [0, 1]
my_method(weekdays: nil) # => nil

If you want nil to fallback to the default, you could do something like the following:

class MyInteractor < Actor
  input :weekdays,
        type: Array,
        must: {
          be_valid: ->(weekdays) {
            weekdays.nil? || weekdays.all?(SomeValidation)
          }
        },
        allow_nil: true

  def call
    # …
  end

  def weekdays
    super || DEFAULT_WEEKDAYS
  end
end

Does that clarify your issue? I'm open to suggestions as to how to make this simpler. Perhaps we could have another option to allow using the given default when the input is nil? For example, calling it fallback instead of default could be an idea.

from actor.

luizfonseca avatar luizfonseca commented on June 24, 2024 1

@sunny It does! Thanks for the clarifications! 🙏

I am going to close the issue, as my original point has been clarified. Thank you for the great work on the library 👍

from actor.

sunny avatar sunny commented on June 24, 2024

Luiz, I added a spec with your use-case in a0df1f7. Hopefully this clarifies a bit more the current behavior.

from actor.

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.