Skip to content

jjdproductions/SendFuuds

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

81 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SendFuuds

Table of Contents

  1. Overview
  2. Product Specification
  3. Wireframes
  4. Schema
  5. Walkthrough
  6. App Pitch Presentation
  7. Authors

Overview

App Description

Have you ever forgotten about a food you bought, and just ended up throwing it away because it expired? Chances are, you have.

JJDProductions aims to solve this huge problem in the world today with SendFuuds.

SendFuuds is an application where users can get notified that their food is about to expire and are given an option to share it with friends.

Uses Parse for storing data.

App Evaluation

  • Category: Social Media/Personal use
  • Mobile: This app would be primarily developed for iOS users and will work similar to apps like Instagram.
  • Story: A user takes a picture of their food, enters the expiration date and a general description, and posts it to their personal list. Days pass and the user gets notified that their food is about to expire, so they need to take action. The user then shares the food publicly to their friends. A friend comments on the user's post, letting the user know that they are interested in their food. The user and the friend discuss and finalize a time and place to meet. Once the friend has gotten the user's food, the user deletes the post.
  • Market: Any individual could choose to use this app. We all need to be aware of the food that we waste each day!
  • Habit: This app could be used more often by people who cook to ensure that the groceries they buy do not expire.
  • Scope: We will start by having users around UC Irvine use the application, but we expect that this application can be used by people around the world.

Product-Specification

User Stories

Required Must-have Stories

  • User can log in
  • User can sign up
  • User stays logged in across restarts.
  • User can log out.
  • User must enter correct login/sign up credentials
  • User can enter the expiration date and description of their food and post it to their personal list of foods.
  • User can remove their own posts from their personal list
  • User can post an image from either their photo gallery or camera.
  • User can share their post publicly to the home feed.
  • User can search and add friends.
  • User can only see their own posts and their friends' posts on the home feed.
  • User can comment on other user's posts.
  • User gets notified when their food is about to expire.

Optional Nice-to-have Stories

  • When a User comments on a post, the creator of the post gets a push notification when the app is in the background.
  • When a User comments on a post, the creator of the post gets a push notification even if the app is terminated.
  • Users have a fully functional profile page, as opposed to just a personal list of food.
  • To add a friend, a User should send a friend request to another User, and the other User has to accept that request in order for the two Users to be friends.
  • User can remove friends.
  • Once a food is expired, the food should be deleted from the User's personal list and home feed.
  • User can privately message other users
  • User can see mutual friends.
  • User can search for specific food in their feed.
  • User can link other social media platforms (Instagram, Facebook, Twitter, etc.)

App Screen Archetypes

  • Login Screen
    • User can login
    • User can create a new account
  • Stream (Home Screen)
    • User can view a feed of their own food and their friends' food.
  • Creation (Post Screen)
    • User can post a new food to their feed, add the expiration date, and a brief description.
  • Search Screen
    • User can search for other users
    • User can add another user
  • Notification Screen
    • User can see recent notifications that they have received.
  • Profile Screen
    • User can see their own posts.
    • Future feature - User has profile image, description, and more information.
  • Comment Screen
    • User can comment on their friend's public post

App Navigation Flows

Tab Navigation

  • Home Feed
  • Search User
  • Post a Food
  • Notification

Flow Navigation

  • Login Screen
    • Home after logging in or signing up.
  • Stream (Home Screen)
    • Login Screen by clicking the Logout button.
    • Future version might involve navigation to a profile page for a user.
    • Any other screen by clicking one of them on the tab bar.
    • Login screen by clicking logout.
    • Comment screen by clicking on a specific post.
  • Creation (Post Screen)
    • Home after a user posts their food.
    • Any other screen by clicking one of them on the tab bar.
    • Login screen by clicking logout.
  • Search Screen.
    • Any other screen by clicking one of them on the tab bar.
    • Login screen by clicking logout.
  • Notification Screen
    • Any other screen by clicking one of them on the tab bar.
    • Login screen by clicking logout.
  • Comment Screen
    • Home by clicking the back button.
    • Login screen by clicking logout.

Wireframes

Digital Mockup

Wireframe Walkthrough

Interactive Prototype

Wireframe Walkthrough

Source

https://www.figma.com/proto/BNQyBUMhIxUdroJeTUbXtPLb/SendFuuds?node-id=0%3A1&scaling=scale-down

Schema

Models

User

Property Type Description
username String user's unique username
password String user's password
createdAt Date Date that the object was created
updatedAt Date Date that the object has been updated

userInfo

Property Type Description
username String user's unique username
friends array of String array of user's friends
createdAt Date Date that the object was created
updatedAt Date Date that the object has been updated

Foods

Property Type Description
owner String user's unique username
image image file (any is taken) user's image of their food
description String description of user's food
date Date the expiration date of the food
notifyDay Date the date that user will get notified
createdAt Date Date that the object was created
updatedAt Date Date that the object has been updated
comments array of Comments objects all comments on the food post
numComments Integer Number of comments in the comments array

Comments

Property Type Description
author String user's unique username
food Food object pointer to the food object that this comment refers to
text String the comment's text
createdAt Date Date that the object was created
updatedAt Date Date that the object has been updated

Notifications

Property Type Description
username String user's unique username
text String the notification's text
image image file (any is taken) user's image of their food
food Food object pointer to the food object that this notification refers to
day Date Date that user will be notified
createdAt Date Date that the object was created
updatedAt Date Date that the object has been updated

Walkthrough

Signing up/logging in

Walkthrough of the following user stories:

  • User can log in
  • User can sign up
  • User stays logged in across restarts.
  • User can log out.

Checking credentials

Walkthrough of the following user stories:

  • User must enter correct login/sign up credentials

Posting and removing posts

Walkthrough of the following user stories:

  • User can enter the expiration date and description of their food and post it to their personal list of foods.
  • User can remove their own posts from their personal list
  • User can post an image from either their photo gallery or camera.

Adding friends and sharing posts with friends

Walkthrough of the following user stories:

  • User can share their post publicly to the home feed.
  • User can search and add friends.
  • User can only see their own posts and their friends' posts on the home feed.

Commenting on posts

Walkthrough of the following user stories:

  • User can comment on other user's posts.

Notification of food expiration

Walkthrough of the following user stories:

  • User gets notified when their food is about to expire.

Comment Notification

Walkthrough of the following user stories:

  • When a User comments on a post, the creator of the post gets a push notification when the app is in the background.

Walkthrough of our first prototype

Walkthrough of the following user stories:

  • User can log in
  • User can sign up
  • User stays logged in across restarts.
  • User can log out.
  • User must enter correct login/sign up credentials
  • User can enter the expiration date of their groceries and post it to a home feed.
  • User has the option to post an image from their photo gallery or camera.
  • User can search and add friends.
  • User can only see his own posts and his friends' posts on the home feed.
  • User gets notified when their food is about to expire.

Part 1 Walkthrough

App-Pitch-Presentation

Link to slideshow: https://docs.google.com/presentation/d/1Pi85jbgGdUlxdtAM7uu35Dkz8yFu3WYfm1H8trJfX3g/edit?usp=sharing

Authors

SendFuuds implemented by JJDProductions:

Process of building this application

All authors collaborated together on 1 laptop at a time. Work was always done together and all features were implemented as a team.

About

SendFuuds is an application where users can get notified that their food is about to expire and are given an option to share it with friends.

Resources

Stars

3 stars

Watchers

3 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors