Janhavi23 / auction-online

React-Redux application using Firebase to allow users to create and participate in auction rooms

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Auction Online - Planning Phase

Created by Travis Scott, 5/2/19

Description (current)

  • The purpose of this app is to simulate an online auction, allowing many users to simultaneously view the application and make 'bids' on items. The minimum viable product includes a time-dependent auction process, which updates in real-time to show the highest bid and bidder, and a live-chat functionality. This project will use Redux to keep domain data and application state, which will be fed to / pulled from Firebase.
  • The stretch goals include refactoring the application for mobile use in React Native, and the inclusion of a Payment Gateway API such as Stripe to make the auctions functional.

Planning

Component Tree

Landing View

Sketching

Landing Page

Landing View

Creator View 1

Creator View 1

Creator View 2

Creator View 2

Creator View 3

Creator View 3

Participant View 1

Participant View 1

Participant View 2

Participant View 2

Users
  • For the most part, I'm assuming my audience is widely tech-illiterate, and as such want to make the app simple. The purpose of the app is to be as intuitive (the least click-heavy) as possible. No more than 3 or 4 buttons per view, minimal routes with maximum functionality. Like a duck, I want the app to be pretty and smooth on the surface, and busy under the water.

  • Unknown / Pageload

    • On the initial visit, users will be greeted with the option to register an event, or enter a key to join an existing event, leading to the Creator or Participant views.
  • Auction Creators

    • Auction Creators should be able to initialize an event, creating a key of some sort stored in persistent state that will be the index of all auction items for that event.
    • Auction Creators should be able to input as many items as they wish, which will be stored in persistent state underneath their specific key.
    • Auction Creators can determine the time and length of the auctions, as well as any minimum bids required, and control access to the auction with the distribution of their key.
  • Auction Participants

    • Auction Participants will be able to use that key to enter the 'auction room' at the allotted time, at which point they will be prompted to enter a username, which will be required for them to bid.
    • Participants will be able to join a live chat.
    • The order of the items for bid will be randomized once, before bidding starts.
    • The items in the auction will be put up for bid one at a time, for a duration determined by the Creators.
    • During that item's bidding period, the current highest bid will be displayed, along with the bidder's username, with a default '$0, Current bidder: No bids yet'.
    • Users can input a bid. The program will check if the bid is higher than the current highest bid, and if so, will update the screen with the new bid and bidder's username.
    • After the bidding period ends, the next item for bid will be displayed, perhaps after a buffer period to allow participants to prepare, and all previous items will be displayed in their finalized form.

8-9AM

  • Read the 'Thinking In React' article on planning, mocking, creating static pages.
  • Begin planning the user experience based on their role in the auction process.

9-10AM

  • Plan logic for participant use.
  • Plan shape of state / data.
  • Sketch out initial page views

10-11AM

  • Continue sketching page views.
  • Eat snack

11AM-Noon

  • Draw initial component tree.
  • Begin adding React code

12-1PM

  • Continue sketching page views

1-4PM

  • Build initial static page

Development Notes

  • I already have a lot of components planned, but I'm not sure about my route planning. I have three set paths, and a 404 path, but I'm wondering if I should be adding new paths for the NewItems and Settings components, and if I require even MORE components for each of those. I probably will need more, but I'll see that when I get to that point.

State Management

  • I'm planning on using Redux and sending the store to Firebase.
  • There will be local application state checking the users' credentials, keeping them on the correct route.
  • Once in their respective route, there will be state information passed down from Firebase:
    • Auction creators will modify the ItemList information which will need to communicate with NewItem, so their state should reside in AddItems. They will also determine the time and specifications of the auction, which will reside in Settings, and be changed by its components. The Link component will receive a random ID from Firebase on creation which will be the key to enter the room.
    • Auction participants will receive the Chat state slice in the Chat component, which will pass down the list of individual messages to MessageList, and the required functionality to compose a new message to Compose. On submission, Compose will send a new message back to Chat, which will push it into the Firebase chat log. The Items component will recieve a slice of the ItemList state one-by-one, keeping it in Current for the duration specified in Settings, and moving it to Previous, along with information added to it by bidders.
  • This state plan is subject to change, depending on intricacies with Firebase and Redux. Some state may be moved locally, or perhaps all state will be stored offsite.

Setup/Installation Requirements

  • Open your preferred browser
  • To view the code, copy / paste https://github.com/travisty12/auction-online
  • Make sure you're in your Desktop directory (cd ~/Desktop)
  • Run the following command to clone the template
  • git clone https://travisty12/auction-online
  • Open your terminal and navigate to the auction-online directory (cd auction-online)
  • Once in your terminal and proper directory run the command
  • npm install (provided you are free of errors continue and run the next command)
  • npm run start (should automatically open in your default browser)
  • This will result in running on a local host
  • To run unit testing on the reducers, run the command
  • npm run test

Known Bugs

No known bugs as of 5/3/19

List of Technologies Used

License

This software is licensed under the ISC license

Copyright (c) 2019 Travis Scott

About

React-Redux application using Firebase to allow users to create and participate in auction rooms


Languages

Language:JavaScript 99.2%Language:EJS 0.8%