10 Libraries You Should Know as a React Developer

Image
 Being a modern React developer is not about knowing just React itself. To stay competitive, it is highly recommended to explore the whole ecosystem In this article I've compiled some of the most useful React component libraries that you could use to speed up your developer workflow. Those will include anything from working with forms, charts, calendars, tables, guides, popups, colors, animations, music, images and so much more. 1. react-hook-form React Hooks for form state management and validation. 2. recharts Redefined chart library built with React and D3. 3. react-big-calendar An events calendar built for React and modern browsers. 4. react-beautiful-dnd Beautiful and accessible drag and drop for lists with React. 5. react-table A library for building powerful tables and data grids. 6. react-joyride Create guided tours for your apps. 7. react-advanced-cropper Create customized crops for your designs. 8. react-colorful A tiny, dependency-free, fast and accessible color picker c...

Promises In Javascript And Their Importance

Promises In real life and in Javascript

We humans give or receive a promise to do some activity at some point in time. If we keep the promise we make others happy but if we do not keep the promise, it may lead to discontentment. Promise in JavaScript has something in common with the above examples.

Promises are used to handle asynchronous operations in JavaScript. They are easy to manage when dealing with multiple asynchronous operations where callbacks can create callback hell leading to unmanageable code.


Importance of Javascript Promises

Prior to promises events and callback functions were used but they had limited functionalities and created unmanageable code. Multiple callback functions would create callback hell that leads to unmanageable code. Also, it is not easy for any user to handle multiple callbacks at the same time. Events were not good at handling asynchronous operations.


Promises in Javascript

A Promise is a way to handle asynchronous operations in JavaScript. It allows handlers with an asynchronous action's eventual success value or failure reason. This lets asynchronous methods return values like synchronous methods: instead of immediately returning the final value, the asynchronous method returns a promise to supply the value at some point in the future.



A promise is said to be settled if it is either fulfilled or rejected, but not pending.


A Promise is in one of these states:

  1. pending: initial state, neither fulfilled nor rejected.
  2. fulfilled: meaning that the operation was completed successfully.
  3. rejected: meaning that the operation failed.

A pending promise can either be fulfilled with a value, or rejected with a reason (error). When either of these options happens, the associated handlers queued up by a promise's then method are called. (If the promise has already been fulfilled or rejected when a corresponding handler is attached, the handler will be called, so there is no race condition between an asynchronous operation completing and its handlers being attached.

As the Promise.prototype.then() and Promise.prototype.catch() methods return promises, they can be chained.

 

Callbacks

To understand promise very well let us understand callback first. Let's see the following callbacks. From the following code blocks, you will notice, the difference between callback and promises.

Call back Let us see a callback function that can take two parameters. The first parameter is err and the second is the result. If the err parameter is false, there will not be an error otherwise it will return an error.

In this case, the err has a value and it will return the err block.


//Callback

const doSomething = callback => {

  setTimeout(() => {

    const skills = ['HTML', 'CSS', 'JS']

    callback('It did not go well', skills)

  }, 2000)

}

const callback = (err, result) => {

  if (err) {

    return console.log(err)

  }

  return console.log(result)

}

doSomething(callback)

// after 2 seconds it will print


It did not go well

In this case, the err is false and it will return the else block which is the result.

 

const doSomething = callback => {

  setTimeout(() => {

    const skills = ['HTML', 'CSS', 'JS']

    callback(false, skills)

  }, 2000)

}

 

doSomething((err, result) => {

  if (err) {

    return console.log(err)

  }

  return console.log(result)

})

// after 2 seconds it will print the skills

["HTML", "CSS", "JS"]


Promise constructor

We can create a promise using the Promise constructor. We can create a new promise using the key word new followed by the word Promise and followed by a parenthesis. Inside the parenthesis, it takes a callback function. The promise callback function has two parameters which are the resolve and reject functions.


// syntax

const promise = new Promise((resolve, reject) => {

  resolve('success')

  reject('failure')

})

// Promise

const doPromise = new Promise((resolve, reject) => {

  setTimeout(() => {

    const skills = ['HTML', 'CSS', 'JS']

    if (skills.length > 0) {

      resolve(skills)

    } else {

      reject('Something wrong has happened')

    }

  }, 2000)

})

 

doPromise

  .then(result => {

    console.log(result)

  })

  .catch(error => console.log(error))

["HTML", "CSS", "JS"]


The above promise has been settled with resolve. Let us another example when the promise is settled with reject.

 

// Promise

const doPromise = new Promise((resolve, reject) => {

  setTimeout(() => {

    const skills = ['HTML', 'CSS', 'JS']

    if (skills.includes('Node')) {

      resolve('fullstack developer')

    } else {

      reject('Something wrong has happened')

    }

  }, 2000)

})

 

doPromise

  .then(result => {

    console.log(result)

  })

  .catch(error => console.error(error))

Something wrong has happened


Fetch API

The Fetch API provides an interface for fetching resources (including across the network). It will seem familiar to anyone who has used XMLHttpRequest, but the new API provides a more powerful and flexible feature set. In this challenge we will use fetch to request url and APIS. In addition to that let us see demonstrate use case of promises in accessing network resources using the fetch API.

 

const url = 'https://restcountries.com/v2/all' // countries api

fetch(url)

  .then(response => response.json()) // accessing the API data as JSON

  .then(data => {

    // getting the data

    console.log(data)

  })

  .catch(error => console.error(error)) // handling error if something wrong happens

Async and Await

Async and await is an elegant way to handle promises. It is easy to understand and it clean to write.

 

const square = async function (n) {

  return n * n

}

square(2)

Promise {<resolved>: 4}


The word async in front of a function means that function will return a promise. The above square function instead of a value it returns a promise.

How do we access the value from the promise? To access the value from the promise, we will use the keyword await.


const square = async function (n) {

  return n * n

}

const value = await square(2)

console.log(value)

//4


Now, as you can see from the above example writing async in front of a function create a promise and to get the value from a promise we use await. Async and await go together, one can not exist without the other.

Let us fetch API data using both promise method and async and await method.

 

1. promise

const url = 'https://restcountries.com/v2/all'

fetch(url)

  .then(response => response.json())

  .then(data => {

    console.log(data)

  })

  .catch(error => console.error(error))


2. async and await

const fetchData = async () => {

  try {

    const response = await fetch(url)

    const countries = await response.json()

    console.log(countries)

  } catch (err) {

    console.error(err)

  }

}

console.log('===== async and await')

fetchData()


Applications 

  1. Promises are used for asynchronous handling of events.
  2. Promises are used to handle asynchronous http requests.

Thats all for this blog, hope you all like it and stay tuned for such informative content.
Thank You :)

Comments

Popular posts from this blog

Javascript Fetch API

Amazon Elastic Compute Cloud (Amazon EC2)

Setting up Node JS project with ESLint and Preetier