DEV Community

Sidra Maqbool
Sidra Maqbool

Posted on

Understanding React Components: Functional vs Class, Naming Convention, Usage, Access, and Lifecycle Methods

Declaration

In React, components are used to build user interfaces. There are two types of components: functional components and class components. Functional components are defined as JavaScript functions, while class components are defined as JavaScript classes. Here's an example of a simple functional component:

function Greeting(props) {
  return <h1>Hello, {props.name}!</h1>;
}
Enter fullscreen mode Exit fullscreen mode

This component takes a props object as an argument and returns a heading element with a greeting that includes the name passed in as a prop.

Class components are defined using the class keyword and extend the React.Component class. Here's an example of a class component:

class Greeting extends React.Component {
  render() {
    return <h1>Hello, {this.props.name}!</h1>;
  }
}
Enter fullscreen mode Exit fullscreen mode

This component also takes a name prop and returns a heading element with a greeting. However, in this case, the prop is accessed using the this.props object.

Naming Convention

When naming components, it's recommended to use PascalCase (i.e., capitalize the first letter of each word) for the component name. For example, Greeting is a good name for a component that displays a greeting.

Usage

To use a component in your application, you can simply render it as a child of another component. Here's an example of rendering the Greeting component:

function App() {
  return (
    <div>
      <Greeting name="John" />
    </div>
  );
}
Enter fullscreen mode Exit fullscreen mode

In this example, the Greeting component is rendered inside the App component, with the name prop set to "John". When the App component is rendered, it will also render the Greeting component with the provided prop.

Access

Props can be accessed in both functional and class components using the props object. In functional components, props are passed as an argument to the function. In class components, props are accessed using this.props.

Lifecycle Methods

React components have several lifecycle methods that are called at different points during the component's lifecycle. These methods can be used to perform actions at specific times, such as when a component is first mounted or when it is updated. Here are some of the most commonly used lifecycle methods:

constructor(): This method is called when the component is first created. It is used to initialize state and bind event handlers.

componentDidMount(): This method is called after the component is mounted (i.e., added to the DOM). It is used to perform any setup that requires access to the DOM, such as fetching data from an API.

componentDidUpdate(): This method is called after the component is updated. It is used to perform any actions that need to be taken when the component's props or state change.

componentWillUnmount(): This method is called when the component is about to be removed from the DOM. It is used to clean up any resources that were created during the component's lifecycle.

Overall, understanding the basics of React components is essential to building efficient and effective user interfaces. With the ability to create both functional and class components, and access props in both types of components, developers have the flexibility to create complex and dynamic interfaces. Additionally, leveraging lifecycle methods can help optimize the performance and functionality of React components. By following best practices, such as naming conventions and understanding component usage, developers can build scalable and maintainable React applications. Happy Learning!

Top comments (0)