Questions tagged [reactivesearch]

React and React Native UI components for Elasticsearch

ReactiveSearch is a , and components library for building search UIs using .

Features

  • Configurable styles
  • Works with any Elasticsearch cluster
  • Customizable queries
  • Connect any react component to Elasticsearch and other reactivesearch components

Resources

100 questions
0
votes
2 answers

ReactiveSearch custom component and clear filters

I created a custom ReactiveComponent based on the official docs: https://docs.appbase.io/docs/reactivesearch/v3/advanced/reactivecomponent/ This works fine, however when I use the component and clear the filter of my custom component, how can I…
florian norbert bepunkt
  • 2,099
  • 1
  • 21
  • 32
0
votes
0 answers

ReactiveSearch loading a dynamic index name value from state

I want to change the index name in reactive search dynamically, so I created a state variable, and I change this state variable but it doesn't affect the component loaded public async componentDidMount() { this.setState({ …
Omar
  • 8,374
  • 8
  • 39
  • 50
0
votes
1 answer

Supporting custom interval range for RangeSlider component

I am using RangeInput component of reactivesearch, datafield values are ranging from 1 to 1M but most of the records within 0-1000 so the histogram display a single line. Is it possible to provide different intervals instead of single number. I need…
Kantharaju
  • 11
  • 3
0
votes
2 answers

Re-Rendering of ReactiveList Results

I am trying to build a Search-Engine using reactivesearch library. Does anybody know how i can trigger a re-rendering of the ReactiveList Results? (e.g. with a button onClick event?)
crab
  • 3
  • 1
0
votes
1 answer

Reactivesearch, Datasearch component: Is there a way to extend the component on SearchIconClick?

I would like to extend the Datasearch component by a function that reacts on the event that the search icon is clicked. In https://github.com/appbaseio/reactivesearch/pull/747/files there is a handler for this, called handleSearchIconClick. However,…
wbartussek
  • 1,850
  • 1
  • 10
  • 8
0
votes
1 answer

Reactivesearch Autosuggest with ascii-folding

I do not seem to be able to get autosuggest to work with ascii folding (i.e. convert accents to their ascii equivalents)
David Kong
  • 578
  • 1
  • 5
  • 20
0
votes
1 answer

Doing AND queries with ReactiveSearch

Is it possible to do AND queries with Reactivesearch? It seems that if you select multiple criteria in a multidatalist, it will return records that match any one of the criteria you selected. I want to modify the search such that if I select…
PythonRunner
  • 1,531
  • 2
  • 12
  • 11
0
votes
1 answer

Is there a way to render ReactiveList conditionally

I'm working with ReactiveSearch and trying to figure out how I can render a ReactiveList component conditionally? For example, if I only want to render a ReactiveList component that has an actor's birthday data (day, month, year, city, country, etc)…
user3125823
  • 1,846
  • 2
  • 18
  • 46
0
votes
0 answers

Passing custom props in ReactiveComponent

I am trying to pass custom props to a child component. They ara defined in the parent component and show in the React tools but are undefined in the child component. class App extends Component { render() { return (
0
votes
0 answers

How to disable prefix matching for elastic search?

I'm using ReactiveSearch to support queries on a shopping website. However if I search "tops", then the query matches descriptions containining words like "topshop", and those results are ranked more highly than descriptions with just "tops". How…
swooders
  • 141
  • 1
  • 8
0
votes
1 answer

How to update the filter count and table results based on external event/external component

I am building a dashboard using reactiveSearch that contains some filters (MultiList) say Countries, Status etc. And I have a table with some rows rendered in reactiveList. I have a toolbar which I am using to change particular properties on the…
sunny
  • 49
  • 1
  • 1
  • 3
0
votes
1 answer

`object` supplied to `ReactiveComponent`, expected `function`

I'm getting this error when trying to use ReactiveSearch for a search bar. This is how I'm initialising it: render() { const { tenantConfig, size, componentId } = this.props; return (
Kieran Quinn
  • 1,085
  • 2
  • 22
  • 49
0
votes
1 answer

Reactive search filter available filters

I have set up a sample application based on filtering car sales https://codesandbox.io/s/h0eb4 I've set up simple 'Make' and 'Model' filters, but I want the 'Model' filter to update based on the 'Make' field. Do I need to dig into elastic search API…
Ant
  • 336
  • 1
  • 3
  • 14
0
votes
1 answer

How to make the result card/list responsive?

I am trying to make a filter based search using reactive search. However, I am stuck with the result card implementation. Currently, the result card only displays specific content from my elastic search database. However, I need the result card to…
0
votes
1 answer

How to display detail page from search results in ResultCard?

Preconditions: React application using appbaseio/reactivesearch Problem: I am trying to open a simple detail page in the same window (e.g. as a popup window triggered via onclick handler) when I click on a search result. Search results are being…
Felix
  • 18
  • 3