LunrJs

UI Extension

Lunr.js is a small, full-text search library for use in the browser. Indexes JSON documents for fast client-side searching.

Status
Planned
Supported Version
TBD
Licensing
Open Source
Priority
Rank #94
KEY FEATURES
Full-text search
Client-side
Stemming
Boosting
Wildcards
Pipeline
Serialization
Usage Example

Here's how you'll use LunrJs with Oorian once the extension is available:

Java
// Create and configure LunrJs component
LunrJs component = new LunrJs();
component.setWidth("100%");
component.setHeight("400px");

// Configure component options
component.setEnabled(true);

// Register for events using Oorian's event model
component.registerForEvent(this, LunrJsEvent.class);

// Add to your page
container.addElement(component);

Note: This is a preview of the expected API. The actual implementation may vary slightly when released.