Skip to content

shlior7/TicketSystem

Repository files navigation

Wix FED Entry Level Exam

Hi there!
In this exam you will extend and add new features to a simplified ticketing system. The task's main purpose is to test your ability to learn new topics and deliver high quality digital products. It combines building UI components and a touch of server development as well.

While no previous background is required to complete this task or to apply to this position, we do recommend getting to a basic level on the following subjects:

  • JavaScript
  • HTML & CSS
  • React
  • Node.js

Getting Started

  1. Make sure you have Node.js 10 or higher and npm 6 or higher installed
  2. Install the project dependencies by running npm install from the project's directory (using a terminal)
  3. Run the project by running npm start

You should now have the development version running on your computer and accessible via http://localhost:3000

Tasks

The exam is split into 3 parts. The first part is about adding UI functionality. The second part goes a bit broader into the client-server integration and business logic. The third part is about creativity and good "big-picture" intuition.

Note that 1d and 2c are bonus tasks

Part 1 - Ticket item improvements

1a. Our tickets list is only showing the title. Make it show the content as well, as following:
content

1b. Some times clients write confusing or wrong titles. Agents need a way to rename titles. Add a rename button that will use the browsers prompt API to receive a new title and show it. Make sure to label that button "Rename".

PS: in a "real" product we would also want to persist this change to our server, so it doesn't go away after refresh and other users can see it as well. However, this not required from you to complete this task. It's ok that the change will dissappear after refresh. If you've finished other tasks and still have time, go ahead and try to fix that too!

1c. Agents use this system all day, white can be quite a tiring color on the eyes 😫.

1.Add a "dark mode" button or clickable text that will change the background of the UI to black and the basic font of the outline to white. 2.When the "dark mode" is enabled let the user revert it with a button or clickable text that will change the background of the UI to white and the basic font of the outline to black. use "dark mode" and "light mode" as the text for those different button states.

1D - Bonus Task

1d. Bonus Step a wasn't enough - some tickets have long content. Add a show more / show less functionality when the content exceeds 3 lines, as following:
show more/less

Part 2 - List functionality

2a. It's pretty common that we need to clone tickets in our system.

1.Add a clone button or text that will replicate an item in the client. 2.Add a clone method in the API and server and add an in memory item to the collection 3.Connect your client side "clone" button to that API call

2b. We're showing only 20 tickets but agents can swear there are more. Solve this problem.
Keep in mind the number of tickets is planned to grow exponentially very soon so make sure to think of a proper solution.

2c - Bonus Task

There is a need to find tickets created before/after a certain date, and our designer is on vacation to design proper UI for it. Change the search functionality so that when searching for after:27/09/2019 api, only tickets matching the word "api" created after 27/09/2019 will show. Add support for before:[DATE] and from:[EMAIL] as well.

2d - Bonus Task

We're doing great, the system now has more than 10M tickets but with success comes challenges and search became unbearable. Keep in mind the number of tickets is planned to grow exponentially very soon so make sure to think of a proper solution. We even had a complaint from an agent that told us he waited for a response more than 5 minutes, that's just CRAZY! Let's create a search mechanism on steroids. 1.Add q query param ?superSearch= to the /tickets API call and implement an efficient search solution, that gets a word as an input and return an array of matching tickets. 2. Connect your client side search bar to that API call

Part 3 - Your extra touch

Think of a small addition to this project and make it happen. If you need inspiration, you can check out our real ticketing app at https://wix.com/wixanswers and grab some ideas from there ;) It should involve adding something to the UI, or server (or both!). A good rule of thumb for the effort here is that it should not exceed the time that it took you to perform Part 2.
Please describe the feature you've added on your email back to us

Note: this step is also mandatory.

General notes

  • Test your work well. Think of edge cases. Think of how users will use it, and make sure your work is of high quality
  • Stick to the best practices of the libraries used as much as possible
  • This task involves both client and server code. Regardless of bonuses and part 3, in the end you should have touched both areas. If you haven't - you probably are not covering all our requirements.
  • If you have any questions regarding the task itself or its environment, feel free to ask in the exam's e-mail. For general coding / technology questions, please consult stack overflow, forums and other sources of your choice.

Submitting

  1. Replace yours@email.com with your real email address in the meta.txt file.
  2. Delete any node_modules directory from the project.
  3. Zip the root directory (entry-level-exam) to a file called entry-level-exam_{yourname}.zip and send it back to the email you got from us.
  4. You can describe your extra touch (part 3), and any general notes you may have. Can be anything from challenges to something you feel was not done perfect, to something you're specially proud of.

good luck

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published