Fair Districts PA fusiontables api language binding
Provides a JS ES2015|ES6 module, src/js/fusionApi.js, which defines JS language bindings for the Google cloud FDPA Resolutions project, using the Google fusiontable API.
The harness directory contains a demo-test harness in the form of a web page that exercises fusionApi.js. Not enough functionality exists to be worth a formal test procedure.
ES2015 or ES6 Usage
To access the ES2015/ES6 version from an import statement,
download ./src/js/fusionApi.js
, and put it in your path.
Then add the following to the module where you want to use it:
;
The resolutions API can now be accessed within that module
as properties of the local variable fdpaResolutions
.
ES5 Usage
To access an ES5 version of fusionApi.js from a script tag,
download ./distribution/fusionApi_es5.js
and reference it
in the src attribute in the page HTML:
<script src="./PATH/fusionApi_es5.js"></script>
The resolutions API can now be accessed via the global variable
fdpaResolutions
.
fdpaResolutions methods
which returns
{
verified: boolean, true means the request was submitted
errorFields: array, lists fields that failed if verified is false
googleApiKey: options.googleApiKey or an error message
fusionTable: options.fusionTable or a sensible default
statusSought: an array of status strings derived from options.status,
or an error message
}
and where options
is of the form:
googleApiKey: required string fusiontable: optional string defaults to the expected table status: optional string defaults to '-' successHandler: optional
and where:
- googleApiKey is an API key created in the Google developers console for the FDPA Resolutions project.
- fusiontable is the ID of a Google fusiontable for the FDPA Resolutions project.
- status may be '-', 'inWork', 'materialsSent', 'passed', 'refusedOrOther', or a combination of these separated by a comma and no space.
- successHandler function has the prototype
function(count)
, wherecount
is an integer returned from the query.
Build from Source
To build the ES5 distribution:
- Clone the source
- npm install
- npm run build
npx webpack --config --output-library webpack.distribution.config.js
The result will be the creation of ./distribution/fusionApi.js.
To build the test harness:
- Clone the source
- npm install
- Edit harness/app.js and change the API key
- npm run test
- Follow the instructions at the end of the npm run test output