tomyRomero / sparks

AI powered full stack social media platform, using AWS(RDS, S3), mySQL, Web Sockets, Clerk auth, Zod forms, openAI API, tailwind and Next.js serverless functions

Home Page:https://sparkify.vercel.app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Sparks Portfolio Project

πŸ“‹ Table of Contents

  1. Overview 🌐
  2. Technologies Used βš™οΈ
  3. Features πŸš€
  4. Live Site πŸ“¦
  5. Contact πŸ“«
  6. Database Schema πŸ“Š
  7. Screenshots πŸ“Έ
  8. Sparks - AI Post Examples πŸ€–
  9. Acknowledgments πŸ™Œ
  10. Setup βš™οΈ

Sparks is a full stack social media web app that is designed to help users discover as well as create new ideas for all things creative with the help of AI.

  • Fully CRUD , creates, reads, updates, deletes all types of posts such as regular ones, comments and even AI generated ones.
  • AI-powered post generation with various categories and the ability to edit/delete if you are the author, AI image generation also included.
    • Categories:
      • Movies and Novels (includes AI generated images if the User desires, optional)
      • Artworks, Fashion , Photography , (These are all AI generated images)
      • Haikus , Quote, Joke , Aphorism prompts used are saved and can be viewed when the sparks logo of the post is clicked!
  • User-to-user Messaging system: powered by Pusher(Web Sockets) for realtime updates, ability to leave messages on read, ability to see when a user is online in chat.
  • Image Storage System: Cloud image storage powered by the cloud , allows all profile images, as well as profile posts and even AI generated images to be saved for future usage in a secure S3 bucket privately where only the developer can access them. Cache system included with local storage so images do not have to be fetched every single time.
  • User profile management: Onboarding, Profile Edit
  • Activity feed - showing recent activity from other users to keep you engaged! Comes with pagination
  • Infinite Scroll: incorporates an infinite scroll feature, providing users with a seamless browsing experience. With infinite scroll, users can effortlessly explore a continuous feed of content without the hassle of traditional pagination.
  • Home Page Feed Filtering - Allow users to filter out the type of posts they would like to see.
  • Like comment and share functionality: Allows the liking of posts, no user can like a post more than once, users can unlike posts as well, everything is reflected in database, posts can have children posts (comments, which can be liked as well, authors can delete their comments as well) and they are all recursively structured where every comment has a parent ID, therefore comments can have comments of their own, providing a twitter-like comment structure, all powered by a SQL dynamic structure, users can share posts directly to other users in their inboxes by clicking the share button which will send a message with the posts' link. When a parent post is deleted all children post is recursively deleted as well!
  • Search functionality, search for user profiles as well as posts by keywords
  • Notification System: updates when user recieves new message or activity
  • Profile Page: Profile page for users with posts they have made, comments they have made and posts they have liked, as well as the ability to message users from there or even edit your bio, and image if it is your profile.
  • Database System: all changes are saved within the database so you can pick back up where you left off.
  • Fully Responsive for all screens, phones, tablets and desktops.
  • Global State System: using app context the app has a global state which helps with real-time functionalities for layout components.
  • Form Validation: Uses Zod Forms to put into place form validations where as users can only submit certain inputs depending on what is allowed.
  • Liverages the latest of Next.js by using server actions and API routes, API routes include, openAIChat, openAIImage, and S3

The webapp is live and hosted by vercel https://sparkify.vercel.app

tomyfletcher99@hotmail.com LinkedIn

Screenshot of SqlSchema

πŸ“Š Database Relationships

  • User and Post Relationship: One-to-Many relationship: A user can create multiple posts, but each post is associated with one user.

  • Post and User (author) Relationship: Many-to-One relationship: Many posts can be associated with one user (the author).

  • Post and Post (parent-child) Relationship: Recursive relationship: A post can have multiple child posts, creating a hierarchical structure.

  • Chat and User (sender and receiver) Relationship: Many-to-Many relationship: A user can be both the sender and receiver in multiple chats.

User interface and different functionalities of Sparks.

Login

Screenshot of login

Profile Set Up

Screenshot of Home

Home

Screenshot of Home

Responsive

Screenshot of Home in Mobile

Screenshot of Home in Tablet

Screenshot of prompt in Phone

Create Studio

Screenshot of create studio

Screenshot of edit spark

Screenshot of edit post

Screenshot of edit comment

Search

Screenshot of search users

Screenshot of search post

Share

Screenshot of Share Post

Chats

Screenshot of User Chats

Screenshot of Messages

Activity

Screenshot of User Activity

Profile

Screenshot of User Profile

Below are some examples of generated Sparks

Screenshot of AI Spark

Screenshot of AI Spark

Screenshot of AI Spark

Screenshot of AI Spark

Screenshot of AI Spark

Screenshot of AI Spark

Screenshot of AI Spark

Screenshot of AI Spark

πŸš€ Future Improvements

Performance Optimization

  • Optimizing performance is my top priority. I aim to minimize unnecessary re-renders on the client and reduce function executions, both on the server and client sides. Contributions in this area will greatly enhance the overall user experience.

  • Currently, large API requests to OpenAI, such as those for movies and novels, may lead to server function timeouts. This limitation is due to Vercel's free-tier hosting plan, which imposes a 10-second limit on server functions. Collaborative efforts to address this issue are essential for ensuring smooth interactions with external APIs.

Project Status

All features should be fully funtional, please if you have any concerns or encounter any bugs, feel free to raise an issue or contact me.

Future Feature Idea for Contributions

This project is open source and contributors are welcomed Future updates may be focused on these new features that I have in mind:

1. Followers List and Feed

Introduce a followers list and feed, providing users with a personalized stream of content from accounts they follow.

2. Group Chats

Explore the implementation of group chats, fostering community interactions and group discussions.

3. Switch from Clerk to Next auth

Switch to a more independent form of auth, build from the ground up and allow vistors to browse posts even when not logged in

Shout out to https://loading.io/ for all the icons provided Shout out to https://unsplash.com/ for all the pictures that were not AI generated or user submitted Shout out to adrianhajdin on Github for tutorials on Next.js

Setup

.env.example is provided to follow on what keys the project needs

# Clone the repository
git clone https://github.com/tomyRomero/sparks

# Navigate to the project directory
cd sparks

# Install dependencies
npm install

# Start the development server
npm run dev



About

AI powered full stack social media platform, using AWS(RDS, S3), mySQL, Web Sockets, Clerk auth, Zod forms, openAI API, tailwind and Next.js serverless functions

https://sparkify.vercel.app

License:MIT License


Languages

Language:TypeScript 96.5%Language:CSS 2.1%Language:JavaScript 1.5%