Git Product home page Git Product logo

Comments (4)

solnic avatar solnic commented on July 19, 2024 1

We'll address this, related issue is dry-rb/dry-types#194

from dry-struct.

solnic avatar solnic commented on July 19, 2024

Some entities has a lot of optional fields, that I don't want to specify.
I can use constructor_type :schema, but it allows to 'forget' required key.
I can use strit_with_defaults and .default(nil) to all my optional fields, but Types::Strict::String.optional.default(nil) is too much as for me.

irb(main):023:0> s = Class.new(Dry::Struct) { attribute :foo, Dry::Types['string'].optional }
=> #<Class:0x007f9abf989cf0>
irb(main):024:0> s.new
=> #<#<Class:0x007f9abf989cf0> foo=nil>
irb(main):025:0> s.new(foo: nil)
=> #<#<Class:0x007f9abf989cf0> foo=nil>
irb(main):026:0> s.new(foo: "bar")
=> #<#<Class:0x007f9abf989cf0> foo="bar">

Is this what you need?

I use default attributes defined in Entity because: a) they are often business rules b) it gives encapsulation.

What's the source of data for your entities?

Moreover, strict_with_defaults doesn't accept nil value for attributes with default value.

We do not use nil as an indicator that a default value should be set. "optional" means "nil or something else", so Types::Strict::String.optional is just a shortcut for Types::Strict::Nil | Types::Strict::String, which means if you pass a nil, then nil will be set as the value.

I use default attributes defined in Entity because: a) they are often business rules b) it gives encapsulation. Application still may send nil value for that attribute, the most obvious example is FactoryGirl who builds the object. And it's still desirable for Entity to set default value.

FactoryGirl, or any test-related use cases, this is not really relevant. Testing needs tools dedicated to testing. We have rom-factory which can build structs and we can add support for setting all attributes to nil by default.

P.S. Does it make sense to consider .optional attribute as one which has .default(nil)?

No, as I mentioned above, optional means that nil is allowed to be passed as a value.

from dry-struct.

tmertens avatar tmertens commented on July 19, 2024

@solnic I just ran into this same issue, where some models have 'optional' attributes that are not set immediately on creation. It would be preferable to just have optional attributes be optional in the input hash entirely rather than only optional in the sense that they can be passed with nil values.

from dry-struct.

flash-gordon avatar flash-gordon commented on July 19, 2024

This was addressed, see #64

from dry-struct.

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.