Skip to content

hertonwork/testing-app

Repository files navigation

Front-end Developer Testing Project

The goal of this project is to create a "Task Manager" web application with Vue.js and Laravel as the backend API.

Requirements

  • User should be able to view a list of tasks in a table (display task name, description, and status).
  • User should be able to click on a task to view more information about it (additional info such as task deadline, priority, etc.) on a modal in the same page.
  • User should be able to "take on" a task by clicking an action button in the table row. This should update the task's status to "In Progress".
  • User should be able to update a task's information and status ("In Progress", "Completed", etc.).
  • User should be able to mark a task as "Complete" with an action button on the task view.

Specifics

  • Implement the front-end using Vue.js. You can use other libraries or frameworks (like - Bootstrap or Tailwind CSS) for styling, but the interactive elements should primarily be implemented with Vue.js.
  • Implement the back-end API using Laravel. The API should support operations to create, read, update, and delete (CRUD) tasks.
  • For the purpose of this project, you can use a local SQLite database, or another database of your choice. You should use Laravel's Eloquent ORM for database operations.
  • You can use dummy data for the task list.
  • The project should include error handling. For example, it should handle the case where a request to the Laravel API fails.
  • Include instructions on how to set up and run your project.

Using this project

If you'd like to use this as the starting point, you can remove the boilerplate and install what you need. The focus should remain on the front-end task. You can also check Laravel Documentation on how to get starte with Laravel

To use this project you can clone this repo and start the application setup, make sure you have PHP/composer and Docker installed:

  • Bring the laravel helper (npm and tests) containers up with sail up -d
  • Run composer install To install dependencies
  • Run ./vendor/bin/sail npm install To use the npm from the default docker provided by Laravel Sail
  • Run php artisan migrate To initialize the sqlite database
  • Run php artisan serve To run the application and access on http://localhost:8000/
  • Run ./vendor/bin/sail npm run dev To build and watch for changes

What We're Looking For

  • Code quality: Your code should be well-organized and readable, with comments where necessary.
  • Understanding of Vue.js: You should use Vue.js features effectively, including components, directives, and props.
  • Understanding of asynchronous JavaScript: You should use async/await, promises, or callbacks appropriately to handle asynchronous operations, like requests to the Laravel API.
  • Error handling: Your application should handle potential errors gracefully.
  • User experience: The application should be easy to use and navigate.

Submission

Please submit a link to a GitHub repository containing your project. The repository should include all code for the project, as well as a README with setup and run instructions.

About

Simple test app boilerplate

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published