DEV Community

Cover image for ReactJS Pinterest Clone
an-object-is-a
an-object-is-a

Posted on

ReactJS Pinterest Clone

Browse our Teachable courses.


ReactJS Pinterest Clone

We'll build our mock-up in steps.

  1. Create a mock-up of a single Pinterest Pin.
  2. Create a mock-up of the Pinterest "Add a Pin Screen".
  3. Merge the above; Use the "Add Pin Screen" to generate a single Pinterest Pin.
  4. Transfer the logic of our merge in step 3 into our Pinterest Layout.

"Pinterest Pin" Mock-Up

Each Pin is made up of 3 sections.

  1. Pin title - the user won't see this; you can use this on the back-end as a way to store the Pin in a database
  2. Pin modal - this is the overlay for each card; this won't be functional for this tutorial, just cosmetic

pin modal

  1. Pin image - the actual image the user uploads

pin image

Each pin has a "header" and "footer".

head-foot pin

<div>
    <div className="card">
        <div className="pin_title"></div>

        <div className="pin_modal"></div>

        <div className="pin_image"></div>
    </div>
</div>
Enter fullscreen mode Exit fullscreen mode

"Add a Pin" Modal Mock-Up

The Modal is made up of 9 sections.

  1. Modal overlay - the transparent black background
  2. Add Pin container - the main interface of the screen
  3. Left side - the left half of our interface
  4. Right side - the right half of our interface
  5. Left side Header - a simple button leading to options
  6. Left side Body - the user's image shows up here
  7. Left side Footer - an option to upload an image from the web
  8. Right side Header - select the Pin size (small, med, large)
  9. Right side Body - information about the Pin is entered here

modal

<div className="add_pin_modal">
    <div className="add_pin_container">
        <div className="side" id="left_side">
            <div className="section1">
            </div>

            <div className="section2">
            </div>

            <div className="section3">
            </div>
        </div>

        <div className="side" id="right_side">
            <div className="section1">
            </div>

            <div className="section2">
            </div>
        </div>
    </div>
</div>
Enter fullscreen mode Exit fullscreen mode

Merge our Pin and "Add Pin Screen".

When we click save, we create a Pin.

function save_pin(pinDetails, add_pin) {
    const users_data = {
        ...pinDetails,
        author: 'Jack',
        board: 'default',
        title: document.querySelector('#pin_title').value,
        description: document.querySelector('#pin_description').value,
        destination: document.querySelector('#pin_destination').value,
        pin_size: document.querySelector('#pin_size').value,
    }

    add_pin(users_data);
}
Enter fullscreen mode Exit fullscreen mode

merge


The Final Pinterest Board

We'll take our Pinterest Layout from a different tutorial.

In a previous tutorial, we created the Pinterest Layout using CSS Grids.

We'll import that code and use that layout as our pin_container for this project.

You can find that tutorial here.

This merge is very simple. There is no new HTML here.

The major change comes in our CSS and JSX.

In our CSS, we create three new class definitions; the small, medium, and large Pin options.

.card_small {
    grid-row-end: span 26;
}

.card_medium {
    grid-row-end: span 33;
}

.card_large {
    grid-row-end: span 45;
}
Enter fullscreen mode Exit fullscreen mode

Then based on which pin size the user chooses, we add that class to our Pin component.

<div className={`card card_${props.pin_size}`}>
Enter fullscreen mode Exit fullscreen mode

final_board


There is much more nuance to this project.

You can get the source files here and you can follow the video tutorial down below.


If you want a more in-depth guide, check out my full video tutorial on YouTube, An Object Is A.

ReactJS Pinterest Clone

Top comments (0)