Socket
Book a DemoInstallSign in
Socket

@appbaseio/reactivebase

Package Overview
Dependencies
Maintainers
4
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@appbaseio/reactivebase

Data components for building reactive UIs

npmnpm
Version
0.3.5
Version published
Maintainers
4
Created
Source

Data components for building reactive UIs

{% raw %}

Installation

npm install --save @appbaseio/reactivebase@latest

Using It

import {
  ReactiveBase,
  DataSearch,
  ResultList
} from "@appbaseio/reactivebase";
<ReactiveBase
	app="reactivemap_demo"
	username="y4pVxY2Ok"
	password="c92481e2-c07f-4473-8326-082919282c18"
	type="car"
	theme="rbc-dark">

	<div className="row">
		<div className="col s6 col-xs-6">
			<DataSearch
				appbaseField="venue_name_ngrams"
				componentId="VenueSensor"
				placeholder="Search Venue"
			/>
		</div>

		<div className="col s6 col-xs-6">
			<ResultList
				componentId="SearchResult"
				appbaseField="group.group_topics.topic_name_raw"
				title="Meetups"
				sortBy="asc"
				from={0}
				size={20}
				onData={this.onData}
				depends={{
					VenueSensor: {"operation": "must"}
				}}
			/>
		</div>
	</div>
</ReactiveBase>
// all the result updates are shown here
this.onData = function(res) {
	console.log(res);
}

{% endraw %}

FAQs

Package last updated on 09 Feb 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts