Capture Application Logic in Pure Functions to Create Immutable State

Share this video with your friends

Social Share Links

Send Tweet
Published 5 years ago
Updated 3 years ago

Our core logic of the Gifts application is written using pure functions, that produce an entirely new, immutable state. This allows us to reap the benefits of immutability in the remainder of the course.

Lecturer: [0:00] Let's build this application from scratch. This application has already been bootstrapped using create-react-app. In our example, we will be using React. However, it doesn't matter too much. It could have been any other library.

[0:16] Let's imagine how our states might look like at a specific point in time. Our state consists of a few concepts. It consists of users, as there will be multiple users. It consists of some GIFs, and every gif has a few properties: its ID, a description, an image, which in most cases, we will randomize, and it will store who did reserve this very GIF.

[0:41] We have two GIFs. One is an Amber license, which obviously is free, and the other one is an egghead subscription. Obviously, our test suite will fail because we don't have any tests yet, and we don't have anything to test neither. It's just static data.

[0:58] It is time to add some operations so that we can test them. The first one we are going to add is the action as a GIF. This will extend the states to add an additional GIF to the collection. The second one, a bit more complicated, is to toggle the reservation of a GIF. We have these two steps. Now let's write some tests that test these operations.

[1:25] In this first test, we are going to produce a new state where one GIF was added, a coffee mug. Now, because this course is about immutability, we will make sure that we add some additional tests that don't just test that the new state produced is correct, but also the ideal state is modified.

[1:44] Here's a first test. Our test run, they just fail because we didn't implement anything yet. Let's first add some similar tests, but this time for reserving a GIF. Note that the reserve by one refers to the ID of the current user. Finally, reserving a GIF that was already reserved for somebody else shouldn't change the reservation.

[2:10] Let's head to the implementation of this logic. First of all, adding a GIF. That's actually the easiest one. We have to remember, we want to capture the state as immutable data structures. We have to be sure that we don't modify the current state, but rather, produce an entire new state.

[2:29] We start by spreading in the current state. Inside that state, we're going to generate a new GIFs collection, which in turn consists of the old GIFs, and finally, the new object that has to be added to the collection. This should suffice to make our first test pass. Yes, our first test has passed.

[2:49] Let's implement toggling our reservation. Toggling a reservation is a lot trickier. The reason for is that we have to, based on the ID, we have to find the correct GIF to modify.

[3:03] One way to express that is by mapping over all the GIFs we have. We don't have to write one. We just return your original one. If you found the one we want to modify, we create a new GIF and store that original in the collection.

[3:19] For the reservation, there are a few conditions that need to be met. First, if the GIF is not reserved by anybody, we simply reserve it for the current user. If the current user already reserved the current GIF then we un-reserve it.

[3:35] Finally, which means that a GIF was already reserved by somebody else, we just keep it that way. We save it. Now, all our tests should succeed.

egghead
egghead
~ an hour ago

Member comments are a way for members to communicate, interact, and ask questions about a lesson.

The instructor or someone from the community might respond to your question Here are a few basic guidelines to commenting on egghead.io

Be on-Topic

Comments are for discussing a lesson. If you're having a general issue with the website functionality, please contact us at support@egghead.io.

Avoid meta-discussion

  • This was great!
  • This was horrible!
  • I didn't like this because it didn't match my skill level.
  • +1 It will likely be deleted as spam.

Code Problems?

Should be accompanied by code! Codesandbox or Stackblitz provide a way to share code and discuss it in context

Details and Context

Vague question? Vague answer. Any details and context you can provide will lure more interesting answers!

Markdown supported.
Become a member to join the discussionEnroll Today