• Stars
    star
    234
  • Rank 165,997 (Top 4 %)
  • Language Vue
  • License
    MIT License
  • Created over 7 years ago
  • Updated about 5 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Vue 2 Component to make Autocomplete element.

Vue 2 Autocomplete

Autocomplete Component For Vue 2. It's based on vue-autocomplete. LIVE DEMO HERE!

vue Autocomplete component

Install

You can import vue2-autocomplete.vue to your vue component file like this and process it with your preprocessor.

You can install it via NPM

npm install vue2-autocomplete-js

Or Just put it after Vue JS~

<script src="https://vuejs.org/js/vue.min.js"></script>
<script src="./dist/vue2-autocomplete.js"></script>
<script>
  // Don't Forget to register it
  new Vue({
    components: {
      autocomplete: Vue2Autocomplete
    }
  });
</script>

Import Style

Don't forget to import vue 2 css. You can link it via html

<link rel="stylesheet" href="vue2-autocomplete-js/dist/style/vue2-autocomplete.css">

Or You can import it using commonJS

require('vue2-autocomplete-js/dist/style/vue2-autocomplete.css')

Its style is very customizable. You can put any CSS over it. And You can add custom class via its prop.

Import Module

import Autocomplete from 'vue2-autocomplete-js'
// Or
var Autocomplete = require('vue2-autocomplete-js');

Usage

<template>

  <autocomplete
    url="http://localhost/proyek/goodmovie/api/api/v1/search"
    anchor="title"
    label="writer"
    :on-select="getData">
  </autocomplete>

</template>


<script>

  import Autocomplete from 'vue2-autocomplete-js';

  export default {

    components: { Autocomplete },

    methods: {
      getData(obj){
        console.log(obj);
      }
    }
  };

</script>

Available Props

<template>

  <autocomplete
    url="http://localhost/proyek/goodmovie/api/api/v1/search"
    anchor="title"
    label="writer"
    :onSelect="getData"
    :customParams="{ token: 'dev' }"
    :customHeaders="{ Authorization: 'bearer abc123' }"


    :required="true"
    id="custom id"
    className="custom class name"
    :classes="{ wrapper: 'form-wrapper', input: 'form-control', list: 'data-list', item: 'data-list-item' }"
    placeholder="placeholder"
    :initValue="initial value"


    :options="[]"
    :min="3"
    :debounce="2000"
    :filterByAnchor="true"
    :encodeParams="true"

    :onShouldGetData="getData"
    :onInput="callbackEvent"
    :onShow="callbackEvent"
    :onBlur="callbackEvent"
    :onHide="callbackEvent"
    :onFocus="callbackEvent"
    :onSelect="callbackEvent"
    :onBeforeAjax="callbackEvent"
    :onAjaxProgress="callbackEvent"
    :onAjaxLoaded="callbackEvent"
    :onShouldRenderChild="renderChild"
  >
  </autocomplete>

</template>

Props

url* (String)

the URL must be active (not from file). the component will fetch JSON from this URL and passing one params (default : q) query. like:

http://some-url.com/API/list?q=

There are no filter and limit action inside the component. So, do it in your API logic.

param (String: "q")

name of the search parameter to query in Ajax call. default is q

min (Number: 0)

Minimum input typed chars before performing the search query. default is 0

anchor* (String)

It's a object property path that used for Anchor in suggestions list. Example anchor="name" will get the name property of your JSON object. Like ("Bambang", "Sukijan", "Bejo") in the demo above. Or you can reach the deep value of your object. Like anchor="geometry.location.lat"

label (String)

Same as anchor but it's used for subtitle or description of list

options (Array)

Manual pass an Array of list options to the autocomplete.

filterByAnchor (Boolean: true)

When you're using options props, you can have autocomplete to filter your data. Or you can just show your data directly without any filter from autocomplete. The options will be filtered by anchor and it according to the user input.

encodeParams (Boolean: true)

Autocomplete will encodeURIComponent all your params before ajax send, When this props sets to true. Default is true #35

debounce (Number)

Delay time before do the ajax for the data

required (Boolean)

Required attribute for input

placeholder (String)

Placeholder for input

className (String)

Custom class name for autocomplete component

classes (Object)

Spesific custom class for each part. available: wrapper, input, list, and item

id (String)

Custom id name for autocomplete component

debounce (number)

Number of milliseconds the user should stop typing for before the request is sent. Default is 0, meaning all requests are sent immediately.

process (Function)

Function to process the API result with. Should return an array of entries or an object whose properties can be enumerated.

template (Function)

Function to process each result with. Takes the type of an API reply element and should return HTML data.

Callback Events

You can make a callback event via props.

onInput (Function)

On Input event in autocomplete

onShow (Function)

On Show event in autocomplete list

onBlur (Function)

When autocomplete is blured

onHide (Function)

When autocomplete list is hidden

onFocus (Function)

When autocomplete input in focus mode

onSelect (Function)

When user has selected one item in the list

onBeforeAjax (Function)

Before the ajax send

onAjaxProgress (Function)

While ajax is fetching the data

onAjaxLoaded (Function)

When ajax process is totally loaded

onShouldGetData (Function)

Manually Process the whole ajax process. If it's a Promise, it should resolve the options for the list of autocomplete. If it isn't a Promise, you can manually pass the options to the props of autocomplete

<autocomplete
  anchor="formatted_address"
  label="formatted_address"
  :onShouldGetData="getData"
>
</autocomplete>
methods: {
  promise(value) {
    return new Promise((resolve, reject) => {
      let ajax = new XMLHttpRequest();
      ajax.open('GET', `https://maps.googleapis.com/maps/api/geocode/json?address=${value}`, true);
      // On Done
      ajax.addEventListener('loadend', (e) => {
        const { responseText } = e.target
        let response = JSON.parse(responseText);
        // The options to pass in the autocomplete
        resolve(response.results)
      });
      ajax.send();
    })
  },

  nonPromise() {
    getData(value) {
      let ajax = new XMLHttpRequest();
      ajax.open('GET', `https://maps.googleapis.com/maps/api/geocode/json?address=${value}`, true);
      // On Done
      ajax.addEventListener('loadend', (e) => {
        const { responseText } = e.target
        let response = JSON.parse(responseText);
        // The options to pass in the autocomplete props
        this.options = response.results;
      });
      ajax.send();
    },
  }
}

process (Function)

Process the result before retrieveng the result array. You can shape your data here before it's passed to the autocomplete

onShouldRenderChild (Function)

Wanna use custom template for the list? Now, you can do it!

<autocomplete
  anchor="formatted_address"
  label="formatted_address"
  :onShouldRenderChild="renderChild"
>
</autocomplete>
methods: {
  renderChild(data) {
    return `
      <img src="${data.src}" />
      <span>${data.something}</span>
    `
  },
}

Methods

You can do some methods by accessing the component via javascript.

this.$refs.autocomplete.someMethod()

setValue (String)

To set the value of the autocomplete input

Thank You for Making this useful~

Let's talk about some projects with me

Just Contact Me At:

License

MIT Copyright (c) 2016 - forever Naufal Rabbani

More Repositories

1

vue2-loading-bar

Simplest Youtube Like Loading Bar Component For Vue 2. http://bosnaufal.github.io/vue2-loading-bar/
JavaScript
269
star
2

vue-mini-shop

Mini Online Shop Built With Vue JS
JavaScript
269
star
3

vue2-scrollbar

The Simplest Pretty Scroll Area Component with custom scrollbar for Vue 2. https://bosnaufal.github.io/vue2-scrollbar
Vue
235
star
4

vue-autocomplete

Autocomplete Component for Vue.Js
JavaScript
207
star
5

vue-simple-pwa

Simple Progressive Web App Built with Vue Js. https://bosnaufal.github.io/vue-simple-pwa
CSS
195
star
6

vuex-saga

Better Vuex Action To Simplify Your Async Flow Process And Code Testing
JavaScript
159
star
7

react-file-base64

React Component for Converting File to base64
JavaScript
157
star
8

vue-loading-bar

Youtube Like Loading Bar Component for Vue.js
JavaScript
139
star
9

vue-scrollbar

The Simplest Scroll Area Component with custom scrollbar for Vue Js. https://bosnaufal.github.io/vue-scrollbar/
Vue
119
star
10

react-simple-pwa

Simple Progressive Web App Built with React Js. https://bosnaufal.github.io/react-simple-pwa
JavaScript
113
star
11

vue-freeze

Simple state management whitout bloating API and Concept for Vue.js.
JavaScript
74
star
12

react-scrollbar

The Simplest Scroll Area Component with custom scrollbar for React JS. https://bosnaufal.github.io/react-scrollbar
JavaScript
71
star
13

vue-simple-store

Store Organizer To Simplify Your Stores
JavaScript
67
star
14

vue-image-compressor

Vue Component To Compress Image Files Via Client Side. https://bosnaufal.github.io/vue-image-compressor
Vue
56
star
15

vue-file-base64

Vue Component for Convert File to base64
Vue
49
star
16

javascript-sabuk-putih

Modal Awal Belajar Fundamental Javascript Untuk Mendalami React JS, Vue JS, Angular JS, ataupun Node JS
HTML
49
star
17

vue-ripple

Vue Component to Make Google Material Design Ripple Effect. http://bosnaufal.github.io/vue-ripple/
Vue
48
star
18

terbilang-js

Convert Number Into Indonesian Words By Frontend's way
JavaScript
45
star
19

vue-click-outside

Vue Directive to make a click outside event
JavaScript
41
star
20

react-loading-bar

Simplest Youtube Like Loading Bar Component For React Js. http://bosnaufal.github.io/react-loading-bar/
JavaScript
40
star
21

vue-starter

Simple Vue Js Starter for single page application with Vuex and Vue Router
JavaScript
36
star
22

react-ripple

React Component to Make Google Material Design Ripple Effect. http://bosnaufal.github.io/react-ripple/
HTML
33
star
23

vue-testing

Let's make Vue Testing And Mocking Become Easier And Much Fun
JavaScript
31
star
24

secure-local-storage

Javascript Library to make a secure local storage with encryption
JavaScript
29
star
25

click-outside-js

Standalone javascript library to make click outside event. https://bosnaufal.github.io/click-outside-js/
HTML
18
star
26

react-image-compressor

React Component To Compress Image Files Via Client Side. https://bosnaufal.github.io/react-image-compressor
JavaScript
18
star
27

react-starter

Simple starter for React Js project. Completely built with simple configuration
JavaScript
16
star
28

css-itu-mudah

Mini ebook untuk belajar CSS mulai dari dasar
Vue
14
star
29

vue2-starter

Simple Vue 2 Starter for single page application with Vuex and Vue Router
JavaScript
11
star
30

vue-move-dom

Vue Directive to move the DOM without losing all the VM data, event, etc. it's Adopted from https://github.com/rhyzx/vue-transfer-dom
JavaScript
7
star
31

counting-day

Mini library to count your day
JavaScript
6
star
32

micro-blogging-vue

Micro Blogging System Built with Vue.js
JavaScript
5
star
33

terbilang-vue

Vue Filter to Convert Number into Indonesian words.
5
star
34

javascript-for-all

Javascript Untuk Pemula, Javascript Untuk Semua: Basic Examples
JavaScript
4
star
35

fake-api

Javascript library to make Fake API like a Real API. YOU DON'T NEED SERVER!
JavaScript
4
star
36

vue-calc-input

Vue directive to make a calculator input behavior. Implementation of https://github.com/BosNaufal/readable-number
JavaScript
4
star
37

mage-its-pwa

Boilerplate dan Hasil Jadi untuk Workshop Mage ITS tentang Progressive Web App
JavaScript
4
star
38

readable-number

Simple Javascript function to make an integer become readable and vice versa.
JavaScript
4
star
39

argvalid

Make Sure That Your Variable Is Valid. It's Inspired By https://vuejs.org/v2/guide/components.html#Props
JavaScript
4
star
40

meetups

Kumpulan Kodingan Meet up
JavaScript
3
star
41

virtual-element

Simple Reactive Web Component With Virtual DOM for building user interfaces | https://bosnaufal.github.io/virtual-element
JavaScript
2
star
42

vue-freeze-todomvc

Vue Freeze Todo MVC Example
JavaScript
1
star
43

lazy-image

Standalone Javascript Library to lazy load the image. You can use it without jquery~
JavaScript
1
star
44

runner-js

Better Async Handler To Simplify Your Async Flow Process And Code Testing
JavaScript
1
star
45

vuedova

Tool for developing Cordova with Vue Js
JavaScript
1
star
46

test-checkbox

Simple Checkbox with custom label component
Vue
1
star
47

react-click-outside

Click outside event in React Js
JavaScript
1
star
48

react-calc-input

A React Component to make a calculator input behavior
JavaScript
1
star
49

vue-readable-number

Vue Filter to make an integer become readable and vice versa. The Vue implementation of https://github.com/BosNaufal/readable-number
JavaScript
1
star
50

vue-boilerplate

Vue Boilerplate inspired by https://github.com/mxstbr/react-boilerplate
JavaScript
1
star
51

secure-string-js

Simple Javascript Encryptor / Decryptor to make your string or variable become secure
JavaScript
1
star
52

cordova-iframe-generator

Base Generator for cordova-iframe
JavaScript
1
star
53

online-shop-starter

Super Simple Online Shop Starter. https://github.com/BosNaufal/vue-mini-shop
CSS
1
star