https://github.com/nativescript-community/algolia
NativeScript plugin for Algolia search.
This plugin is designed to mirror, as closely as possible, the structure of Algolia’s JavaScript client. You don't have to change or add any extra logic for existing applications, it will work for NativeScript.
This plugin is licensed under the MIT license by Arpit Srivastava
To install, type
tns plugin add nativescript-algolia
tns plugin add nativescript-algolia
In 30 seconds, this quick start tutorial will show you how to index and search objects.
You first need to initialize the client. For that, you will need your Application ID and API Key. You can find both of them on your Algolia account.
import {Algolia} from "nativescript-algolia";
var client = new Algolia('applicationID', 'apiKey');
var index = client.initIndex('contacts');
Without any prior configuration, you can start indexing 500 contacts in the contacts
index using the following code:
var index = client.initIndex('contacts');
var contactsJSON = require('./contacts.json');
index.addObjects(contactsJSON, function(content, err) {
if (err) {
console.error(err);
}
});
With these tasks complete, you can now search for contacts by querying fields such as firstname, lastname, company and more. As Algolia is typo tolerant, common misspellings can be handled with ease:
// firstname
index.search('jimmie', function(content, err) {
console.log(content.hits);
});
// firstname with typo
index.search('jimie', function(content, err) {
console.log(content.hits);
});
// a company
index.search('california paint', function(content, err) {
console.log(content.hits);
});
// a firstname & company
index.search('jimmie paint', function(content, err) {
console.log(content.hits);
});
Settings can be customized to tune the search behavior. For example, you can add a custom sort by number of followers to the already great built-in relevance:
index.setSettings({
'customRanking': ['desc(followers)']
}, function(err, content) {
console.log(content);
});
You can also configure the list of attributes you want to index by order of importance (ex: firstname = most important):
Note: Since the engine is designed to suggest results as you type, you'll generally search by prefix. In this case the order of attributes is very important to decide which hit is the best:
index.setSettings({
'searchableAttributes': [
'lastname',
'firstname',
'company',
'email',
'city',
'address'
]
}, function(content, err) {
console.log(content);
});