SearchBox
creates a search box UI component that is connected to one or more database fields. A SearchBox
queries the appbase.io backend with query type suggestion
to render different kind of suggestions, read more about the suggestion
query type here.
Example uses:
- Searching for a rental listing by its
name
ordescription
field. - Creating an e-commerce search box for finding products by their listing properties.
- Creating a product catalog search based on different categories.
Usage
Basic Usage
<template>
<search-box componentId="SearchBoxSensor" :dataField="['group_venue', 'group_city']" />
</template>
Usage With All Props
<search-box
componentId="SearchSensor"
title="Search"
defaultValue="Songwriting"
placeholder="Search for cities or venues"
highlightField="group_city"
queryFormat="or"
filterLabel="City"
:autosuggest="true"
:highlight="true"
:showFilter="true"
:dataField="[
{
'field': 'group_venue',
'weight': 1
},
{
'field': 'group_city',
'weight': 3
},
]"
:defaultSuggestions="[
{ label: 'Songwriting', value: 'Songwriting' },
{ label: 'Musicians', value: 'Musicians' },
]"
:fuzziness="0"
:size="10"
:debounce="100"
:react="{
and: ['CategoryFilter', 'SearchFilter']
}"
:URLParams="false"
className="result-list-container"
:size="3"
:enablePopularSuggestions="true"
:popularSuggestionsConfig="{ size: 3, minChars: 2, index: 'good-books-ds' }"
:enableRecentSuggestions="true"
:recentSuggestionsConfig="{
size: 3,
index: 'good-books-ds',
minChars: 4,
}"
@on-data="
(param) => {
// do something
}
"
:showClear="true"
@valueSelected="
(value, cause) => {
// do something
}
"
categoryField="authors.keyword"
:defaultQuery="
(value) => {
return {
query: {
// ...
},
timeout: '1s',
};
}
"
:customQuery="
(value) => {
return {
query: {
// ...
},
timeout: '1s',
};
}
"
:applyStopwords="true"
:customStopwords="['be', 'the']"
:enablePredictiveSuggestions="true"
/>
Props
-
componentId
String
unique identifier of the component, can be referenced in other components'react
prop. -
dataField
string | Array<string | DataField*>
[optional*] index field(s) to be connected to the component’s UI view. SearchBox accepts anArray
in addition tostring
, which is useful for searching across multiple fields with or without field weights.
Field weights allow weighted search for the index fields. A higher number implies a higher relevance weight for the corresponding field in the search results.
You can define thedataField
property as an array of objects of theDataField
type to set the field weights.
TheDataField
type has the following shape:type DataField = { field: string; weight: number; };
database field(s) to be queried against. Accepts an Array in addition to String, useful for applying search across multiple fields. Check examples at here.
Note:
- This prop is optional only when
enableAppbase
prop is set totrue
inReactiveBase
component. - The
dataField
property asDataField
object is only available for ReactiveSearch version >=v3.21.0
and Appbase versionv7.47.0
.
- This prop is optional only when
-
size
Number
[optional] number of suggestions to show. Defaults to10
. -
excludeFields
String Array
[optional] fields to be excluded in the suggestion's query whenautoSuggest
is true. -
includeFields
String Array
[optional] fields to be included in the suggestion's query whenautoSuggest
is true. -
enablePopularSuggestions
bool
[optional] Defaults tofalse
. When enabled, it can be useful to curate search suggestions based on actual search queries that your users are making. Read more about it over here.Note:
Popular Suggestions only work when
enableAppbase
prop istrue
. -
popularSuggestionsConfig
Object
Specify additional options for fetching popular suggestions. It can accept the following keys:- size:
number
Maximum number of popular suggestions to return. Defaults to 5. - minCount:
number
Return only popular suggestions that have been searched at leastminCount
times. There is no default minimum count-based restriction. - minChars:
number
Return only popular suggestions that have minimum characters, as set in this property. There is no default minimum character-based restriction. - showGlobal:
Boolean
Defaults totrue
. When set tofalse
, returns popular suggestions only based on the current user's past searches. - index:
string
Index(es) from which to return the popular suggestions from. Defaults to the entire cluster.
<search-box :enablePopularSuggestions="true" :popularSuggestionsConfig="{ size: 5, minCount: 5, minChars: 3, showGlobal: false, index: "good-books-ds", // further restrict the index to search on }" />
- size:
-
enablePredictiveSuggestions
bool
[optional] Defaults tofalse
. When set totrue
, it predicts the next relevant words from a field's value based on the search query typed by the user. When set tofalse
(default), the entire field's value would be displayed. This may not be desirable for long-form fields (where average words per field value is greater than 4 and may not fit in a single line). -
enableRecentSuggestions
Boolean
Defaults tofalse
. When set totrue
, recent searches are returned as suggestions as per the recent suggestions config (either defaults, or as set throughrecentSuggestionsConfig
or via Recent Suggestions settings in the control plane). Appbase.io recommends defining a unique id(userId
property) inappbaseConfig
prop for each user to personalize the recent searches.Note: Please note that this feature only works when
recordAnalytics
is set totrue
inappbaseConfig
. -
recentSuggestionsConfig
Object
Specify additional options for fetching recent suggestions.It can accept the following keys:
- size:
number
Maximum number of recent suggestions to return. Defaults to 5. - minHits:
number
Return only recent searches that returned at leastminHits
results. There is no default minimum hits-based restriction. - minChars:
number
Return only recent suggestions that have minimum characters, as set in this property. There is no default minimum character-based restriction. - index:
string
Index(es) from which to return the recent suggestions from. Defaults to the entire cluster.
<search-box :enableRecentSuggestions="true" "recentSuggestionsConfig="{ size: 5, minHits: 5, minChars: 3, index: "good-books-ds", // further restrict the index to search on }" />
- size:
-
aggregationField
String
[optional] One of the most important use-cases this enables is showingDISTINCT
results (useful when you are dealing with sessions, events and logs type data). It utilizescomposite aggregations
which are newly introduced in ES v6 and offer vast performance benefits over a traditional terms aggregation. You can read more about it over here. You can accessaggregationData
usingrender
slot as shown:<template slot="render" slot-scope="{ ... aggregationData }" > ... </template>
If you are using an app with elastic search version less than 6, then defining this prop will result in error and you need to handle it manually using renderError slot.
It is possible to override this query by providing
customQuery
.Note: This prop has been marked as deprecated starting v1.14.0. Please use the
distinctField
prop instead. -
aggregationSize To set the number of buckets to be returned by aggregations.
Note: This is a new feature and only available for appbase versions >= 7.41.0.
-
nestedField
String
[optional] Set the path of thenested
type under which thedataField
is present. Only applicable only when the field(s) specified in thedataField
is(are) present under anested
type mapping. -
title
String or JSX
[optional] set the title of the component to be shown in the UI. -
defaultValue
string
[optional] preset the search query text in the search box. -
value
string
[optional] sets the current value of the component. It sets the search query text (on mount and on update). Use this prop in conjunction with thechange
event. -
fieldWeights
Array
[optional] set the search weight for the database fields, useful when dataField is an Array of more than one field. This prop accepts an array of numbers. A higher number implies a higher relevance weight for the corresponding field in the search results. -
placeholder
String
[optional] set placeholder text to be shown in the component's input field. Defaults to "Search". -
autosuggest
Boolean
[optional] set whether the autosuggest functionality should be enabled or disabled. Defaults totrue
. When set tofalse
, it searches as user types, unlessdebounce
is also set. -
showIcon
Boolean
[optional] whether to display a search or custom icon in the input box. Defaults totrue
. -
iconPosition
String
[optional] sets the position of the search icon. Can be set to eitherleft
orright
. Defaults toright
. -
icon
JSX
[optional] set a custom search icon instead of the default icon 🔍 -
showClear
Boolean
[optional] show a clear textX
icon. Defaults totrue
. -
showFilter
Boolean
[optional] show as filter when a value is selected in a global selected filters view. Defaults totrue
. -
showVoiceSearch
Boolean
[optional] show a voice icon in the searchbox to enable users to set voice input. Defaults tofalse
. -
showDistinctSuggestions
Boolean
[optional] Show 1 suggestion per document. If set tofalse
multiple suggestions may show up for the same document as searched value might appear in multiple fields of the same document, this is true only if you have configured multiple fields indataField
prop. Defaults totrue
.
Example if you haveshowDistinctSuggestions
is set tofalse
and have following configurations// Your document: { "name": "Warn", "address": "Washington" } // Component: <SearchBox dataField=['name', 'address'] .../> // Search Query: "wa"
Then there will be 2 suggestions from the same document as we have the search term present in both the fields specified in
dataField
.Warn Washington
Note:
Check the above concept in action over here.
- filterLabel
String
[optional] An optional label to display for the component in the global selected filters view. This is only applicable ifshowFilter
is enabled. Default value used here iscomponentId
. - clearIcon
JSX
[optional] set a custom icon for clearing text instead of the default cross. - debounce
Number
[optional] set the milliseconds to wait before executing the query. Defaults to0
, i.e. no debounce. - highlight
Boolean
[optional] whether highlighting should be enabled in the returned results. - highlightField
String or Array
[optional] when highlighting is enabled, this prop allows specifying the fields which should be returned with the matching highlights. When not specified, it defaults to applying highlights on the field(s) specified in the dataField prop. - customHighlight
Function
[optional] a function which returns the custom highlight settings. It receives theprops
and expects you to return an object with thehighlight
key. Check out the technews demo where theSearchBox
component uses acustomHighlight
as given below,
<template>
<search-box
componentId="title"
highlight="true"
:dataField="['title', 'text']"
:customHighlight="getCustomHighlight"
/>
</template>
<script>
export default {
name: 'app',
methods: {
getCustomHighlight: props => ({
highlight: {
pre_tags: ['<mark>'],
post_tags: ['</mark>'],
fields: {
text: {},
title: {},
},
number_of_fragments: 0,
},
}),
},
};
</script>
- focusShortcuts
Array<string | number>
[optional] A list of keyboard shortcuts that focus the search box. Accepts key names and key codes. Compatible with key combinations separated using '+'. Defaults to['/']
. - autoFocus
boolean
[optional] When set to true, search box is auto-focused on page load. Defaults tofalse
. - expandSuggestionsContainer
boolean
[optional] When set to false the width of suggestions dropdown container is limited to the width of searchbox input field. Defaults totrue
.
<search-box
expandSuggestionsContainer={false}
...
>
<img slot="addonBefore" src="..." />
<img slot="addonAfter" src="..." />
</data-sesarch>
-
queryFormat
String
[optional] Sets the query format, can be or or and. Defaults to or.- or returns all the results matching any of the search query text's parameters. For example, searching for "bat man" with or will return all the results matching either "bat" or "man".
- On the other hand with and, only results matching both "bat" and "man" will be returned. It returns the results matching all of the search query text's parameters.
-
fuzziness
String or Number
[optional] Sets a maximum edit distance on the search parameters, can be 0, 1, 2 or "AUTO". Useful for showing the correct results for an incorrect search parameter by taking the fuzziness into account. For example, with a substitution of one character, fox can become box. Read more about it in the elastic search docs.Note:
This prop doesn't work when the value of
queryFormat
prop is set toand
. -
innerRef
Function
[optional] TheinnerRef
prop along with theref
prop can be used to access the reference of theinput
element that can be used to access/manipulate the native events or values for input element. For, an example the below snippet changes thetype
of theinput
element tosearch
from thetext
.
<template>
<search-box
componentId="BookSensor"
dataField="['original_title', 'original_title.search']"
ref="search-box"
innerRef="input"
/>
</template>
<script>
export default {
name: 'app',
mounted() {
this.$refs['search-box'].$children[0].$refs['input'].type = 'search';
},
};
</script>
- URLParams
Boolean
[optional] enable creating a URL query string param based on the search query text value. This is useful for sharing URLs with the component state. Defaults tofalse
. - render
Function|slot-scope
[optional] You can render suggestions in a custom layout by using therender
as aprop
or aslot
.
It accepts an object with these properties:loading
:boolean
indicates that the query is still in progress.error
:object
An object containing the error info.data
:array
An array of parsed suggestions obtained from the applied query.rawData
object
An object of raw response as-is from elasticsearch query.resultStats
:object
An object with the following properties which can be helpful to render custom stats:numberOfResults
:number
Total number of results foundtime
:number
Time taken to find total results (in ms)hidden
:number
Total number of hidden results foundpromoted
:number
Total number of promoted results found
value
:string
current search input value i.e the search query being used to obtain suggestions.downshiftProps
:object
provides the following control props fromdownshift
which can be used to bind list items with click/mouse events.- isOpen
boolean
Whether the menu should be considered open or closed. Some aspects of the downshift component respond differently based on this value (for example, if isOpen is true when the user hits "Enter" on the input field, then the item at the highlightedIndex item is selected). - getItemProps
function
Returns the props you should apply to any menu item elements you render. - getItemEvents
function
Returns the events you should apply to any menu item elements you render. - highlightedIndex
number
The index that should be highlighted.
- isOpen
- triggerClickAnalytics:
object
method can be used to register click analytics for suggestions. It accepts two arguments, click position and document ID (required only if you're usingrawData
to render suggestions).
You can use SearchBox
with render slot
as shown:
<search-box
class="result-list-container"
categoryField="authors.raw"
componentId="BookSensor"
:dataField="['original_title', 'original_title.search']"
:URLParams="true"
>
<div
class="suggestions"
slot="render"
slot-scope="{
error,
loading,
downshiftProps: { isOpen, highlightedIndex, getItemProps, getItemEvents },
data: suggestions,
}"
>
<div v-if="loading">loading...</div>
<ul v-if="isOpen">
<template v-for="suggestion in suggestions">
<li
style="{ background-color: highlightedIndex ? 'grey' : 'transparent' }"
v-bind="getItemProps({ item: suggestion })"
v-on="getItemEvents({ item: suggestion })"
:key="suggestion._id"
>
{{ suggestion.label }}
</li>
</template>
</ul>
</div>
</search-box>
Or you can also use render as prop.
<template>
<search-box :render="render" />
</template>
<script>
export default {
name: 'app',
methods: {
render({
error,
loading,
downshiftProps: { isOpen, highlightedIndex, getItemProps, getItemEvents },
data: suggestions,
}) {...},
},
};
</script>
- renderNoSuggestion
String|slot-scope
[optional] can be used to render a message when there are no suggestions found. - renderError
String|Function|slot-scope
[optional] can be used to render an error message in case of any error.
<template slot="renderError" slot-scope="error">
<div>Something went wrong!<br />Error details<br />{{ error }}</div>
</template>
-
getMicInstance
Function
[optional] You can pass a callback function to get the instance ofSpeechRecognition
object, which can be used to override the default configurations. -
renderMic
String|Function|slot-scope
[optional] can be used to render the custom mic option.
It accepts an object with the following properties:handleClick
:function
needs to be called when the mic option is clicked.status
:string
is a constant which can have one of these values:
INACTIVE
- mic is in inactive state i.e not listening
STOPPED
- mic has been stopped by the user
ACTIVE
- mic is listening
DENIED
- permission is not allowed
<template slot="renderMic" slot-scope="{ handleClick, status }"> <div v-if="status === `ACTIVE`"> <img src="/active_mic.png" onClick={handleClick} /> </div> <div v-if="status === `DENIED`"> <img src="/denied_mic.png" onClick={handleClick} /> </div> <div v-if="status === `STOPPED`"> <img src="/mute_mic.png" onClick={handleClick} /> </div> <div v-if="typeof status === `undefined`"> <img src="/inactive_mic.png" onClick={handleClick} /> </div> </template>
-
recentSearchesIcon
slot-scope
[optional] You can use a custom icon in place of the default icon for the recent search items that are shown whenenableRecentSearches
prop is set to true. You can also provide styles using therecent-search-icon
key in theinnerClass
prop.```html <search-box ... :enableRecentSearches="true" :innerClass="{ 'recent-search-icon': '...', }" > <recent-icon slot="recentSearchesIcon" /> </search-box> ```
-
popularSearchesIcon
slot-scope
[optional] You can use a custom icon in place of the default icon for the popular searches that are shown whenenablePopularSuggestions
prop is set to true. You can also provide styles using thepopular-search-icon
key in theinnerClass
prop.```html <search-box ... :enablePopularSuggestions="true" :innerClass="{ 'popular-search-icon': '...' }" > <popular-icon slot="popularSearchesIcon" /> </search-box> ```
-
addonBefore
slot-scope
[optional] The HTML markup displayed before (on the left side of) the searchbox input field. Users can use it to render additional actions/ markup, eg: a custom search icon hiding the default.```html <search-box ... :enablePopularSuggestions="true" :innerClass="{ 'popular-search-icon': '...' }" > <img slot="addonBefore" src="https://img.icons8.com/cute-clipart/64/000000/search.png" height="30px" /> </search-box> ```
-
addonAfter
slot-scope
[optional] The HTML markup displayed before (on the right side of) the searchbox input field. Users can use it to render additional actions/ markup, eg: a custom search icon hiding the default.```html <search-box ... :enablePopularSuggestions="true" :innerClass="{ 'popular-search-icon': '...' }" > <img slot="addonBefore" src="https://img.icons8.com/cute-clipart/64/000000/search.png" height="30px" /> </search-box> ```
-
distinctField
String
[optional] This prop returns only the distinct value documents for the specified field. It is equivalent to theDISTINCT
clause in SQL. It internally uses the collapse feature of Elasticsearch. You can read more about it over here. -
distinctFieldConfig
Object
[optional] This prop allows specifying additional options to thedistinctField
prop. Using the allowed DSL, one can specify how to return K distinct values (default value of K=1), sort them by a specific order, or return a second level of distinct values.distinctFieldConfig
object corresponds to theinner_hits
key's DSL. You can read more about it over here.```html <search-box .... distinctField="authors.keyword" :distinctFieldConfig="{ inner_hits: { name: 'most_recent', size: 5, sort: [{ timestamp: 'asc' }], }, max_concurrent_group_searches: 4, }" /> ```
Note: In order to use the
distinctField
anddistinctFieldConfig
props, theenableAppbase
prop must be set to true inReactiveBase
. -
index
String
[optional] The index prop can be used to explicitly specify an index to query against for this component. It is suitable for use-cases where you want to fetch results from more than one index in a single ReactiveSearch API request. The default value for the index is set to theapp
prop defined in the ReactiveBase component.Note: This only works when
enableAppbase
prop is set to true inReactiveBase
. -
renderItem
Function
[optional] You can render each suggestion in a custom layout by using therenderItem
prop.
<search-box
componentId="BookSensor"
// ...
>
<div class="suggestions" slot="renderItem" slot-scope="item">
👋 {{ item.label }}
</div>
</search-box>
-
applyStopwords
Boolean
When set to true, it would not predict a suggestion which starts or ends with a stopword. You can find the list of stopwords used by Appbase at here. -
customStopwords
Array[String]
It allows you to define a list of custom stopwords. You can also set it throughIndex
settings in the control plane. -
categoryField
string
[optional] Data field whose values are used to provide category specific suggestions. -
enterButton
boolean
[optional] When set totrue
, the results would only be updated on press of the button. Defaults tofalse
. You can also provide styles using theenter-button
key in theinnerClass
prop.
<search-box
:enterButton="true"
>
// ... other slots
</search-box>
- renderEnterButton
slot-scope
[optional] The custom HTML markup displayed for enterButton. Use in conjunction withenterButton
prop set totrue
.
<search-box
...
:enterButton="true"
>
<div
slot="renderEnterButton"
slot-scope="onClick"
:style="{ height: '100%', display: 'flex', alignItems: 'stretch' }"
>
<button
:style="{ border: '1px solid #c3c3c3', cursor: 'pointer' }"
v-on:click="onClick"
>
🔍 Search
</button>
</div>
</search-box>
Demo
Styles
SearchBox
component supports an innerClass
prop to provide styles to the sub-components of SearchBox. These are the supported keys:
title
input
recent-search-icon
popular-search-icon
enter-button
Read more about it here.
Extending
SearchBox
component can be extended to:
- customize the look and feel with
className
, - update the underlying DB query with
customQuery
, - connect with external interfaces using
beforeValueChange
,value-change
andquery-change
, - specify how search suggestions should be filtered using
react
prop.
<template>
<search-box
className="custom-class"
:customQuery="getCustomQuery"
:beforeValueChange="handleBeforeValueChange"
:react="{
and: ['pricingFilter', 'dateFilter'],
or: ['searchFilter']
}"
@value-change="handleValueChange"
@query-change="handleQueryChange"
/>
</template>
<script>
export default {
name: 'app',
methods: {
getCustomQuery: (value, props) => {
return {
query: {
match: {
data_field: 'this is a test',
},
},
};
},
handleBeforeValueChange: value => {
// called before the value is set
// returns a promise
return new Promise((resolve, reject) => {
// update state or component props
resolve();
// or reject()
});
},
handleValueChange: value => {
console.log('current value: ', value);
// set the state
// use the value with other js code
},
handleQueryChange: (prevQuery, nextQuery) => {
// use the query with other js code
console.log('prevQuery', prevQuery);
console.log('nextQuery', nextQuery);
},
},
};
</script>
-
className
String
CSS class to be injected on the component container. -
customQuery
Function
takes 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 SearchBox component as long as the component is a part ofreact
dependency of at least one other component. -
defaultQuery
Function
is a callback function that takes value and props as parameters and returns the data query to be applied to the source component, as defined in Elasticsearch Query DSL, which doesn't get leaked to other components. In simple words,defaultQuery
prop allows you to modify the query to render the suggestions whenautoSuggest
is enabled. Read more about it here. -
beforeValueChange
Function
is 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.Note:
If you're using Reactivesearch version >=
1.1.0
,beforeValueChange
can also be defined as a synchronous function.value
is updated by default, unless you throw anError
to reject the update. For example:beforeValueChange = value => { // The update is accepted by default if (value && value.toLowerCase().contains('Social')) { // To reject the update, throw an error throw Error('Search value should not contain social.'); } };
-
react
Object
specify dependent components to reactively update SearchBox's suggestions.- key
String
one ofand
,or
,not
defines the combining clause.- and clause implies that the results will be filtered by matches from all of the associated component states.
- or clause implies that the results will be filtered by matches from at least one of the associated component states.
- not clause implies that the results will be filtered by an inverse match of the associated component states.
- value
String or Array or Object
String
is used for specifying a single component by itscomponentId
.Array
is used for specifying multiple components by theircomponentId
.Object
is used for nesting other key clauses.
- key
Events
-
change
function
[optional] is an event that accepts component's current value as a parameter. It is called when you are using thevalue
prop and the component's value changes. This event is useful to control the value updates of search input.<template> <search-box value="value" @change="handleChange" /> </template> <script> export default { name: 'app', data() { return { value: "" } }, methods: { handleChange(value, triggerQuery, event) { this.value = value; // Trigger the search query to update the dependent components triggerQuery({ isOpen: false // To close the suggestions dropdown; optional }) } } }; </script>
Note:
If you're using the controlled behavior than it's your responsibility to call the
triggerQuery
method to update the query i.e execute the search query and update the query results in connected components byreact
prop. It is not mandatory to call thetriggerQuery
inonChange
you can also call it in other input handlers likeonBlur
oronKeyPress
. ThetriggerQuery
method accepts an object withisOpen
property (default tofalse
) that can be used to control the opening state of the suggestion dropdown.
-
query-change is an event which accepts component's prevQuery and nextQuery as parameters. It is called everytime the component's query changes. This event is handy in cases where you want to generate a side-effect whenever the component's query would change.
-
value-change is an event which accepts component's current value as a parameter. It is called everytime the component's value changes. This event 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 list item is selected in a "Discounted Price" SingleList.
-
value-selected is called when a search is performed either by pressing enter key or the input is blurred.
-
on-data gets triggered when either of data, rawData, aggregationData, loading and error changes. You can use a callback function to listen for the changes. The function receives
data
,rawData
,aggregationData
,loading
anderror
as a single parameter object.
<search-box
componentId="BookSensor"
// ... other props ...
@on-data="(param) => { // do something }"
/>
- error
gets triggered in case of an error and provides the
error
object, which can be used for debugging or giving feedback to the user if needed.
The following events to the underlying input
element:
- blur
- focus
- key-press
- key-down
- key-up
Note:
- All these events accepts the
triggerQuery
as a second parameter which can be used to trigger theSearchBox
query with the current selected value (useful to customize the search query execution).- There is a known issue with
key-press
whenautosuggest
is set to true. It is recommended to usekey-down
for the consistency.