Létrehozunk egy newTask komponenst
ng g c tasks/new-task
Megcsináljuk hozzá a template-t:
<div class="backdrop"></div>
<dialog open>
<h2>Add Task</h2>
<form>
<p>
<label for="title">Title</label>
<input type="text" id="title" name="title" />
</p>
<p>
<label for="summary">Summary</label>
<textarea id="summary" rows="5" name="summary"></textarea>
</p>
<p>
<label for="due-date">Due Date</label>
<input type="date" id="due-date" name="due-date" />
</p>
<p class="actions">
<button type="button">Cancel</button>
<button type="submit">Create</button>
</p>
</form>
</dialog>
css-t hogy kinézzen valahogy:
.backdrop {
background-color: rgba(0, 0, 0, 0.9);
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
}
dialog {
width: 90%;
max-width: 30rem;
background-color: #433352;
border-radius: 6px;
border: none;
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
overflow: hidden;
padding: 1rem;
top: 5rem;
}
h2 {
margin: 0;
color: #d0c2e1;
}
label {
display: block;
font-weight: bold;
font-size: 0.85rem;
color: #ab9ac0;
}
input,
textarea {
width: 100%;
font: inherit;
padding: 0.15rem 0.25rem;
border-radius: 4px;
border: 1px solid #ab9ac0;
background-color: #d0c2e1;
}
.actions {
margin: 1rem 0 0;
display: flex;
justify-content: flex-end;
gap: 0.25rem;
}
button {
font: inherit;
cursor: pointer;
border: none;
padding: 0.35rem 1.25rem;
border-radius: 4px;
background-color: transparent;
}
button[type="button"] {
color: #bdadcf;
}
button[type="button"]:hover,
button[type="button"]:active {
color: #d0c2e1;
}
button[type="submit"] {
background-color: #9c73ca;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
}
button[type="submit"]:hover,
button[type="submit"]:active {
background-color: #895cce;
box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
dialog {
padding: 2rem;
}
}
A task komponensbe felveszünk egy új property-t és egy új metódust amit a template-be fogunk használni:
import {Component, Input} from '@angular/core';
import {TaskComponent} from './task/task.component';
import {NewTaskComponent} from './new-task/new-task.component';
@Component({
selector: 'app-tasks',
standalone: true,
imports: [
TaskComponent,
NewTaskComponent
],
templateUrl: './tasks.component.html',
styleUrl: './tasks.component.css'
})
export class TasksComponent {
.......
isAddingTask = false;
.......
.......
onStartAddTask() {
this.isAddingTask = true;
}
}
A task komponents kiegészítjük az új property használatával és a click event használatával:
@if (isAddingTask) {
<app-new-task />
}
<section>
<header>
<h2> {{ name }}'s Tasks</h2>
<menu>
<button (click)="onStartAddTask()">Add Task</button>
</menu>
</header>
<ul>
@for (task of selectedUserTasks; track task.id) {
<li>
<app-task [task]="task" (complete)="onCompleteTask($event)"/>
</li>
}
</ul>
</section>
Cancel megvalósítása cancel gomb és háttérre kattintással:
hozzáadjuk a onCancel metodust a gombhoz és a háttérhez a templateben a click eventhez rendelve:
<div class="backdrop" (click)="onCancel()"></div>
<dialog open>
<h2>Add Task</h2>
<form>
<p>
<label for="title">Title</label>
<input type="text" id="title" name="title" />
</p>
<p>
<label for="summary">Summary</label>
<textarea id="summary" rows="5" name="summary"></textarea>
</p>
<p>
<label for="due-date">Due Date</label>
<input type="date" id="due-date" name="due-date" />
</p>
<p class="actions">
<button type="button" (click)="onCancel()">Cancel</button>
<button type="submit">Create</button>
</p>
</form>
</dialog>
A new-task komponensben létrehozzuk az onCancel metódust és Output dekoratorral kiajánjuk emit-en keresztül (létrehozunk egy cancel eventet) paraméterek nélkül:
import {Component, EventEmitter, Output} from '@angular/core';
@Component({
selector: 'app-new-task',
standalone: true,
imports: [],
templateUrl: './new-task.component.html',
styleUrl: './new-task.component.css'
})
export class NewTaskComponent {
@Output() cancel = new EventEmitter<void>(); //nem kell parameter ezert void
onCancel() {
this.cancel.emit();
}
}
HOzzáadjuk a cancel eventet a tasks template-hez:
@if (isAddingTask) {
<app-new-task (cancel)="onCancelAddTask()" />
}
<section>
<header>
<h2> {{ name }}'s Tasks</h2>
<menu>
<button (click)="onStartAddTask()">Add Task</button>
</menu>
</header>
<ul>
@for (task of selectedUserTasks; track task.id) {
<li>
<app-task [task]="task" (complete)="onCompleteTask($event)"/>
</li>
}
</ul>
</section>
Megmondjuk a tasks komponensnek hogy ha meg van hívva a onCancelAddTask() metódus akkor az isAddingTask property-t állítsa false-ra, ez triggereli az angulart hogy tüntesse el a felületről a form-ot:
import {Component, Input} from '@angular/core';
import {TaskComponent} from './task/task.component';
import {NewTaskComponent} from './new-task/new-task.component';
.....
export class TasksComponent {
....
onCancelAddTask() {
this.isAddingTask = false; //el fogja távolítani az if miatt a <app-new-task> komponent!!!!
}
}