Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/arpit2438735/nativescript-algolia
Nativescript library for algolia search
https://github.com/arpit2438735/nativescript-algolia
algolia nativescript
Last synced: about 1 month ago
JSON representation
Nativescript library for algolia search
- Host: GitHub
- URL: https://github.com/arpit2438735/nativescript-algolia
- Owner: arpit2438735
- License: other
- Created: 2017-05-22T07:25:35.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-04-26T18:33:40.000Z (over 3 years ago)
- Last Synced: 2024-05-13T05:03:01.627Z (7 months ago)
- Topics: algolia, nativescript
- Language: JavaScript
- Homepage:
- Size: 2.28 MB
- Stars: 8
- Watchers: 6
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
## This plugin is now maintained under the NativeScript Community.
https://github.com/nativescript-community/algolia
# NativeScript-Algolia
[![Build Status][build-status]][build-url]
[build-status]:https://travis-ci.org/arpit2438735/nativescript-algolia.svg?branch=master
[build-url]:https://travis-ci.org/arpit2438735/nativescript-algolia[NativeScript](http://nativescript.org) plugin for [Algolia](http://algolia.com/ "Algolia") search.
This plugin is designed to mirror, as closely as possible, the structure of [Algolia’s JavaScript](https://github.com/algolia/algoliasearch-client-javascript/) client. You don't have to change or add any extra logic for existing applications, it will work for NativeScript.
## License
This plugin is licensed under the MIT license by Arpit Srivastava## Installation
To install, type```
tns plugin add nativescript-algolia
```## Table of Contents
1. **[Install](#install)**
* [NativeScript](#nativescript)
1. **[Quick Start](#quick-start)**
* [Initialize the client](#initialize-the-client)
* [Push data](#push-data)
* [Search](#search)
* [Configure](#configure)
# Getting Started## Install
#### NativeScript
```sh
tns plugin add nativescript-algolia
```## Quick Start
In 30 seconds, this quick start tutorial will show you how to index and search objects.
### Initialize the client
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](https://www.algolia.com/api-keys).```js
import {Algolia} from "nativescript-algolia";
var client = new Algolia('applicationID', 'apiKey');
var index = client.initIndex('contacts');
```### Push data
Without any prior configuration, you can start indexing [500 contacts](https://github.com/algolia/algoliasearch-client-csharp/blob/master/contacts.json) in the `contacts` index using the following code:
```js
var index = client.initIndex('contacts');
var contactsJSON = require('./contacts.json');index.addObjects(contactsJSON, function(content, err) {
if (err) {
console.error(err);
}
});
```### Search
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:
```js
// 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);
});
```
### ConfigureSettings 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:
```js
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:```js
index.setSettings({
'searchableAttributes': [
'lastname',
'firstname',
'company',
'email',
'city',
'address'
]
}, function(content, err) {
console.log(content);
});
```