1.1.0 • Published 4 years ago

edsc-echoforms v1.1.0

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
github
Last release
4 years ago

Earthdata Search Components: ECHO Forms

Build Status

A React component implementing the ECHO Forms specification. For a basic usage example and a testbed for changes, see example/src

The ECHO Forms component was developed as a component of Earthdata Search.

For the jQuery version of this plugin see this branch

Installation

npm install edsc-echoforms

Usage

After installing you can use the component in your code

import EDSCEchoform from 'edsc-echoforms'

const Component = () => {
  return (
    <EDSCEchoform
      form={formXml}
      onFormModelUpdated={onFormModelUpdated}
      onFormIsValidUpdated={onFormIsValidUpdated}
    />
  )
}

Props

PropTypeRequiredDefault ValueDescription
addBootstrapClassesBooleanfalsefalseAdds Bootstrap class names to elements. Bootstrap is not included in this package
formStringtrueECHO Forms XML string
hasShapefileBooleanfalsefalseIs a shapefile included in the search parameters. This is used to display help text about shapefile processing to users on shapefile form fields
prepopulateValuesObjectfalseValues used to prepopulate fields through the form's pre:prepopulate extensions
onFormModelUpdatedFunctiontrueCallback function that returns { model, rawModel }. model is the data model pruned of irrelevant fields. rawModel is the full data model
onFormIsValidUpdatedFunctiontrueCallback function that returns a Boolean value of the form's isValid property

Building

To compile:

npm install

To start the example project for local testing:

npm start

To run the tests:

npm test

Contributing

See CONTRIBUTING.md

License

Copyright © 2007-2014 United States Government as represented by the Administrator of the National Aeronautics and Space Administration. All Rights Reserved.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

1.1.0

4 years ago