fac-15 / SELECTlunch

Book lunch app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

πŸ• SELECTlunch πŸ₯—

Initial Requirements

Requirements

  • Simple web app with a node server and a database
  • Your database comes with a schema, which should be documented in your readme (along with any other architectural decisions)
  • Database hosted on Heroku, or locally
  • Build script for your database
  • Security concerns appropriately considered (you must protect against script injections!)
  • Content dynamic, but DOM manipulation kept to a minimum
  • Mobile-first design
  • Clear user journey (even if you take one of our suggested ideas, document the user journey in your readme)
  • test your server routes with supertest
  • test your pure functions both server and client side
  • set up a test database so that you can test your database queries

Installation

  • Clone the project to your local machine
  • npm install (npm install -g nodemon npm install tape --save-dev npm install tap-spec --save-dev npm install supertest --save-dev)
  • create a config.env file in the root directory and ask for us for the URL to paste inside! πŸ™

Dependencies

  • Tape for testing
  • Tap-spec for test output formatting
  • Nodemon for running a server in development
  • Supertest for testing requests

Known bugs/issues

  • we don't yet send all data to the right databases
  • possible to input empty string

Our Process

Wednesday

  • After coming to a decision about what we wanted to create - a tool to help organize community lunches at Space4 - we spent some time whiteboarding and talking in order to plan how we would start our project:

Plan of attack! πŸ’ͺ

  • 1. Create Github repo βœ…
  • 2. Create overarching file structure (see below) βœ…
  • 3. Create database table structure
  • 4. 🎨 Break time - Colour scheme 🎨
  • 5. Create HTML basic structure
  • [=x ] 6. Create basic server
    • server.js
    • router.js
      • root
      • public
      • getData
      • postData
    • handler.js
    1. On load
    • Get request for lunch data for dropdown
      • (to be broken down further)
    • Get request for booked data to be put into list
      • (to be broken down further)
    1. On submit button
    • Post request to put input into database
      • (to be broken down further)
    • (kind of) Get request for new data to be put into list
      • (to be broken down further)

File structure

Wednesday

  • Started by re-evaluating small steps that could be taken to start to implement the project
  • πŸ’₯ We tried to get formData() to work, but that proved troublesome
    • Send the input name to the 'people' database
    • create event listener on form
    • create POST request
    • edit router file
    • create gandler for posting to database
    • create post file for SQL query
    • connect it all!
    • Return input name from 'people' database and display in DOM
    • πŸ™Œ We thought that we would have to essntially do it all again, but realised that our POST request could also receive the data πŸŽ‰πŸŽŠπŸŽ‰
    • create file for get SQL query
    • connect it to the front end
    • display it in the dom
    • Receive all data from the frontend in the backend
    • create new table for lunches with potential lunches (read only)
    • create new table for bookings
    • get lunches as a dropdown
    • Figure out how to use foreign keys

Presentation!

  • Demo website
  • Whiteboarding/planning (Susan)

What we struggled with

  • formData()! (Martin)
  • testing
  • Sweet jesus trying to return the foreign key of another table THE WORST (Oliver)

What we're proud of

  • Creating databases (susan)
  • Starting with whiteboarding/discussion
  • discovering that POST requests can not only send but also return data
  • Accidental good accessibility score

About

Book lunch app


Languages

Language:JavaScript 70.7%Language:CSS 16.5%Language:HTML 9.4%Language:PLpgSQL 3.4%