/vacation-rentals-reservations

Reservation/Calendar component for an online vacation rental marketplace

Primary LanguageJavaScript

Ailpup

Frontend Developer: Chris Diep

Reservations component for a vacation rental marketplace site

Related Projects

Table of Contents

  1. Usage
  2. Requirements
  3. Development
  4. CRUD Operations

Usage

Requirements

An nvmrc file is included if using nvm.

  • Node 6.13.0

Development

Installing Dependencies

From within the root directory:

npm install
npm run seed
npm run server
npm run build

Backend Developer: Meeko Rusdi

CRUD Operations

Reservations

Add new listing

Create / POST

  • Allows you to create a listing for a property
  1. Endpoint - /api/listings
  2. Request body
    {
      "id": "Number",
      "name": "String",
      "maxGuests": "Number",
      "fees": {
        "pernight": "Number",
        "cleaning": "Number",
        "service": "Number"
      }
    }
  1. Response object - HTTP Status Code 201

Add new reservation

Create / POST

  • Allows you to create a reservation for specified dates, number of adults, children, and infants
  1. Endpoint - /api/listings/:id
  2. Path params - id - listing ID
  3. Request body
    {
      "id": "Number",
      "reservation_id": "Number",
      "name": "String",
      "checkin": "Date",
      "checkout": "Date",
      "adults": "Number",
      "children": "Number",
      "infants": "Number"
    }
  1. Response object - HTTP Status Code 201

Retrieve Listings

Read / GET

  1. Endpoint - /api/listings
  2. Response object - Array of JSON objects representing available listings
    [{
      "id": "Number",
      "name": "String",
      "maxGuests": "Number",
      "fees": {
        "pernight": "Number",
        "cleaning": "Number",
        "service": "Number"
      }
    }...]

Retrieve reservation data for one listing

Read / GET

  • Allows you to get reservation data from a listing
  1. Endpoint - /api/listings/:id/:reservationId
  2. Path params - id - listing ID - reservationId - reservation ID
  3. Response object
    {
      "id": "Number",
      "name": "String",
      "fees": {
       "pernight": "Number",
       "cleaning": "Number",
       "service": "Number"
      }
    }

Update listing info

Update / PUT

  • Allows you to update listing info
  1. Endpoint - /api/listings/:id
  2. Path params - id - listing ID
  3. Request body - Expects JSON with any of the following keys (include only keys to be updated)
    {
      "reservationId": "Number",
      "name": "String",
      "checkin": "Date",
      "checkout": "Date",
      "adults": "Number",
      "children": "Number",
      "infants": "Number"
    }
  1. Response object - HTTP Status Code 200

Delete Listing

Delete / DELETE

  • Allows you to delete a Listing
  1. Endpoint - /api/listings/:id
  2. Path params - id - listing ID
  3. Response object - HTTP Status Code 204

Delete A Reservation

Delete / DELETE

  • Allows you to delete a reservation from a listing at a specific reservation ID
  1. Endpoint - /api/reservation/:id
  2. Path params - id - reservation ID
  3. Response object - HTTP Status Code 204