comments.component.html 816 Bytes
Newer Older
1 2 3
<div class="piece"
matTooltip="Permet de rajouter des commentaires sur une tuile"
matTooltipPosition="before" [matTooltipDisabled]="!tooltipService.activatedTooltips">
4 5
    <div class="piece-form">
        <div class="piece-form-title">Commentaires</div>
6

7
        <div class="piece-form-comments">
Romain DELEAU's avatar
Romain DELEAU committed
8
            <app-comment *ngFor="let comment of piece.comments, let i = index" [comment]="comment" [comments]="piece.comments" [index]="i"></app-comment>
9 10 11 12 13
        </div>

        <div class="piece-form-newcomment">
            <div class="piece-form-newcomment-form">
                <label>Nouveau commentaire</label>
Romain DELEAU's avatar
Romain DELEAU committed
14
                <textarea [(ngModel)]="newComment"></textarea>
15
            </div>
Romain DELEAU's avatar
Romain DELEAU committed
16
            <button mat-button (click)="addComment()">Ajouter un commentaire</button>
17 18 19
        </div>

    </div>
20
</div>