DEV Community

Joona Piirainen
Joona Piirainen

Posted on

Intro to RecoilJS. Build a small app with Recoil!

what is recoilJS?

RecoilJS is yet another state management library for React. It is maintained and open-sourced by Facebook. But why would we need another state management library since we already have so many? Well, I’m not quite qualified enough to answer this question so you should read the recoilJS docs. But at least in my eyes recoilJS makes more complex state management simpler and removes a lot of the boilerplate that would otherwise be involved. RecoilJS syntax is Reactish as they said in the docs and it almost feels like it’s a part of the React API.

Building a simple expense tracker

This app is highly based on Brad Traversy’s expense tracker from his vanilla javascript projects. I just thought this would be an excellent little app that needs some state management to work. So I will be showing you how to create this fun little app using React with recoilJS.

This app will consist of components that will be able to:

  1. Display transaction items
  2. Show balance, expense and income totals
  3. Add new transaction that reflects the total amount
  4. Delete items
  5. Persist to local storage

This tutorial assumes that you have at least some experience with React and Hooks in advance.

You can find the code in this Github Repo.

Here’s a picture of my file structure to make things more clear!
This apps file Structure

So let’s start writing it!

first, we jump into the root directory and wrap the App.js component with RecoilRoot. In this application the App.js component will contain all other components.

index.js

import React from "react"
import ReactDOM from "react-dom"
import App from "./App"
import { RecoilRoot } from "recoil"

ReactDOM.render(
  <React.StrictMode>
    <RecoilRoot>
      <App />
    </RecoilRoot>
  </React.StrictMode>,
  document.getElementById("root")
)
Enter fullscreen mode Exit fullscreen mode

RecoilRoot is the actual component that will provide our state across our whole application. You can think of it similarly to let’s say a context provider while using React’s useContext hook or a store provider when using redux.

Atoms

atoms.js

import { atom } from "recoil"

export const transactionListState = atom({
  key: "transactionListState",
  default: [
    {
      id: 1,
      amount: 10,
      text: "Found a 10 dollar bill!",
    },
    {
      id: 2,
      amount: -110,
      text: "New keyboard",
    },
    {
      id: 3,
      amount: 300,
      text: "Sold my old Playstation!",
    },
  ],
})
Enter fullscreen mode Exit fullscreen mode

In recoilJS, atoms are units of state. They are updateable and subscribable, which means that when an atom is updated, each subscribed component is re-rendered with the new value.
We need to give each atom a unique key and set some default value, just like with the useState hook. My atom will eventually have an empty array([]) as its default value. I just gave some initial data, so it’s easier to understand what’s going on :-). If this is not making any sense right now, I promise it will soon!

Lets jump into the Transaction.js component that will contain a single transaction and later we will display many of these in the TransactionList.js component.

import React from "react"

export const Transaction = ({ transaction }) => {
  return (
    <li className={transaction.amount}>
      {transaction.text}
      <span>{transaction.amount}</span>
      <button className="delete-btn">x</button>
    </li>
  )
}
Enter fullscreen mode Exit fullscreen mode

Right now we don’t have much there just a template ready to take in some data. Next, we will display the data I already have inside my atom from TransactionList.js!

import React from "react"
import { Transaction } from "./Transaction"
import { transactionListState } from "../recoil/atoms"
import { useRecoilValue } from "recoil"

export const TransactionList = () => {
  const transactionList = useRecoilValue(transactionListState)

  return (
    <>
      <h3>Transaction History</h3>
      <ul className="list">
        {transactionList.map(transaction => (
          <Transaction key={transaction.id} transaction={transaction} />
        ))}
      </ul>
    </>
  )
}
Enter fullscreen mode Exit fullscreen mode

So if you are familiar with react this will probably look quite similar to what you have previously seen. Here we use useRecoilValue instead of useRecoilState because we only read the current state of our transactionListState atom.
Then we just map our array of transactions into the Transaction.js component and send the data down with props. Let’s take a look at the NewTransaction.js component.

import React, { useState } from "react"
import { transactionListState } from "../recoil/atoms"
import { useSetRecoilState } from "recoil"
import { v4 as uuidv4 } from "uuid"

export const NewTransaction = () => {
  const [textValue, setTextValue] = useState("")
  const [amount, setAmount] = useState(0)
  const setTransactionList = useSetRecoilState(transactionListState)

  const NewTransaction = e => {
    e.preventDefault()
    setTransactionList(oldTransactionList => [
      ...oldTransactionList,
      {
        id: uuidv4(),
        amount: +amount,
        text: textValue,
      },
    ])
    setTextValue("")
    setAmount(0)
  }

  const handleTextValue = e => {
    setTextValue(e.target.value)
  }
  const handleAmount = e => {
    setAmount(e.target.value)
  }

  return (
    <>
      <h3>Add new transaction</h3>
      <form>
        <div>
          <label htmlFor="text">Description</label>
          <input value={textValue} onChange={handleTextValue} />
        </div>
        <div>
          <label htmlFor="amount">
            Amount <br />
          </label>
          <input value={amount} onChange={handleAmount} />
        </div>
        <button onClick={NewTransaction}>Add transaction</button>
      </form>
    </>
  )
}
Enter fullscreen mode Exit fullscreen mode

So here we need to be able to add a new transaction to our atom that contains the current state of our transactions list. Therefore we use useSetRecoilState which allows us to do just that! Our NewTransaction function sets the state to contain all the transactions that were already there and adds a new item into the list.

And if you were wondering what’s going on with id: uuidv4(), it’s just a library that generates some random id’s for us!

Selectors

The second core concept of Recoil is Selectors. As they state in the docs, a selector represents a piece of derived state. You can think of derived state as the output of passing state to a pure function that modifies the given state in some way.
So we need to be able to calculate the total balance based on the current state of our transactionList. This is a perfect place to use a selector! We will declare a new selector in Selectors.js.

import { transactionListState } from "./atoms"
import { selector } from "recoil"

export const balanceState = selector({
  key: "balanceState",
  get: ({ get }) => {
    const transactionList = get(transactionListState)
    const amounts = transactionList.map(transaction => transaction.amount)
    const balance = amounts.reduce((acc, num) => (acc += num), 0).toFixed(2)

    return balance
  },
})
Enter fullscreen mode Exit fullscreen mode

Selectors also take in a unique key, but they don’t have a default value, but instead, they have getand set properties. We will only need the get property so we’ll focus on that. With the get property, we can get the value of some atom and do stuff with it. In our case, we use our transactionListState atom, and we want to add together all the amount properties of the transactions.
After the calculation, we just return the result, and we can use it in our Balance.js component!

import React from "react"
import { useRecoilValue } from "recoil"
import { balanceState } from "../recoil/selectors"

export const Balance = () => {
  const balance = useRecoilValue(balanceState)

  return (
    <>
      <h4>Your Balance</h4>
      <h1>{balance}</h1>
    </>
  )
}
Enter fullscreen mode Exit fullscreen mode

Quite simple right? 😺

Now let’s make one more selector that will allow us to display the total amounts of incomes and expenses.

export const expenseStatsState = selector({
  key: "expenseStatsState",
  get: ({ get }) => {
    const transactionList = get(transactionListState)
    const amounts = transactionList.map(transaction => transaction.amount)
    const income = amounts
      .filter(num => num >= 0)
      .reduce((acc, num) => (acc += num), 0)
      .toFixed(2)

    const expense =
      amounts.filter(num => num < 0).reduce((acc, num) => (acc += num), 0) *
      -(1).toFixed(2)

    return {
      income,
      expense,
    }
  },
})
Enter fullscreen mode Exit fullscreen mode

Lets use it in ExpenseStatus.js. We access the value a bit differently now since we returned an object that contains two values, so we use deconstructing.

import React from "react"
import { useRecoilValue } from "recoil"
import { expenseStatsState } from "../recoil/selectors"

export const ExpenseStatus = () => {
  const { income, expense } = useRecoilValue(expenseStatsState)

  return (
    <div className="expense-status-container">
      <div>
        <h4> Income </h4> <p className="money plus">{income}</p>
      </div>
      <div>
        <h4> Expense </h4> <p className="money minus">-{expense}</p>
      </div>
    </div>
  )
}
Enter fullscreen mode Exit fullscreen mode

Removing transactions

We are still missing the ability to remove stuff from our list of transactions, so let’s make that possible! We already have a delete button inside of our Transaction.js component so we just need to add some functionality.

import React from "react"
import { useRecoilState } from "recoil"
import { transactionListState } from "../recoil/atoms"
import { removeItemAtIndex } from "../utils"

export const Transaction = ({ transaction }) => {
  const [transactionList, setTransactionList] = useRecoilState(
    transactionListState
  )
  const index = transactionList.findIndex(listItem => listItem === transaction)

  const removeTransaction = () => {
    const newList = removeItemAtIndex(transactionList, index)
    setTransactionList(newList)
  }

  const sign = transaction.amount < 0 ? "-" : "+"

  return (
    <li className={transaction.amount < 0 ? "minus" : "plus"}>
      {transaction.text}
      <span>
        {sign}${Math.abs(transaction.amount)}
      </span>
      <button className="delete-btn" onClick={removeTransaction}>
        x
      </button>
    </li>
  )
}

//  helper function for removing a transaction
const removeItemAtIndex = (arr, index) => {
  return [...arr.slice(0, index), ...arr.slice(index + 1)]
}
Enter fullscreen mode Exit fullscreen mode

Now we finally use useRecoilState! As you can see it’s just like using the useState hook in vanilla React. The reason I need to do Math.abs() which gives me the absolute value of the number we pass into it is that it makes all the negative numbers positive, so the logic for putting the sign ahead of the number doesn’t get messed up.

Finally!

Let’s implement local storage, so all our transactions don’t disappear if we reload our page!
We just need to update two of our components to get this working.

Firstly @ NewTransaction.js we just add this code snippet after our NewTransaction function to set all transactions that we create to localStorage. We also need to change from using useSetRecoilState to useRecoilState since we need to pass our transactionList to localStorage.

useEffect(() => {
  localStorage.setItem("TRANSACTION_LIST", JSON.stringify(transactionList))
}, [transactionList])
Enter fullscreen mode Exit fullscreen mode

And @TransactionList.js we switch from using useRecoilValue to*useRecoilState* since if we find some transactions in local localStorage we need to set the list state to match that.

import React, { useEffect } from "react"
import { Transaction } from "./Transaction"
import { transactionListState } from "../recoil/atoms"
import { useRecoilState } from "recoil"

export const TransactionList = () => {
  const [transactionList, setTransactionList] = useRecoilState(
    transactionListState
  )
  useEffect(() => {
    setTransactionList(JSON.parse(localStorage.getItem("TRANSACTION_LIST")))
  }, [setTransactionList])

  return (
    <>
      <h3>Transaction History</h3>
      <ul className="list">
        {transactionList !== null &&
          transactionList.map(transaction => (
            <Transaction key={transaction.id} transaction={transaction} />
          ))}
      </ul>
    </>
  )
}
Enter fullscreen mode Exit fullscreen mode

So that’s it! I hope you found this article useful in some way.

👋🏼👋🏼

Oldest comments (2)

Collapse
 
sbin0819 profile image
sbin

Thanks a lot!

Collapse
 
krisrajzlive profile image
Raj

Good one @japiirainen could you take a look at my post and let me know your suggestion please?
dev.to/krisrajzlive/recoil-update-...