Giter VIP home page Giter VIP logo

vue-places's Introduction

vue-places

Places component is based on places.js for Vue 2.x.

Turn any into an address autocomplete

circle-ci npm version Dependencies npm downloads code style: prettier License: MIT


Installation

# yarn
$ yarn add vue-places

# npm
$ npm install vue-places --save

Example

<template>
  <places
    v-model="form.country.label"
    placeholder="Where are we going ?"
    @change="val => { form.country.data = val }"
    :options="options">
  </places>
</template>

<script>
import Places from 'vue-places';

export default {
  data() {
    return {
      options: {
        appId: <YOUR_PLACES_APP_ID>,
        apiKey: <YOUR_PLACES_API_KEY>,
        countries: ['US'],
      },
      form: {
        country: {
          label: null,
          data: {},
        },
      },
    };
  },
  components: {
    Places,
  },
}
</script>

Algolia Places Documentation

vue-places's People

Contributors

brockreece avatar dependabot-preview[bot] avatar gomah avatar greenkeeper[bot] avatar greenkeeperio-bot avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

vue-places's Issues

Changing input value format after selecting suggestion

Hello Thomas,

Thank you very much for your package!

I'm trying to change the format of the input value after selecting an address. Currently, the input shows the suggestion.value which is a full, formatted address such as:
1600 Pennsylvania Avenue, Washington, District of Columbia, United States of America

However, I'd like to show only the suggestion.name, which is 1600 Pennsylvania Avenue in my example. Pretty much what Algolia is doing here: https://community.algolia.com/places/examples.html#complete-form

I've tried various things without luck. Do you have any idea how I would go about doing this using your package?

Thanks a lot,
Nicolas

Nuxt integration

Hi,

Is there any possible integration for Nuxt framework ?

Thank you.

Add more examples

Add official "Algolia Places" examples into a simple Vue application.

  • Simple input
  • Complete Form
  • City Search
  • Country Search
  • Link to a Map
  • Sign up form

make options reactive

Hello, thanks for the component!
I was thinking to add the following code that will update the autocomplete settings every time the options change

watch: {
    options: function (new_options) {
      this.$emit('input', "");
      this.placesAutocomplete.destroy();
      this.options.container = this.options.container || this.$el;
      this.placesAutocomplete = places(this.options);
    }
  },

name attribute

Hello,

First, thanks for this nice component !

I'm using it on an old form and the generated input field is lacking a name attribute. Instead of reworking the whole thing, I've just put a hidden field bound to the right property fed by algolia.

Instead of having this workaround, would it be possible to have a name prop/option so that the shown value would be submitted with the rest of the form ?

Readme edit

It is not working as is in the example, it needs language parameter. Consider changing country to language for example.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.