I would like to set the property of an object when the value is Just, and not to set the property when the value is Nothing. However, if the value is Nothing, the returned object become Nothing.
let person = {name: 'Franz'}
const address = getAddress(response) // getAddress returns Maybe
// person will be Nothing if address is Nothing
person = S.map(R.assoc('address', R.__, person))(address)
It seems your
Person
type is something like this:If at all possible, I suggest avoiding
null
,undefined
, and optional record fields as these are all sources of bugs. I suggest something like this:If for some reason you must have an optional
address
field in this case, you could useS.maybe
:The result will either be
{name: 'Franz'}
or something like{name: 'Franz', address: 'Frankfurter Allee 42'}
. As I mentioned, though,{name: 'Franz', address: S.Nothing}
and{name: 'Franz', address: S.Just ('Frankfurter Allee 42')}
are preferable representations of these “people”.