How to Build a Social Networking Site with Next.js (Facebook Clone)

Last updated
August 26, 2021
by
Hiep Le is a software engineer. He takes a huge interest in building software products and is a full-time software engineer. Most of his work is focused on one thing - to help people learn.

Hiep Le

Learn how to build a social networking site that will serve as a primary Facebook Clone by going through this step-by-step tutorial.

How to Build a Social Networking Site with Next.js (Facebook Clone)

Table of Contents

    Facebook timeline highlighting the sign up page and stories
    Facebook Clone
    Chat layout view in the Facebook Clone
    Chat Layout View

    App and web development have come a long way over the last few years. We use a lot of social media sites every day, including Facebook, Twitter, WhatsApp, Linkedin, and Instagram. One of the most widely used features is live chat. Using the CometChat communications SDK and Firebase backend services, you will learn how to build one of the best social networking sites on the internet with minimal effort.

    Follow along the steps to build a Facebook clone that will allow users to add Facebook-like posts. On the other hand, end-users can add friends, create groups, chat with friends, and chat in public groups. This tutorial will use Next.js, Firebase, and CometChat to build a Facebook clone.

    Prerequisites

    To follow this tutorial, you must have a fair level of understanding of the general use of Next.js. This will help you to improve your understanding of this tutorial.

    Installing the App Dependencies

    Step 1: You need to have Node.js installed on your machine.

    Second, you need to have the React-CLI installed on your computer using the command below.

    Step 2: Create a new project with the name facebok-clone by running the following statement.

    Step 3: You need to install some dependencies such as CometChat Pro, Firebase, Validator, Uuid.

    Configuring CometChat SDK

    1. Head to CometChat Pro and create an account.
    2. From the dashboard, add a new app called "facebook-clone".
    3. Select this newly added app from the list.
    4. From the Quick Start copy the APP_ID, REGION, and AUTH_KEY, which will be used later.
    5. Also, copy the REST_API_KEY from the API & Auth Key tab.
    6. Navigate to the Users tab, and delete all the default users and groups leaving it clean (very important).
    7. Create a file called .env.local in the root folder of your project.
    8. Import and inject your secret keys in the .env.local file containing your CometChat and Firebase in this manner.

         9. Make sure to exclude .env.local in your gitIgnore file from being exposed online.

    Setting Up Firebase Project

    Head to Firebase to create a new project and activate the email and password authentication service. This is how you do it:

    To begin using Firebase, you’ll need a Gmail account. Head over to Firebase and create a new project.


    Firebase landing page displaying new projects within a blue window
    Firebase

    Firebase provides support for authentication using different providers. For example, Social Auth, phone numbers, as well as the standard email and password method. Since we’ll be using the email and password authentication method in this tutorial, we need to enable this method for the project we created in Firebase, as it is by default disabled.

    Under the authentication tab for your project, click the sign-in method and you should see a list of providers currently supported by Firebase.

    Firebase authentication displaying the sign-in method
    Firebase Authentication

    Next, click the edit icon on the email/password provider and enable it.

    Enabling Firebase authentication with email and password
    Enable Firebase Authentication with Email and Password

    Now, you need to go and register your application under your Firebase project. On the project’s overview page, select the add app option and pick web as the platform.

    Firebase dashboard with Facebook clone displayed within a blue box
    Firebase Dashboard

    Once you’re done registering the application, you’ll be presented with a screen containing your application credentials. Take note of the second script tag as we’ll be using it shortly in our application.

    Congratulations, now that you're done with the installations, let's do some configurations.

    Configuring Styling for the Application

    Inside your project structure, open the globals.css files and paste the codes here. Globals.css file will contain all CSS of the application.

    Initializing CometChat for the Application

    The below codes initialize CometChat in your app before it spins up. The index.js entry file uses your CometChat API Credentials. We will get CometChat API Credentials from the .env.local file. Please do not share your secret keys on GitHub.

    Actually, index.js does not contain only the above code. It also contains other business logic of the application. The full source code of index.js file can be found here.

    Configuring the Firebase File

    This file is responsible for interfacing with Firebase authentication and database services. Also, it makes ready our google authentication service provider enabling us to sign in with google. Secret keys will be retrieved from the .env.local file. As mentioned above, please do not share your secret keys on GitHub.

    Project Structure

    The image below reveals the project structure. Make sure you see the folder arrangement before proceeding.

    Now, let's make the rest of the project components as seen in the image above.


    Project structure in the Facebook clone tutorial
    Project Structure

    The Index.js File

    The index.js file is responsible for rendering different components by the given conditions. For example, it will render the login page if the user has not logged in, yet or it renders the home page if the user has signed in to the system. On other hand, it will be used to initialize CometChat. The last but not least, this file will get the wall posts from Firebase and pass data to other components via props.

    The full source code of the index.js file can be found here.

    The Loading Component

    The loading component will be shown when the system performs some side effects such as interacting with Firebase or calling CometChat APIs and so on. This component will be used to increase user experience. If we do not have this component, the end-users cannot know when the data is loaded successfully.

    The full source code of the loading component can be found here.

    The Login Component

    This component is responsible for authenticating our users using the Firebase google authentication service. It accepts the user credentials and either signs him up or in, depending on if he is new to our application. See the code below and observe how our app interacts with Firebase and the CometChat SDK. The full source code can be found here.

    The above code indicates that we are using withModal as a higher-order component. This higher-order component will be used to reuse the code of showing and hiding the custom modal. In this case, we want to show the sign-up modal to let end-users register new accounts. We will discuss the sign-up component in the following section.

    The Sign Up Component

    The sign-up component will help end-users to register new accounts. This component will do two things. The first thing is to register new accounts on Firebase by using the Firebase authentication service. Aside from that, it also registers new accounts on CometChat by using the CometChat SDK. The full source code can be found here.

    The Wall View

    This is where all the magic happens. This component embodies other sub-components like the Header, Sidebar, Feed, Contact, etc.

    As intuitive as they sound, the above sub-components can be best observed in the image below.

    Facebook timeline highlighting the header and header icon
    Header Component
    Facebook timeline highlighting stories and story-card
    Stories Component & Story Component
    Facebook timeline highlighting input-box, post-list, and post in red
    Input-Box Component, Post-List Component & Post Component
    Sidebar Component, Sidebar-Row Component, Message Component, Chat-Box Component & Contact Component
    Group component
    Groups Component

    We will discuss all of these component in the following sections.

    The Header Component

    The header component
    Header Component

    The header component will be used to demonstrate the header of the page. It contains the search box, the list of search results, the middle icons, and the right icons. In this component, we use some other sub-components, for example, the header-icon component and header-right-icon component. The full source code of the header component can be found here.

    The Header-Icon Component


    Header icons
    Header-Icon Component

    The header-icon component is used to show the middle icons of the header. The full source code of header-icon component can be found here.

    The Header Right Component


    Header right icons
    Header Right Icon Component

    The header-right component is used to show the right icons of the header. The full source code can be found here.

    The Sidebar Component

    Sidebar component
    Sidebar Component

    The sidebar component will be used as the left sidebar of the application.

    The Sidebar-Row Component


    Sidebar-Row Component

    Each line in the sidebar will be specified by using the sidebar-row component. The full source code of the sidebar-row component can be found here.

    The Stories Component

    Stories Component

    These components are designed with the responsibility of presenting our Facebook Stories. Using the story card component, the stories component renders the current user’s stories. Below are the codes responsible for the image above. The full source code can be found here.

    The Story-Card Component

    Story-Card Component

    Each item in the list of stories will be determined by using the story-card component. The full source code of the story-card component can be found here.

    The Input Box Component

    Input Box Component

    The input box component is responsible for publishing new posts into our platform with or without an image. Behind the scene, the input box component leverages the storage and database services of our Firebase account for all the posts on our application. Below are the codes regulating the post-publishing processes. The full source code can be found here.

    The Posts & Post Components

    Posts & Post Components

    These components are responsible for rendering the carded user posts with or without images. The post component is repeatedly reused within the posts component.

    The code block below is responsible for producing the above interface. The full source code can be found here.

    The Feed Component

    Feed Component

    This component houses all the above-mentioned sub-components which includes the stories, input box, and posts components. These components are all designed together. The codes below contain the component structure and design.

    The Contact Component

    Contact Component

    These components are responsible for rendering a user’s contact list. The widget itself being very responsive embodies all the contacts of the signed-in user. For a better insight into what is happening under the hood, look at the code snippets below. The full source code can be found here.

    The Group Component

    Group Component

    The group component is responsible for creating and listing the available groups on our platform. Once a group is created with a private or public parameter, our app nicely renders it to the view. Behind the scene, the CometChat SDK is being used here to both create and obtain the list of groups on our platform. Below is the code snippet responsible for this act.

    The Chat Box & Message Components

    Chat Box & Message Components

    These components are responsible for the chatting functionality of our application. The chatbox component allows for a one-on-one chat and chats in groups. The message component is a reusable component responsible for rendering messages in the chat interface. Below are the code blocks responsible for their operations. The full source code can be found here.

    The Chat Layout View

    Chat Layout View

    When the end-user clicks on the “chat” icon, the end-user will see the chat layout page, the chat layout page contains three components such as the contact component, the chat layout component, and the right sidebar component. These components are responsible for the chatting functionality of our application. The chat layout component allows for a one-on-one chat and chats in groups. The message component is a reusable component responsible for rendering messages in the chat interface.

    The Chat Layout Component

    The chat layout component allows for a one-on-one chat and chats in groups. The full source code can be found from here.

    The Right Sidebar Component

    Later, the end-user selects a contact from the contact list. The selected user’s information will be shown on the right sidebar component (including the user’s avatar and the user’s email).

    Conclusion

    In conclusion, we have done an amazing job in developing a Facebook clone by leveraging Next.js, Firebase, CometChat. You’ve been introduced to the chemistry behind Facebook and how the CometChat SDK makes social networking applications buildable.

    You have seen how to integrate most of the CometChat functionalities such as texting and real-time messaging. I hope you enjoyed this tutorial and that you were able to successfully build a Facebook clone.

    It's time to get busy and build other related applications with the skills you have gotten from this tutorial.

    You can start building your chat app for free by signing up to the cometchat dashboard here. 

    About the author

    Hiep Le is a software engineer. He takes a huge interest in building software products and is a full-time software engineer. Most of his work is focused on one thing - to help people learn.

    What to Read Next