Giter Site home page Giter Site logo

data handling problem about autocomplete HOT 4 CLOSED

kraaden avatar kraaden commented on July 30, 2024
data handling problem

from autocomplete.

Comments (4)

kraaden avatar kraaden commented on July 30, 2024

Hi DarkPark,

Just call the map function before passing data to autocompleter and everything should work:

var data = [
    {id: 08, name: 'Name A', title: 'Title A', img: 'imageA', data: ['dataA']},
    {id: 11, name: 'Name B', title: 'Title B', img: 'imageB', data: ['dataB']},
];

autocomplete({
    input: document.getElementById("items"),
    fetch: function(text, update) {
        text = text.toLowerCase();
        var mapped = data.map(n => ({ label: n.name, item: n }));
        var suggestions = mapped.filter(n => n.label.toLowerCase().startsWith(text));
        update(suggestions);
    },
    onSelect: function(item) {
        alert("You selected an item with ID " + item.id);
    }
});

You can test it here: https://fiddle.jshell.net/Ljaqr99r/1/

from autocomplete.

DarkPark avatar DarkPark commented on July 30, 2024

sure it's possible
I've already used something like this
but it's not very productive to create unnecessary levels of abstractions - more complications, more memory
it would be nice not to demand this structure { label: "text", item: ... } but to allow to pass any object
default render can expect this format but any custom one can handle another structure e.g. {id: ..., title: ...}
and onSelect will get this whole structure as it is
less hardcode, less magic

from autocomplete.

kraaden avatar kraaden commented on July 30, 2024

The problem is resolved in the new version

npm i --save-dev [email protected]

from autocomplete.

DarkPark avatar DarkPark commented on July 30, 2024

thanks 👍

from autocomplete.

Related Issues (20)

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.