drobee / nova-sluggable

Slug field for Laravel Nova
MIT License
45 stars 23 forks source link

Slug was generated too slow #3

Closed phuclh closed 5 years ago

phuclh commented 5 years ago

Thank you for your Field, it works very well except the slug was generated really slow. When I finished typing, it takes 3-5 seconds to complete the slug field.

Does it cause by making too many requests for every button I typed?

Thank you!

drobee commented 5 years ago

Thanks for the feedback!

Each keystroke triggers an API call, but on my production environments these requests take only 100-150 ms. Of course it depends on the client's bandwidth.

I'll try to optimize it.

phuclh commented 5 years ago

I think it can be better if the API call is triggered by blur event, not by key up event.