JSPM

  • Created
  • Published
  • Downloads 8
  • Score
    100M100P100Q116871F
  • License BSD-2-Clause

BLoC to work with Karhoo Quotes API

Package Exports

  • @karhoo/demand-bloc-quotes

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@karhoo/demand-bloc-quotes) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Karhoo logo

demand-bloc-quotes

BLoC to work with Karhoo Quotes API


License

⚠️ This package is work in progress and can not be used as an independent package.

Installation

npm i @karhoo/demand-bloc-quotes

Usage

import { getApi } from '@karhoo/demand-api'
import { QuotesBloc } from '@karhoo/demand-bloc-quotes'

const api = getApi({
  url: 'api',
  defaultRequestOptionsGetter: () => ({
    headers: {
      identifier: 'XXXX',
      referrer: 'https://example-referer.com/'
    }
  })
})

const quotesSearchParams = {
  originPlaceId: "ChIJpwBVsLIadkgRE767cq0HnXQ",
  destinationPlaceId: "ChIJmdRFlbIadkgRhYudNQm2yOc",
  localTimeOfPickup: "2020-05-20T12:00"
}

const quotesBloc = new QuotesBloc(api.quotesService)

quotesBloc.filters = {
  numOfLuggage: 2,
  numOfPassengers: 2,
}

quotesBloc.matchingQuotes.subscribe((data) => {
  // quotes that accepts 2 passengers and 2 bags
  console.log('Matching quotes', data)
})

quotesBloc.otherAvailibleQuotes.subscribe((data) => {
  // all other quotes that did not match filters
  console.log('Other quotes', data)
})

quotesBloc.loading.subscribe(isLoading => {
  console.log('isLoading', isLoading)
})

quotesBloc.quotesExpired.subscribe(() => {
  console.log('Quotes Expired')

  quotesBloc.refreshQuotes() // requests quotes with same search params
})

quotesBloc.requestQuotes(quotesSearchParams)