Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thexro/taskmanager
Assigment
https://github.com/thexro/taskmanager
context-api css3 html localstorage reactjs tailwindcss vite
Last synced: 28 days ago
JSON representation
Assigment
- Host: GitHub
- URL: https://github.com/thexro/taskmanager
- Owner: TheXro
- Created: 2024-11-16T14:45:08.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-11-16T15:41:25.000Z (3 months ago)
- Last Synced: 2024-11-16T16:24:29.006Z (3 months ago)
- Topics: context-api, css3, html, localstorage, reactjs, tailwindcss, vite
- Language: JavaScript
- Homepage: https://task-manager-green-kappa.vercel.app
- Size: 69.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# **Task Manager Application**
A simple task management application built with React.
---
## **Features**
1. **Task Input:** Add tasks with a title.
2. **Task Deletion:** Delete tasks from the task list.
3. **Task Persistence:** Tasks are saved in local storage and persist across page reloads.
4. **Task Search:** Search for tasks by title or description using the search bar.
5. **Task Completion:** Mark tasks as completed by clicking on the title or status.
6. **Priority Setting:** Assign priority levels (e.g., High, Medium, Low) to tasks.
7. **Task Filtering:** Sort tasks based on priority.
8. **UI Animation:** Smooth and modern user interface animations.---
## **Tech Stack**
- **React:** Core library for building the user interface.
- **Context API:** For centralized state management.
- **Local Storage:** To persist tasks across page reloads.
- **TailwindCSS and CSS:** For styling the UI.---
## **Application Workflow**
1. **Adding Tasks:**
- Users can add tasks with a title, description and optionally assign a priority.
- Tasks are dynamically added to the list and saved in local storage.2. **Managing Tasks:**
- Tasks can be marked as Done and , searched by title or description and filtered by priority.
- Tasks priority can be changed by clicking on the priority button.
- Tasks can also be deleted, with changes instantly reflected in the local storage.3. **Data Persistence:**
- Tasks are saved in the local storage upon any changes, ensuring they remain available even after a page reload.---
## **Setup Instructions**
Clone the repository:
```
git clone https://github.com/TheXro/TaskManager
cd TaskManager
```
You should clone your own ForkInstall dependencies:
```
npm install
```
Start the development server:npm run dev
Open your browser at http://localhost:5173 to view the application.
---
## **Assumptions**
- **Data Persistence:** The application assumes that all tasks can be managed locally and does not require a backend for storage.
- **Task Format:** Each task has a title, an optional priority, and a status (completed/incomplete).
- **Filtering:** The "All" filter includes tasks of all priority levels, while other filters narrow down tasks by the selected priority.