Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ampersand-autocomplete-view

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ampersand-autocomplete-view

An autocomplete view module.

  • 0.0.3
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
26
Maintainers
1
Weekly downloads
 
Created
Source

ampersand-autocomplete-view

An ampersand autocomplete view.

Install

npm install ampersand-autocomplete-view

Example

var AutoCompleteView = require('../ampersand-autocomplete-view');
var FormView = require('ampersand-form-view');

var Model = require('ampersand-state').extend({
  props: {
    mbid: 'string',
    name: 'string',
    listeners: 'string'
  },
  derived: {
    id: function() {
      return this.name;
    }
  }
});

var Collection = require('ampersand-rest-collection').extend({
  model: Model,
  url: 'http://ws.audioscrobbler.com/2.0/?method=artist.search&api_key=cef6d600c717ecadfbe965380c9bac8b&format=json',
  parse: function(response, options) {
    if (response.results) {
      return response.results.artistmatches.artist;
    }
  }
});

var BaseView = FormView.extend({
  fields: function () {
    return [
      new AutoCompleteView({
        name: 'autocomplete',
        parent: this,
        options: new Collection(),
        queryKey: 'artist',
        idAttribute: 'name',
        textAttribute: 'name',
        placeHolder: 'Please choose one',
        minKeywordLength: 3,
        maxResults: 10
      })
    ];
  }
});

document.addEventListener('DOMContentLoaded', function () {
  var baseView = new BaseView({el: document.body });
  baseView.on('all', function (name, field) {
    console.log('Got event', name, field.value, field.valid);
  });
  baseView.render();
});

Demo

npm run demo

Credits

Written by @pjepsen

License

MIT

Keywords

FAQs

Package last updated on 20 Mar 2015

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc