πŸ›οΈ Dnero Store Project Reflection (Flocker Frontend & Backend)


🎯 Project Purpose

The Dnero Store project aims to create an interactive social media-like platform where users can browse, post, like, and comment on items related to the store, resembling a social experience similar to Instagram. The main purpose is to engage users with a visually appealing interface where they can explore various items and interact with content through posts.

πŸ” Innovation Category

This project falls under the Social Media category of innovation as it focuses on user interaction, engagement, and community-building around a specific niche store environment.


πŸ› οΈ Understanding and Development

πŸ“ˆ Project Insights and Progress

As we developed Dnero Store, our understanding of frontend-backend interaction improved significantly, allowing us to build a more efficient and user-centered application. By managing both the interface and server-side logic, we could fine-tune user interactions to work seamlessly with backend data storage and retrieval.

πŸ–₯️ Inputs

  • User Inputs: Users can upload images, captions, and comments as posts.
  • Likes/Comments: Users can interact with posts through likes and comments.
  • Image Uploads: Input images are formatted to match the layout.

βš™οΈ Events

  • Post Creation Event: When a user submits a new post, it triggers backend processing to store data.
  • Like Functionality Event: Each time a user clicks on the like icon, the backend registers the new like count.
  • Comment Submission Event: User-submitted comments trigger an event that updates both frontend display and backend data.

πŸ“€ Outputs

  • Post Display: User posts are displayed on the page, including images, captions, and engagement stats.
  • Like/Comment Count Updates: The frontend dynamically shows updated like and comment counts as users interact.
  • Interactive Responses: The like button changes color when activated, providing visual feedback.

🎨 User Interface Design

The UI was designed to mimic a social media feed with posts displayed in a grid layout. Key UI elements include:

  • Post Cards: Each post displays the user-uploaded image, caption, and interaction icons (like and comment).
  • Like Button Animation: A heart icon changes color to indicate user engagement.
  • Upload Form: An easy-to-use form at the top allows users to create new posts.

πŸ“‹ Data Definition

Data definitions for Dnero Store were structured to support a streamlined backend storage approach:

  • Post Data: Each post contains an title, comment, and channel_id.
  • Interaction Data: Like and comment counts are stored separately, allowing quick access and update with user interactions.

πŸ‘©β€πŸ’» Individual Coding Knowledge

πŸ’» Personal Contributions

My main contributions were on the frontend, focusing on UI design, user input handling, and ensuring seamless integration with backend functionalities. I also worked on defining key functions, such as likeFunction() and handling image uploads to match the feed’s layout.

Key Functions

  1. likeFunction(): Handles user interaction with the like button, updating both UI and backend.
  2. submitPost(): Collects and sends user inputs (image, caption) to the backend for storage.
  3. displayPosts(): Retrieves and formats posts to display in a visually consistent layout.

πŸ”„ Program Behavior

The Dnero Store program operates smoothly during execution:

  • User posts appear instantly upon submission.
  • Likes and comments update in real-time, enhancing user engagement and creating a dynamic experience.

🎨 Frontend Coding

πŸ“œ Frontend Structure and Execution

The frontend is organized by separating key components for easy access and maintenance:

  • Input Handling (Forms): Allows users to upload posts, and interact with content.
  • Event Listeners: Trigger events for likes, comments, and post submissions.
  • Dynamic Elements: Ensures visual responses to user interactions, such as color changes in the like button and live updates on the feed.

🧩 Frontend Events

Frontend events include:

  • Post Submission: User inputs trigger submitPost().
  • Like Button Click: Activates likeFunction(), updating the like count on the screen.

πŸ—„οΈ Backend Coding

βš™οΈ Backend Structure and Functionality

The backend, coded in Python, focuses on processing and storing user data. It manages user interactions (CRUD operations) and provides a stable, organized way to store data in a database. This separation ensures data security and smooth interaction between frontend and backend.

Backend Operations

  • Storage Algorithms: Manages storage and retrieval for post data, ensuring real-time updates for user interactions.
  • Data Handling: Backend functions process incoming data, such as post details and like counts, and return the required data to the frontend.

πŸ“ Data Storage

Data is stored securely in a database, allowing easy access for updates and retrieval. The backend’s database management ensures reliable data retrieval whenever a user reloads the page or submits a new post.


πŸš€ Final Thoughts and Improvements

The Dnero Store project was a great way to hone full-stack development skills. I learned how frontend and backend work together to create a dynamic user experience, with real-time updates making it engaging for users. Some areas for future improvement include:

  • Enhanced Error Handling: Adding more error feedback for invalid inputs.
  • Page Load Optimization: Reducing loading times for a smoother user experience.
  • Additional Interactivity: Adding features like tagging and notifications.

Creating Dnero Store has helped me understand and apply core development principles that will be valuable for future projects. πŸ†