Javascript doesn’t really have an immutable object but with typescript I can prevent compilation if there’s a rogue function that will try to mutate an object.
Let’s say I have this object, and let’s assume the values are always there
because if I start talking about the possibility of null
then I have to talk
about prisms. So let’s take it easy and stick with lenses for now.
const bankIdentity: BankIdentity = {
account: {
owner: {
address: {
data: {
city: "Malakoff",
region: "NY",
street: "2992 Cameron Road",
postal_code: "14236",
country: "US"
,
}primary: true
}
}
}; }
It has this type.
interface Address {
city: string;
readonly region: string;
readonly street: string;
readonly postal_code: string;
readonly country: string;
readonly
}
interface AddressData {
data: Address;
readonly primary: boolean;
readonly
}
interface Owner {
address: AddressData;
readonly
}
interface Account {
owner: Owner;
readonly
}
interface BankIdentity {
account: Account;
readonly }
Accessing a value
Without using any library I can manipulate this object no problem. When I want to access a field, I just do the dot syntax and it gives me the value of that field.
const cityRes = bankIdentity.account.owner.address.data.city;
// "Malakoff"
Setting a new value and returning the whole object
It becomes a hassle when I have to set a new value.
const cityRes = Object.assign({}, bankIdentity, {
account: {
owner: {
address: {
data: Object.assign({}, bankIdentity.account.owner.address.data, {
city: "Another City"
})
}
}
};
})
// { account:
// { owner:
// { address:
// { data:
// { city: 'Another City',
// region: 'NY',
// street: '2992 Cameron Road',
// postal_code: '14236',
// country: 'US'
// }
// }
// }
// }
//}
Applying a function and returning the whole object
Same ugliness can be seen when applying a function to the field.
const capitalize = (s: string): string => s.toUpperCase();
const cityRes = Object.assign({}, bankIdentity, {
account: {
owner: {
address: {
data: Object.assign({}, bankIdentity.account.owner.address.data, {
city: capitalize(bankIdentity.account.owner.address.data.city)
})
}
}
};
})
// { account:
// { owner:
// { address:
// { data:
// { city: 'MALAKOFF',
// region: 'NY',
// street: '2992 Cameron Road',
// postal_code: '14236',
// country: 'US'
// }
// }
// }
// }
//}
monocle-ts
Lenses to the rescue! Unfortunately I don’t think it’s possible or at least easy to generate lenses based on the objects like what makeLenses does, so I have to hand code all of them.
import { Lens } from "monocle-ts";
const account = Lens.fromProp<Bankdentity>()("account");
const owner = Lens.fromProp<Account>()("owner");
const address = Lens.fromProp<Owner>()("address");
const data = Lens.fromProp<AddressData>()("data");
const city = Lens.fromProp<Address>()("city");
const region = Lens.fromProp<Address>()("region");
const street = Lens.fromProp<Address>()("street");
const postalCode = Lens.fromProp<Address>()("postal_code");
const country = Lens.fromProp<Address>()("country");
Well… accessing a value with monocle-ts looks pretty verbose.
const cityRes = account
.compose(owner)
.compose(address)
.compose(data)
.compose(city)
.get(bankIdentity);
// "Malakoff"
I guess I can do it like this
const cityRes = Lens.fromPath<BankIdentity>()(["account", "owner", "address", "data", "city"]).get(bankIdentity);
// "Malakoff"
but I think it’s better to just use the dot syntax, at least in my opinion.
Lenses shine when it comes to updating and applying a function to a deeply nested value.
Setting a value and returning the whole object
const cityRes = account
.compose(owner)
.compose(address)
.compose(data)
.compose(city)
.set("Another City")(bankIdentity);
// { account:
// { owner:
// { address:
// { data:
// { city: 'Another City',
// region: 'NY',
// street: '2992 Cameron Road',
// postal_code: '14236',
// country: 'US'
// }
// }
// }
// }
//}
I think that looks a lot cleaner than using Object.assign
.
Applying a function and returning the whole object
Yep. That definitely looks a lot cleaner.
const capitalize = (s: string): string => s.toUpperCase();
const cityRes = account
.compose(owner)
.compose(address)
.compose(data)
.compose(city).modify(capitalize)(bankIdentity);
// { account:
// { owner:
// { address:
// { data:
// { city: 'MALAKOFF',
// region: 'NY',
// street: '2992 Cameron Road',
// postal_code: '14236',
// country: 'US'
// }
// }
// }
// }
//}