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

vue-simple-suggest

Package Overview
Dependencies
Maintainers
3
Versions
50
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-simple-suggest

Feature-rich autocomplete component for Vue.js

  • 1.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
8.3K
decreased by-12.07%
Maintainers
3
Weekly downloads
 
Created
Source

vue-simple-suggest

Feature-rich autocomplete component for Vue.js

npm live demo

npm install --save vue-simple-suggest

Table of contents

What is it

This is a simple yet feature-rich suggestion/autocomplete component for Vue.js.

It supports v-model, allows custom styling, custom input and suggestion list templates, API calls and more.

All of the props, events and slots are OPTIONAL for this component, so it can be used without any configuration at all.


Build Setup

# clone the repo
git clone https://github.com/KazanExpress/vue-simple-suggest.git
cd ./vue-simple-suggest

# install dependencies
npm install

# serve example with hot reload at localhost
npm run dev

# build example for static serving
npm run build

Default Controls

KeyDescription
EscapeIf the suggestions list is shown - hide it.
ArrowDownIf the suggestions list is hidden - show it.
ArrowUp/ArrowDownCycle (hover) through suggestions.
EnterIf the list is shown - chooses the highlighted element, if the list is hidden - refills the suggestions based on current input text.
Ctrl + Space/Cmd + SpaceSelect the first element in the list.

Component API

TLDR

<!-- Ref to access the API, v-model for efficient query binding -->
<vue-simple-suggest ref="vueSimpleSuggest" v-model="model"
  valueAttribute="id"
  displayAttribute="title"
  :placeholder="placeholder!!!"
  :get-list="getListFunction"
  :max-count="10"
  :min-length="3"
  :debounce="100"
  :destyled="false"
  :removeList="false"
  :filter-by-query="false"
  :value="defaultValue"
  @input="onInputEvent"
  @select="onSuggestSelect"
  @hover="onSuggestHover"
  @focus="onFocus"
  @blur="onBlur"
  @request-start="onRequestStart"
  @request-done="onRequestDone"
  @request-failed="onRequestFailed"
  @show-list="onShowList"
  @hide-list="onHideList"
>
  <!-- v-model on input itself is useless -->
  <input class="optional-custom-input">

  <!-- Appears o top of the list -->
  <template slot="miscItem-above" slot-scope="{ suggestions, query }">
    <div class="misc-item">
      <span>You're searching for {{ query }}.</span>
    </div>
    <div class="misc-item">
      <span>{{ suggestions.length }} suggestions are shown...</span>
    </div>
    <hr>
  </template>

  <div slot="suggestionItem" slot-scope="{ suggestion }" class="custom">{{ suggestion.title }}</div>

  <!-- Appears below the list -->
  <div class="misc-item" slot="miscItem-below" slot-scope="{ suggestions }" v-if="loading">
    <span>Loading...</span>
  </div>
</vue-simple-suggest>

API definitions

Props
NameTypeDefaultDescription
maxSuggestionsNumber10The maximum amount of suggestions to display. Set to 0 for infinite suggestions.
displayAttributeString'title'The property in a suggestion object to display in a list. Supports dotted paths.
valueAttributeString'id'The property in a suggestion object to use as a unique key. Supports dotted paths.
getListFunciton or Array() => []The array provider function, must accept a query as its only argument. Can return an array or a promise. Can be async. The component behaves as a simple input without this function.
debounceNumber0Determines the getList debounce (a time between the input event and a function execution).
destyledBooleanfalseWhether to cancel the default styling of input and suggestions list.
removeListBooleanfalseIf true - the suggestion list will be always hidden.
filterByQueryBooleanfalseWhether to filter the resulting suggestions by input's text query (make it a search component).
type, value, pattern, etc...All of the HTML5 input attributes with their respected default values.

Events
NameArgumentsDescription
inputHTML input eventAn outward projection of the current input's event.
focusHTML focus eventAn outward projection of the current input's event.
blurHTML focus eventAn outward projection of the current input's event.
selectSelected suggestionFires on suggestion selection (via a mouse click or enter keypress).
hoverHovered suggestionFires each time a new suggestion is highlighted (via a cursor movement or keyboard arrows).
showList-Fires each time the suggestion list is toggled to be shown.
hideList-Fires each time the suggestion list is being hidden.
requestStartCurrent input value (query)Fires each time a getList function starts executing.
requestDoneResulting suggestions listFires when a getList function successfully returns a result and forwards that result as an argument.
requestFailedThe interrrupting exceptionFires if an exception occurs during the execution of a getList funciton.

Ref Methods

accessed via $refs.*your ref name here*

NameArgumentsDescription
showList-Shows the suggestion list.
hideList-Hides the suggestion list.
getSuggestionsquery: stringGets and processes suggestions from the list prop. Returns a promise.
research-Debounced getSuggestions on the current input value.
clearSuggestions-Clears the suggestions array.
selectitemSelects the passed item.
hoveritemHovers over the passed item.

Ref Data

accessed via $refs.*your ref name here*

NameDefaultDescription
selectednullCurrently selected element.
hoverednullCurrently hovered element.
suggestions[]Current suggestions list.
listShownfalseIs suggestion list shown.
inputElementnullCurrently used HTMLInputElement.
canSendtrueWhether the assigned getListFuncion can be executed.
timeoutInstancenullThe timeout until next getListFunction execution.
textvueSimpleSuggest.$props.valueCurrent input text.
slotIsComponent-Whether this current custom input is a vue-component.
listIsRequest-Whether the list prop is a function.
input-A ref to the current input (component or vanilla).
hoveredIndex-The current hovered element index.

Slots

all optional

Custom input

default slot

Supports nesting. Input props can be passed to a custom input to avoid their processing by vue-simple-suggest. Defaults to a simple input with props passed to vue-simple-suggest.

Warning: v-model on a custom input IS NOT the same as v-model on vue-simple-suggest!

<!--  Default HTMLInputElement example:  -->
<vue-simple-suggest v-model="model" placeholder="Text here" type="search" pattern="[a-z]+"/>
<!--  Vanilla HTMLInputElement example 1:  -->
<vue-simple-suggest>
  <input pattern="[a-z]+">
</vue-simple-suggest>
<!--  Vanilla HTMLInputElement example 2:  -->
<vue-simple-suggest v-model="model" placeholder="Text here" type="search">
</vue-simple-suggest>
<!--  Vanilla HTMLInputElement example 3 (fully equivalent to the second example):  -->
<vue-simple-suggest v-model="model">
  <input placeholder="Text here" type="search">
</vue-simple-suggest>
<!--  Vanilla HTMLInputElement example 4 (nested):  -->
<vue-simple-suggest>
  <div>
    <section>
      <input type="email">
    </section>
  </div>
</vue-simple-suggest>
<!--  Vue component example (also supports nesting):  -->
<vue-simple-suggest>
  <my-custom-input-somponent></my-custom-input-somponent>
</vue-simple-suggest>
Custom suggestion item

suggestionItem slot

Allows custom html-definitons of the suggestion items in a list. Defaults to <span>{{ suggestion[displayAttribute] }}</span>

<!-- Example: -->
<vue-simple-suggest>
  <div slot="suggestionItem" slot-scope="{ suggestion }">
    <div>My {{ suggestion.title }}</div>
  </div>
</vue-simple-suggest>
Custom miscellanious item slots

miscItem-above and miscItem-below slots

Allow custom elements to be shown in suggestion list. These elements never dissapear from the list, niether can they be selected nor hovered on.

These can be used for decoration, loaders, error messages and etc.

Do not have defaults, so are not shown until defined.

Accept the suggestions array and a query text as a slot-scope attribute values.

<!-- Examples: -->
<vue-simple-suggest>
  <template slot="miscItem-above" slot-scope="{ suggestions, query }">
    <div class="misc-item">
      <span>You're searching for {{ query }}.</span>
    </div>
    <div class="misc-item">
      <span>{{ suggestions.length }} suggestions are shown...</span>
    </div>
  </template>

  <div slot="miscItem-below" slot-scope="{ suggestions }" v-if="isLoading" class="misc-item">
    <span>Loading...</span>
  </div>
</vue-simple-suggest>

Keywords

FAQs

Package last updated on 09 Mar 2018

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