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

How to identity suggest box within the method getSuggestionList while developing Async? #294

Open
1 of 7 tasks
lalits2002 opened this issue Mar 17, 2020 · 2 comments
Open
1 of 7 tasks
Labels
support The issue is a support request

Comments

@lalits2002
Copy link

lalits2002 commented Mar 17, 2020

I'm submitting a ...

  • support request

What is the current behavior?

If we want to implement Async suggest how can we pass function parameter for getSuggestionList when deal with multiple suggest boxes on same page? I need to pass param so that based on the param I can call my respective API to populate the results.

If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem

What is the expected behavior?

How are you importing Vue-simple-suggest?

  • ESNext (original code, single-file .vue component, css included) (import VueSimpleSuggest from 'vue-simple-suggest/lib')
  • ES6 (import VueSimpleSuggest from 'vue-simple-suggest')
  • ES7 and above (import VueSimpleSuggest from 'vue-simple-suggest/dist/es7')
  • Bundled version (import VueSimpleSuggest from 'vue-simple-suggest')
  • CommonJS (const VueSimpleSuggest = require('vue-simple-suggest'))
  • UMD Component (<script type="text/javascript" src="https://unpkg.com/vue-simple-suggest"></script>)

What is the motivation / use case for changing the behavior?

Enhance the capability while have multiple suggest box on same page.

Please tell us about your environment:

  • Vue.js Version: 2.5.0
  • Vue-simple-suggest version: 1.7.0
  • Browser: [all | Chrome XX | Firefox XX | IE XX | Safari XX | Mobile Chrome XX | Android X.X Web Browser | iOS XX Safari | iOS XX UIWebView | iOS XX WKWebView ]
  • Language: [all | TypeScript X.X | ES6/7 | ES5 | Dart]
  • Other information (e.g. detailed explanation, stacktraces, related issues, suggestions how to fix, links for us to have context, eg. stackoverflow, gitter, etc)
@kaskar2008 kaskar2008 added the support The issue is a support request label Mar 26, 2020
@kaskar2008
Copy link
Member

Hello!

You can use a function wrapper like so:

<vue-suggest :list="listGenerator(list1Props)"></vue-suggest>
<vue-suggest :list="listGenerator(list2Props)"></vue-suggest>
<vue-suggest :list="listGenerator(list3Props)"></vue-suggest>
export default {
  computed: {
	list1Props() {
      return {
        param1: 5,
        param2: 'asd',
      }
    },
	list2Props() {
      return {
        param1: 12,
        param2: 'fghfth',
      }
    },
	list3Props() {
      return {
        param1: 23,
        param2: 'wewewe',
      }
    },
  },
  methods: {
    listGenerator(props) {
      return (inputValue) => {
        return fetch(`https://www.googleapis.com/books/v1/volumes?printType=books&q=${inputValue}`, {
          method: 'post',
          body: JSON.stringify(props)
        });
      };
    },
  },
}

I think you've got the idea :)

@lalits2002
Copy link
Author

lalits2002 commented Mar 26, 2020 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
support The issue is a support request
Projects
None yet
Development

No branches or pull requests

2 participants