Thanks to visit codestin.com
Credit goes to github.com

Skip to content

UMeet is a web application with functionality for booking meeting / event spaces across campus specifically for RSOs and student organizations.

Notifications You must be signed in to change notification settings

kjeganathan/UMeet

 
 

Repository files navigation

UMeet

UMeet is a web application used to book meeting/event spaces around campus, specifically for student organizations and RSO's to book classrooms more easily. This web app will include functionality for users to create an account, view available meeting rooms, learn details about each room, and book a room for a specific date and time slot.

There is an existing web application for booking group study rooms in the W. E. B. Du Bois Library (https://libcal.library.umass.edu/reserve/groupstudyrooms). However, these rooms provided by the library have a maximum capacity of 6-8 students which are too small for RSO and student organization meetings. If a student organization in CICS or a campus RSO would like to book a classroom for meetings in the Integrated Learning Center, Isenberg School of Management Building, or any other classroom building on campus, they currently have to go through an extensive process of reaching out to CCM administration or submitting an application to Campus Pulse.

Our goal is to create a standardized and efficient web platform which will make it easier for student organizations and RSOs to book meeting spaces in order to host their events in a standardized and articulate manner.

Video Demo: https://youtu.be/gLH-QmTeI2A

Team Overview

  • @kjeganathan
  • @dishsrivastava
  • @lauranepo

User Interface

UI View Purpose
Login / Create an Account This page enables a user to login to the web platform or create an account.
Book a Room This page provides a user with an overview of the available classrooms and their corresponding time slots. Additionally, a user can filter based on a few popular features such as capacity, ratings, and technology access. A user can select "Details" to be directed to the Room Profile Page or select "Pick a Date" to be prompted with a modal popup to select a date and make a booking.
Room Profile This page provides a holistic overview of each room, so that a student can verify the rooms capabilities before creating a booking. The room details available to view include: room type, rating, attendee capacity, technology available, building acronym, specific room tags, and finally, a room address and Google Maps API integration.
User Profile This page allows a user to view all the previous and upcoming bookings associated with their account. In addition, they can edit account details (such as name and email) and delete their account.

Here are a few screenshots of our UI views:

UI View Visual
Login / Create an Account Screen Shot 2021-12-11 at 3 59 24 PM
Book a Room Overview Screen Shot 2021-12-11 at 4 00 53 PM
Book a Room => Select 'Pick a Date' Screen Shot 2021-12-11 at 4 29 28 PM
Room Profile Screen Shot 2021-12-11 at 4 02 11 PM
Room Profile => Scroll Page Down Screen Shot 2021-12-11 at 4 02 22 PM
User Profile Screen Shot 2021-12-11 at 4 33 23 PM
User Profile => Scroll Page Down Screen Shot 2021-12-11 at 4 34 12 PM

BackEnd APIs

Here is a consolidated list of our RESTful APIs:

Route Description
/deleteUser deletes a user from user table in the database
/editInfo edits a user's information like email and name
/login performs authentication, if not registered redirects to login page, else takes user to profile page
/logout logs out signed in user, redirects to login page and empties local storage
/createAccount adds a new user to user table in the database
/createBooking adds a new booking to booking table in the database
/userInfo gets a user's information based on email from the users table in the database
/roomInformation gets a room's information based on roomid from the rooms table in the database
/allRooms gets all the rooms stored in the rooms table in the database
/dateInformation gets date of room booked based on roomid from the rooms table in the database
/updateDate updates the date array of the rooms table in the database
/bookingInformation gets a booking's information based on email of the user making the booking from the bookings database table
/getAbove3Stars filters all rooms in the rooms database table based on having above 3 stars
/getLargeCapcity filters all rooms in the rooms database table based on having above or equal to 100 capacity
/getMediumCapcity filters all rooms in the rooms database table based on having less than 100 capacity
/getTechRooms filters all rooms in the rooms database table based on having technology enabled
* indicates error

Heroku Postgres Database

We used a PostgreSQL database for this project.

Users Table

Column Data Type Description
email text The email of the user
first name text The first name of the user
last name text The last name of the user
password text The password of the user
userid int4 The user ID of the user

Rooms Table

Column Data Type Description
address varchar The address of the room
building varchar The building name of the room
building_acronym varchar The building acronym of the room
capacity int4 The capacity of the room
is_booked varchar The booking status of the room
rating int4 The rating of the room
room varchar The room number
roomid int4 The room ID of the room
tags varchar The tags of the room
tech varchar The tech of the room
type varchar The type of the room
time varchar The time the room is available
date text[] The dates the room is booked

Bookings Table

Column Data Type Description
bookingid int4 The booking id of the booking
building varchar The building name of the booking
date varchar The date the booking is made for
email varchar The booking user's email
time varchar The time the booking is made for

URL Routes/Mappings

URL Routes Description
/ routes to log in / create an account landing page and requires email/password authentication before advancing to any other pages
/profilePage routes to User Profile Page and populates user information and bookings
/bookingPage routes to Book a Room Page and populates available rooms
/roomProfilePage routes to Room Profile Page and populates room details and information

About

UMeet is a web application with functionality for booking meeting / event spaces across campus specifically for RSOs and student organizations.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 60.7%
  • HTML 21.9%
  • CSS 16.6%
  • Other 0.8%