A React component implementation of the ECHO Forms specification.
npm install @edsc/echoforms
!Build Status

Try out the online demo
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.
``console`
npm install @edsc/echoforms
The styles.css file must be loaded separately from the node_modules/@edsc-echoforms/dist directory.
`javascript`
import '@edsc/echoforms/dist/styles.css'
The EDSCEchoforms React component is imported from the @edsc/echoforms module. When using the component, the form, onFormModelUpdated, and onFormIsValidUpdated props are required. See the Props section below for more information.
`javascript
import EDSCEchoform from '@edsc/echoforms'
const Component = () => {
return (
onFormModelUpdated={onFormModelUpdated}
onFormIsValidUpdated={onFormIsValidUpdated}
/>
)
}
`
| Prop | Type | Required | Default Value | Description
| ---- |:----:|:--------:|:-------------:| -----------
addBootstrapClasses | Boolean | false | false | Adds Bootstrap class names to elements. Bootstrap is not included in this package.
form | String | true | | ECHO Forms XML string.
hasShapefile | Boolean | false | false | Is a shapefile included in the search parameters. This is used to display help text about shapefile processing to users on shapefile form fields.
prepopulateValues | Object | false | | Values used to prepopulate fields through the form's pre:prepopulate extensions.{ model, rawModel }
onFormModelUpdated | Function | true | | Callback function that returns . model is the data model pruned of irrelevant fields. rawModel is the full data model.
onFormIsValidUpdated | Function | true | | Callback function that returns a Boolean value of the form's isValid property.
To compile:
`console`
npm install
To start the example project for local testing:
`console`
npm start
To run the tests:
`console``
npm test
See CONTRIBUTING.md
> 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.