Aplicación moderna de tareas tipo Kanban construida con Angular 17, Angular Material y Drag & Drop para mover tareas entre columnas (To Do, In Progress, Done). Integrada con backend (API REST) para persistencia de tareas por usuario.
- [✔️] Angular 17 Standalone
- [✔️] Angular Material (UI)
- [✔️] RxJS
- [✔️] DragDropModule (CDK)
- [✔️] Animaciones con Angular Animations
- [✔️] Formulario reactivo
- [✔️] HttpClient + Router
GET /users/:email→ busca usuarioPOST /users→ crea usuarioGET /tasks/:userId→ carga tareasPOST /tasks→ crea tareaPUT /tasks/:taskId→ actualizaDELETE /tasks/:taskId→ elimina
LoginComponent: pantalla de inicio por emailTaskBoardComponent: Kanban completo con drag and dropTaskCardComponent: visualización de tarea individualTaskFormComponent: modal/form para crear o editarTaskService: conecta con backend RESTAuthService: login + creación de usuarioAuthGuard: protege la ruta de tareas
src/
├── auth/
│ ├── login.component.ts
│ ├── login.component.html
│ ├── login.component.scss
│ ├── auth.service.ts
│ └── auth.guard.ts
├── tasks/
│ ├── task-board.component.ts
│ ├── task-board.component.html
│ ├── task-board.component.scss
│ ├── task-card.component.ts
│ ├── task-card.component.html
│ ├── task-card.component.scss
│ ├── task-form.component.ts
│ ├── task-form.component.html
│ ├── task-form.component.scss
│ ├── task.service.ts
│ └── task-filter.pipe.ts
├── models/
│ └── task.model.ts
└── app.routes.ts
- 🔐 Login por email (crea usuario si no existe)
- 🧠 Carga de tareas por usuario
- ➕ Crear tareas desde cualquier columna
- ✏️ Editar tarea en modal
- 🗑️ Eliminar tarea
- 🔄 Drag and drop para mover entre columnas
- ✔️ Marcar como completada (mueve automáticamente a
Done) - 🔎 Búsqueda en tiempo real por título o descripción
- 🌙 UI moderna y responsive
- 🔒 Protección con
AuthGuardpara/tasks - 📦 Persiste con backend REST
# Clona el repositorio
git clone https://github.com/tu-usuario/todo-kanban-app.git
cd todo-kanban-app
# Instala dependencias
npm install
# Ejecuta el frontend
ng serve
ng test
- ✅ TaskService: CRUD de tareas
- ✅ TaskBoardComponent: lógica de UI básica
- ✅ AuthService: login y creación
- ✅ AuthGuard: protección de rutas
Once the server is running, open your browser and navigate to http://localhost:4200/. The application will automatically reload whenever you modify any of the source files.
Angular CLI includes powerful code scaffolding tools. To generate a new component, run:
ng generate component component-nameFor a complete list of available schematics (such as components, directives, or pipes), run:
ng generate --helpTo build the project run:
ng buildThis will compile your project and store the build artifacts in the dist/ directory. By default, the production build optimizes your application for performance and speed.
To execute unit tests with the Karma test runner, use the following command:
ng testFor end-to-end (e2e) testing, run:
ng e2eAngular CLI does not come with an end-to-end testing framework by default. You can choose one that suits your needs.
For more information on using the Angular CLI, including detailed command references, visit the Angular CLI Overview and Command Reference page.