/frontend-coding-challenge

Challenge de création d'interface de recherche en JavaScript

Coveo Front End Challenge

The challenge

The SAQ is the government-run liquor store monopoly that we have in Quebec, we indexed the different wines and beers there and made it available through our REST Search API. Don’t be surprised if the prices are high!

The challenge, if you accept it, is about building a search interface based on the Coveo REST API.

See the documentation section

You can access this api through https://cloudplatform.coveo.com/rest/search with the token we will provide you. This token grants you access to a Coveo index containing different types of alcohols which are sold in SAQ.

Exemples

Searching Amber Ales

https://cloudplatform.coveo.com/rest/search?access_token=YOUR_TOKEN&q=Bi%C3%A8re%20rousse

Searching beers under 10$

https://cloudplatform.coveo.com/rest/search?access_token=YOUR_TOKEN&q=@tpprixnum%3C10

Searching Merlot

https://cloudplatform.coveo.com/rest/search?access_token=YOUR_TOKEN&q=@tpcepagenomsplitgroup==Merlot

Documentation

Inspiration

Need inspiration? you can see some examples of our sites and implementations here:

But, don't use or copy the code from those examples or the Coveo Search UI framework, we will know :)

Mandatory

  • The end result must absolutely be made available publicly on the internet. Heroku, AWS, Microsoft Azure, Google Cloud, etc. all have free tiers you can use. If we have to install and configure your project locally to review the end result, you will be penalized.

Advice

  • Try to design and implement your solution as you would do for real production code. Show us how you create clean, maintainable code that does awesome stuff. Build something that we'd be happy to contribute to. This is not a programming contest where dirty hacks win the game.
  • Even though you are free to use the framework you want, do not use the Coveo Search UI framework to complete the challenge.
  • Feel free to add more features! Really, we're curious about what you can think of. We'd expect the same if you worked with us.
  • Documentation and maintainability is a plus.
  • Don't you forget those unit tests.