Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Search with offline data is not working. #168

Open
ThomasSuchalla opened this issue Jan 23, 2024 · 1 comment
Open

Search with offline data is not working. #168

ThomasSuchalla opened this issue Jan 23, 2024 · 1 comment

Comments

@ThomasSuchalla
Copy link

When I try to test the following example with offline data, the following message always appears.
Documentation: https://autocomplete.trevoreyre.com/#/javascript-component?id=baseclass
Message: Uncaught TypeError: l is not a function

Example: https://jsfiddle.net/3aztrv6n/

@evanwills
Copy link

evanwills commented Feb 19, 2024

Hi @ThomasSuchalla

From looking at your fiddle, I think you haven't passed the search function as one of the properties when calling

new Autocomplete('.search', { baseClass: 'search' });

e.g.

const offLineSearch = (input) => {
   const _input = input.toLowerCase();
   const options = ['First result', 'Second result'];

   return options.filter((option) => option.toLowerCase().includes(_input));
};

new Autocomplete('.search', { 
  baseClass: 'search',
  search: offLineSearch,
});

The search function can include your offline data.

Note: you don't need to include the offline options in the HTML. The search function will handle all that for you.

See https://codepen.io/evanwills/pen/xxBBzOy for a working example

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants