npm-search-pagelet
Version:
Search for packages
60 lines (52 loc) • 1.49 kB
JavaScript
;
var Pagelet = require('pagelet')
, Names = require('./names')
, path = require('path')
, fs = require('fs');
Pagelet.extend({
view: 'view.html', // HTML template.
css: 'css.styl', // Custom CSS.
js: 'client.js', // Front-end magic.
rpc: ['complete'], // Expose method as RPC.
//
// External dependencies that should be included on the page using a regular
// script tag. This dependency is needed for the `client.js` client file.
//
dependencies: [
'//code.jquery.com/jquery-2.1.0.min.js',
path.join(__dirname, '/selectize.default.css'),
path.join(__dirname, '/selectize.js')
],
/**
* Maximum amount of items to show in the auto complete.
*
* @type {Number}
* @public
*/
max: 50,
/**
* The names leveldb database that we're going to use for autocompletion.
*
* @type {Names}
* @private
*/
level: new Names({ refresh: true }),
/**
* [RPC]: Return a list of package names.
*
* @param {Function} reply Send a reply to the client.
* @param {String} query The name of package we're searching for.
* @api public
*/
complete: function complete(reply, query) {
var suffix = this.level.suffix;
this.level.find(query, this.max, function found(err, data) {
reply(err, data.map(function map(row) {
return {
name: row.key,
desc: row.value !== suffix ? row.value : ''
};
}));
});
}
}).on(module);