1.1.0 • Published 5 years ago

firestore-adapter v1.1.0

Weekly downloads
191
License
ISC
Repository
-
Last release
5 years ago

Firestore Adapter

npm version npm version

When using the Google APIs googleapis to get data from Firestore, the data comes back in a typed format instead of what you would expect to receive. They are typed with these values.

Installation

Add the package with npm:

npm i --save firestore-adapter

Functionality

When using some Google APIs to get data from Firestore, the response data comes back typed and is not compatible with other Firebase APIs. The values returned from the database look like this, for example:

[ 
  { 
    city: { stringValue: 'WASHINGTON' },
    has_subseccd: { booleanValue: true },
    have_extracts: { nullValue: null },
    score: { doubleValue: 523.3892 },
    have_pdfs: { nullValue: null },
    subseccd: { integerValue: '3' },
  },
]

This package converts the data into a format that you'd expect. Namely:

[
  { city: 'WASHINGTON',
    has_subscribed: true 
    ...
  }
]

Usage

Import and pass the raw data to the function.

const { convert } = require('firestore-adapter')

const rawData = [{ city: { stringValue: 'WASHINGTON' } }]

const result = convert(rawData)

console.log(result) // => [{ city: 'WASHINGTON' }]
1.1.0

5 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

5 years ago

1.0.2

5 years ago

1.0.1

5 years ago

1.0.0

5 years ago