You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Note the extra nullary call. It is there for better type inference. To create a type safe
369
+
// lens we need to tell the compiler both the type of source and the type of destination property.
370
+
// Unlike with Atom.lens, the compiler doesn't yet know the type of the source data, so we have to
371
+
// explicitly state it. The compiler then can easily infer the type of the destination property by
372
+
// its name.
373
+
//
374
+
// We need the nullary call because we have two generic type parameters, and want one of them
375
+
// explicit and another inferred. So the nullary call is there only to supply the type argument
376
+
// for the source data type.
371
377
```
372
378
373
379
The best part about this is that it is completely type safe, and all of the IDE tools (like auto-completion, refactoring, etc.) will just work.
@@ -405,8 +411,8 @@ const obj = Atom.create({
405
411
a: 5
406
412
})
407
413
408
-
// create a lens to look at an `a` property of the object
409
-
const a =Lens.prop((x:typeofobj) =>x.a)
414
+
// create a lens to look at the `a` property of the object
415
+
const a =Lens.key<typeofobj>()('a')
410
416
411
417
// create a lensed atom that will hold a value of the `a` property of our object
412
418
const lensed =obj.lens(a)
@@ -427,11 +433,7 @@ console.log(obj.get())
427
433
Note how the source atom's value has changed when we set a new value to the lensed atom – that's it. There's also a neat shortcut to create lensed atoms:
428
434
429
435
```typescript
430
-
const lensed =obj.lens(x=>x.a) // ¹
431
-
432
-
// ¹ SAME RESTRICTIONS APPLY! just like with Lens.prop, the getter function argument
433
-
// to the atom's `lens` method can only be a simple property path access function which
434
-
// consists of a single property access expression and has no side effects.
436
+
const lensed =obj.lens('a')
435
437
```
436
438
437
439
We don't need to explicitly create a `Lens` – atom's `lens` method already has a couple of overloads to create lensed atoms on the spot. Also note that we didn't need to add the `typeof obj` type annotation here: the compiler already knows the type of data we're operating on (from the type of `obj`, which in this case is `Atom<{ a: number }`) and can infer the type of `x` for us.
0 commit comments