 

TextField creates a simple text input field component connected to data. It can be further extended by specifying a user defined query on the input data.
Usage
Basic Usage
<TextField componentId="NameTextSensor" dataField="name" />Usage With All Props
<TextField
	componentId="NameTextSensor"
	dataField="name"
	defaultSelected="volvo"
	placeholder="Type a car name"
	debounce={300}
	showFilter={true}
	filterLabel="Car"
/>Props
- componentId Stringunique identifier of the component, can be referenced in other components'reactprop.
- dataField Stringdata field to be connected to the component's UI view.
- defaultSelected String[optional] preset some value in the text field.
- placeholder String[optional] placeholder to be displayed in the text field when it has no value.
- debounce Number[optional] delays executing the query by the specified time in ms while the user is typing. Defaults to0, i.e. no debounce. Useful if you want to save on the number of requests sent.
- showFilter Boolean[optional] show as filter when a value is selected in a global selected filters view. Defaults totrue.
- filterLabel String[optional] An optional label to display for the component in the global selected filters view. This is only applicable ifshowFilteris enabled. Default value used here iscomponentId.
- innerProps Object[optional] specifies additional props for the internal components. Accepts an object with the specified keys. Read more about the usage here
| Key | Explanation | 
|---|---|
| item | The wrapping Item component from native-base | 
| icon | Icon component from native-base | 
| input | Input component from native-base | 
| button | Button component from native-base | 
Demo
Styles
TextField component supports style prop. Read more about it here.
It also supports an innerStyle prop with the following keys
- button
- icon
- input
Read more about it here
Extending
TextField component can be extended to
- customize the look and feel with style,
- update the underlying DB query with customQuery,
- connect with external interfaces using beforeValueChange,onValueChangeandonQueryChange,
<TextField
  ...
  style={{ paddingBottom: 10 }}
  customQuery={
    function(value, props) {
      return {
        match: {
          data_field: "this is a test"
        }
      }
    }
  }
  beforeValueChange={
    function(value) {
      // called before the value is set
      // returns a promise
      return new Promise((resolve, reject) => {
        // update state or component props
        resolve()
        // or reject()
      })
    }
  }
  onValueChange={
    function(value) {
      console.log("current value: ", value)
      // set the state
      // use the value with other js code
    }
  }
  onQueryChange={
    function(prevQuery, nextQuery) {
      // use the query with other js code
      console.log('prevQuery', prevQuery);
      console.log('nextQuery', nextQuery);
    }
  }
/>- style ObjectCSS styles to be applied to the TextField component.
- customQuery Functiontakes value and props as parameters and returns the data query to be applied to the component, as defined in Elasticsearch Query DSL.Note:customQuery is called on value changes in the TextField component as long as the component is a part ofreactdependency of at least one other component.
- beforeValueChange Functionis a callback function which accepts component's future value as a parameter and returns a promise. It is called everytime before a component's value changes. The promise, if and when resolved, triggers the execution of the component's query and if rejected, kills the query execution. This method can act as a gatekeeper for query execution, since it only executes the query after the provided promise has been resolved.
- onValueChange Functionis a callback function which accepts component's current value as a parameter. It is called everytime the component's value changes. This prop is handy in cases where you want to generate a side-effect on value selection. For example: You want to show a pop-up modal with the valid discount coupon code when a user searches for something in the TextField.
- onQueryChange Functionis a callback function which accepts component's prevQuery and nextQuery as parameters. It is called everytime the component's query changes. This prop is handy in cases where you want to generate a side-effect whenever the component's query would change.