30 Days Of React: States

Twitter Follow Author: Asabeneh Yetayeh
October, 2020
[<< Day 7](../07_Day_Class_Components/07_class_components.md) | [Day 9 >>](../09_Day_Conditional_Rendering/09_conditional_rendering.md) ![30 Days of React banner](../images/30_days_of_react_banner_day_8.jpg) - [States](#states) - [What is State?](#what-is-state) - [How to set a state](#how-to-set-a-state) - [Resetting a state using a JavaScript method](#resetting-a-state-using-a-javascript-method) - [Exercises](#exercises) - [Exercises: Level 1](#exercises-level-1) - [Exercises: Level 2](#exercises-level-2) - [Exercises: Level 3](#exercises-level-3) # States ## What is State? What is state ? The English meaning of state is _the particular condition that someone or something is in at a specific time_. Let us see some states being something - Are you happy or sad? - Is light on or off ? Is present or absent ? - Is full or empty ? For instance, I am happy because I am enjoying creating 30 Days Of React challenge. I believe that you are happy too. State is an object in react which let the component re-render when state data changes. ## How to set a state We set an initial state inside the constructor or outside the constructor of a class based component. We do not directly change or mutate the state but we use the _setState()_ method to reset to a new state. . As you can see below in the state object we have count with initial value 0. We can access the state object using _this.state_ and the property name. See the example below. ```js // index.js import React from 'react' import ReactDOM from 'react-dom' class App extends React.Component { // declaring state state = { count: 0, } render() { // accessing the state value const count = this.state.count return (

{count}

) } } const rootElement = document.getElementById('root') ReactDOM.render(, rootElement) ``` If you run the above code you will see zero on the browser. We can increase or decrease the value the state by changing the value of the state using JavaScript method. ## Resetting a state using a JavaScript method Now, let's add some methods which increase or decrease the value of count by clicking a button. Let us add a button to increase and a button to decrease the value of count. To set the state we use react method _this.setState_. See the example below ```js // index.js import React from 'react' import ReactDOM from 'react-dom' class App extends React.Component { // declaring state state = { count: 0, } render() { // accessing the state value const count = this.state.count return (

{count}

) } } const rootElement = document.getElementById('root') ReactDOM.render(, rootElement) ``` If you understand the above example, adding minus one method will be easy. Let us add the minus one method on the click event. ```js // index.js import React from 'react' import ReactDOM from 'react-dom' class App extends React.Component { // declaring state state = { count: 0, } render() { // accessing the state value const count = this.state.count return (

{count}

{' '}
) } } const rootElement = document.getElementById('root') ReactDOM.render(, rootElement) ``` Both button work well, but we need to re-structure the code well. Let us create separate methods in the component. ```js // index.js import React from 'react' import ReactDOM from 'react-dom' class App extends React.Component { // declaring state state = { count: 0, } // method which add one to the state addOne = () => { this.setState({ count: this.state.count + 1 }) } // method which subtract one to the state minusOne = () => { this.setState({ count: this.state.count - 1 }) } render() { // accessing the state value const count = this.state.count return (

{count}

{' '}
) } } const rootElement = document.getElementById('root') ReactDOM.render(, rootElement) ``` Let us do more example about state, in the following example we will develop small application which shows either a dog or cat. We can start by setting the initial state with cat then when it is clicked it will show dog and alternatively. We need one method which changes the animal alternatively. See the code below. If you want to see live click [here](https://codepen.io/Asabeneh/full/LYVxKpq). ```js // index.js import React from 'react' import ReactDOM from 'react-dom' class App extends React.Component { // declaring state state = { image: 'https://www.smithsstationah.com/imagebank/eVetSites/Feline/01.jpg', } changeAnimal = () => { let dogURL = 'https://static.onecms.io/wp-content/uploads/sites/12/2015/04/dogs-pembroke-welsh-corgi-400x400.jpg' let catURL = 'https://www.smithsstationah.com/imagebank/eVetSites/Feline/01.jpg' let image = this.state.image === catURL ? dogURL : catURL this.setState({ image }) } render() { // accessing the state value const count = this.state.count return (

30 Days Of React

animal
) } } const rootElement = document.getElementById('root') ReactDOM.render(, rootElement) ``` Now, let's put all the codes we have so far and also let's implement state when it is necessary. ```js // index.js import React from 'react' import ReactDOM from 'react-dom' import asabenehImage from './images/asabeneh.jpg' // Fuction to show month date year const showDate = (time) => { const months = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', ] const month = months[time.getMonth()].slice(0, 3) const year = time.getFullYear() const date = time.getDate() return ` ${month} ${date}, ${year}` } // User Card Component const UserCard = ({ user: { firstName, lastName, image } }) => (
{firstName}

{firstName} {lastName}

) // A button component const Button = ({ text, onClick, style }) => ( ) // CSS styles in JavaScript Object const buttonStyles = { backgroundColor: '#61dbfb', padding: 10, border: 'none', borderRadius: 5, margin: 3, cursor: 'pointer', fontSize: 18, color: 'white', } // class based component class Header extends React.Component { constructor(props) { super(props) // the code inside the constructor run before any other code } render() { console.log(this.props.data) const { welcome, title, subtitle, author: { firstName, lastName }, date, } = this.props.data return (

{welcome}

{title}

{subtitle}

{firstName} {lastName}

{date}
) } } const Count = ({ count, addOne, minusOne }) => (

{count}

) // TechList Component // class base component class TechList extends React.Component { constructor(props) { super(props) } render() { const { techs } = this.props const techsFormatted = techs.map((tech) =>
  • {tech}
  • ) return techsFormatted } } // Main Component // Class Component class Main extends React.Component { constructor(props) { super(props) } render() { const { techs, user, greetPeople, handleTime, changeBackground, count, addOne, minusOne, } = this.props return (

    Prerequisite to get started react.js:

    ) } } // Footer Component // Class component class Footer extends React.Component { constructor(props) { super(props) } render() { return (

    Copyright {this.props.date.getFullYear()}

    ) } } class App extends React.Component { state = { count: 0, styles: { backgroundColor: '', color: '', }, } showDate = (time) => { const months = [ 'January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December', ] const month = months[time.getMonth()].slice(0, 3) const year = time.getFullYear() const date = time.getDate() return ` ${month} ${date}, ${year}` } addOne = () => { this.setState({ count: this.state.count + 1 }) } // method which subtract one to the state minusOne = () => { this.setState({ count: this.state.count - 1 }) } handleTime = () => { alert(this.showDate(new Date())) } greetPeople = () => { alert('Welcome to 30 Days Of React Challenge, 2020') } changeBackground = () => {} render() { const data = { welcome: 'Welcome to 30 Days Of React', title: 'Getting Started React', subtitle: 'JavaScript Library', author: { firstName: 'Asabeneh', lastName: 'Yetayeh', }, date: 'Oct 7, 2020', } const techs = ['HTML', 'CSS', 'JavaScript'] const date = new Date() // copying the author from data object to user variable using spread operator const user = { ...data.author, image: asabenehImage } return (
    {this.state.backgroundColor}
    ) } } const rootElement = document.getElementById('root') ReactDOM.render(, rootElement) ``` I believe that now you have a very good understanding of state. After this, we will use state in other sections too because state and props is the core of a react application. ## Exercises ### Exercises: Level 1 1. What was your state today? Are you happy? I hope so. If you manage to make it this far you should be happy. 2. What is state in React ? 3. What is the difference between props and state in React ? 4. How do you access state in a React component ? 5. How do you set a set in a React component ? ### Exercises: Level 2 1. Use React state to change the background of the page. You can use this technique to apply a dark mode for your portfolio. ![Change Background](../images/08_day_changing_background_exercise.gif) 2. After long time of lock down you may think of travelling and you do not know where to go. Then make use of this random country selector to select your holiday destination. ![Change Background](../images/08_day_select_country_exercise.gif) ### Exercises: Level 3 Coming 🎉 CONGRATULATIONS ! 🎉 [<< Day 7](../07_Day_Class_Components/07_class_components.md) | [Day 9 >>](../09_Day_Conditional_Rendering/09_conditional_rendering.md)