MongoDB Atlas Hackathon: S/F E-Commerce Creation

Introduction

Building an E-Commerce platform has never been easier with MongoDB’s Atlas Search. You can create custom indexes on your products, get lightning fast results on searches within your database, and use a wide range of popular feat…


This content originally appeared on DEV Community and was authored by Ryan Collicutt

Introduction

Building an E-Commerce platform has never been easier with MongoDB's Atlas Search. You can create custom indexes on your products, get lightning fast results on searches within your database, and use a wide range of popular features, like autocomplete.

@irenewuu and @ryancoll present...

Streetz Footwear:
Streetz Footwear Homepage:

Overview of My Submission

Streetz Footwear is a responsive e-commerce website built with Next.js, React.js, Mongoose, and MongoDB Atlas Search.
Visit the web-app: Streetz Footwear

Submission Category:

E-Commerce Creation

Link to Code

GitHub logo RyanColl / E-Commerce-MongoDB-Hackathon-2022

Investigate MongoDB's Atlas Search with autocomplete in this stunning E-Commerce Creation.

E-Commerce Store integrating Atlas Search using MongoDB and NextJS

MongoDB is a general purpose, document-based, distributed database built for modern application developers and for the cloud era. This example will show you how to connect to and use MongoDB as your backend for your Next.js app.

If you want to learn more about MongoDB, visit the following pages:

If you want to learn more about NextJS, vistit the following pages:

Configuration

Set up a MongoDB database

Set up a MongoDB database either locally or with MongoDB Atlas for free.

Set up environment variables

Copy the env.local.example file in this directory to .env.local (which will be ignored by Git):

cp .env.local.example .env.local

Set each variable on .env.local:

  • MONGODB_URI - Your MongoDB connection string. If you are using MongoDB Atlas you can find this by clicking the "Connect" button for your cluster.

Additional Resources / Info

Atlas Search

Indexes

Three Indexes were set up (the maximum for a free cluster) for different purposes for this app.

  1. The first index searches our database for a single element of a collection: type. The type being passed as a parameter is either 'mens', or 'womens', and the database is searched accordingly.
export const getProductsByType = async (type) => {
    const res = await Product.collection.aggregate([
        {
          $search: {
            index: 'type',
            text: {
              query: `${type}`,
              path: {
                'wildcard': '*'
              }
            }
          }
        }
      ]).limit(20).toArray()
      return res;
}
  1. The second index searches our database for a single element of a collection: collectionName. The collection being passed as a parameter is either 'sport', 'luxury', or 'collectors', and the database is searched accordingly.
export const getProductsByCollection = async (collection) => {
    const res = await Product.collection.aggregate([
        {
          $search: {
            index: 'collectionName',
            text: {
              query: `${collection}`,
              path: {
                'wildcard': '*'
              }
            }
          }
        }
      ]).limit(20).toArray()
      return res;
}
  1. The third index setup for this app is the most powerful and one I would like to show off for purposes of the hackathon. This index is setup using MongoDB's Atlas Search's AutoComplete. Autocomplete allows us to take a complete index of our database, and search through a specific field for products that match the spelling of a word. We can even apply a fuzzy filter, so when users misspell our product names, MongoDB still knows what they mean. The index is as follows:
export const atlasSearch = async (searchText) => {
    const res = await Product.collection.aggregate([
        {
            $search: {
              index: 'autocomplete', 
              autocomplete: {
                query: `${searchText}`,
                path: 'description',
                fuzzy: {
                    maxEdits: 2,
                    prefixLength: 3
                },
              }
            }
          }
    ]).limit(50).toArray()
    return res;
}

The name of this index is autocomplete, and the path we are looking through is the description of the products. We could look through names/titles if we had simpler products like groceries, but with shoe descriptions, Atlas Search uses score based returns to order the products from the query based on their score. Using a simple dropdown, I have placed the products underneath the search bar in a scrollable menu.

Autocomplete Preview

Autocomplete for "comfort":
Autocomplete for "comfort":

Autocomplete for "style":
Autocomplete for "style":

Products Page

Streetz Footwear Products Page:
Streetz Footwear Products Page:

Individual Product Page

Streetz Footwear Individual Product Page:
Streetz Footwear Individual Product Page:

Collaborators

@irenewuu
UX/UI DESIGNER & FRONT END DEV 🎨💻

@ryancoll
FULL STACK WEB DEV 🥞💻

Tech Stack 🛠💻

  • Next.js
  • React.js
  • SCSS
  • Mongoose
  • MongoDB Atlas Search

Thanks to @mongodb_staff for this opportunity!


This content originally appeared on DEV Community and was authored by Ryan Collicutt


Print Share Comment Cite Upload Translate Updates
APA

Ryan Collicutt | Sciencx (2022-01-14T07:36:44+00:00) MongoDB Atlas Hackathon: S/F E-Commerce Creation. Retrieved from https://www.scien.cx/2022/01/14/mongodb-atlas-hackathon-s-f-e-commerce-creation/

MLA
" » MongoDB Atlas Hackathon: S/F E-Commerce Creation." Ryan Collicutt | Sciencx - Friday January 14, 2022, https://www.scien.cx/2022/01/14/mongodb-atlas-hackathon-s-f-e-commerce-creation/
HARVARD
Ryan Collicutt | Sciencx Friday January 14, 2022 » MongoDB Atlas Hackathon: S/F E-Commerce Creation., viewed ,<https://www.scien.cx/2022/01/14/mongodb-atlas-hackathon-s-f-e-commerce-creation/>
VANCOUVER
Ryan Collicutt | Sciencx - » MongoDB Atlas Hackathon: S/F E-Commerce Creation. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/01/14/mongodb-atlas-hackathon-s-f-e-commerce-creation/
CHICAGO
" » MongoDB Atlas Hackathon: S/F E-Commerce Creation." Ryan Collicutt | Sciencx - Accessed . https://www.scien.cx/2022/01/14/mongodb-atlas-hackathon-s-f-e-commerce-creation/
IEEE
" » MongoDB Atlas Hackathon: S/F E-Commerce Creation." Ryan Collicutt | Sciencx [Online]. Available: https://www.scien.cx/2022/01/14/mongodb-atlas-hackathon-s-f-e-commerce-creation/. [Accessed: ]
rf:citation
» MongoDB Atlas Hackathon: S/F E-Commerce Creation | Ryan Collicutt | Sciencx | https://www.scien.cx/2022/01/14/mongodb-atlas-hackathon-s-f-e-commerce-creation/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.