Skip to content
Snippets Groups Projects
Commit e5d7cbea authored by Lukas Mauß's avatar Lukas Mauß
Browse files

Fix visibility of status icons in participant comment

parent 6d8484c1
4 merge requests!171SWTP Comment Project,!170Fix linter in pipe,!169WebSocket Connector,!168Filter comment list
...@@ -5,20 +5,20 @@ ...@@ -5,20 +5,20 @@
<p (click)="openPresentDialog(comment.body)">{{comment.body}}</p> <p (click)="openPresentDialog(comment.body)">{{comment.body}}</p>
</mat-card-content> </mat-card-content>
<span class="fill-remaining-space"></span> <span class="fill-remaining-space"></span>
<button mat-icon-button [disabled]="isCreator" (click)="setCorrect(comment)" [matTooltip]="comment.correct ? 'Unmark as correct' : 'Mark as correct'"> <button mat-icon-button *ngIf="comment.correct || !isStudent" [disabled]="isStudent" (click)="setCorrect(comment)" [matTooltip]="comment.correct ? 'Unmark as correct' : 'Mark as correct'">
<mat-icon [ngClass]="{'correct-icon' : comment.correct === true}">check_circle</mat-icon> <mat-icon [ngClass]="{true : 'correct-icon', false: 'incorrect-icon'}[comment.correct]">check_circle</mat-icon>
</button> </button>
<button mat-icon-button [disabled]="isCreator" (click)="setFavorite(comment)" [matTooltip]="comment.favorite ? 'Mark as not favorite' : 'Mark as favorite'"> <button mat-icon-button *ngIf="comment.favorite || !isStudent" [disabled]="isStudent" (click)="setFavorite(comment)" [matTooltip]="comment.favorite ? 'Mark as not favorite' : 'Mark as favorite'">
<mat-icon [ngClass]="{'favorite-icon' : comment.favorite === true}">star</mat-icon> <mat-icon [ngClass]="{true: 'favorite-icon', false: 'not-favorite-icon'}[comment.favorite]">star</mat-icon>
</button> </button>
<button mat-icon-button [disabled]="isCreator" (click)="setRead(comment)" [matTooltip]="comment.read ? 'Mark as unread' : 'Mark as read'"> <button mat-icon-button [disabled]="isStudent" (click)="setRead(comment)" [matTooltip]="comment.read ? 'Mark as unread' : 'Mark as read'">
<mat-icon [ngClass]="{'read-icon' : comment.read === true}">visibility</mat-icon> <mat-icon [ngClass]="{true: 'read-icon', false: 'unread-icon'}[comment.read]">visibility</mat-icon>
</button> </button>
<button mat-icon-button [disabled]="!isCreator" (click)="voteUp(comment)"> <button mat-icon-button [disabled]="!isStudent" (click)="voteUp(comment)">
<mat-icon>keyboard_arrow_up</mat-icon> <mat-icon>keyboard_arrow_up</mat-icon>
</button> </button>
<h4>{{comment.score}}</h4> <h4>{{comment.score}}</h4>
<button mat-icon-button [disabled]="!isCreator" (click)="voteDown(comment)"> <button mat-icon-button [disabled]="!isStudent" (click)="voteDown(comment)">
<mat-icon>keyboard_arrow_down</mat-icon> <mat-icon>keyboard_arrow_down</mat-icon>
</button> </button>
</div> </div>
......
...@@ -14,22 +14,30 @@ mat-toolbar { ...@@ -14,22 +14,30 @@ mat-toolbar {
background-color: #bbdefb; background-color: #bbdefb;
} }
mat-icon { .incorrect-icon {
color: white; color: #c8e6c9;
} }
.correct-icon { .correct-icon {
color: green; color: #66bb6a;
} }
.read-icon { .read-icon {
color: blue; color: #1e88e5;
}
.unread-icon {
color: #e3f2fd;
} }
.favorite-icon { .favorite-icon {
color: #fdd835; color: #fdd835;
} }
.not-favorite-icon {
color: #fffde7;
}
.proffesor-icon { .proffesor-icon {
background-size: cover; background-size: cover;
margin-right: 10px; margin-right: 10px;
......
...@@ -18,7 +18,7 @@ import { MatDialog } from '@angular/material'; ...@@ -18,7 +18,7 @@ import { MatDialog } from '@angular/material';
}) })
export class CommentComponent implements OnInit { export class CommentComponent implements OnInit {
@Input() comment: Comment; @Input() comment: Comment;
isCreator = false; isStudent = false;
isLoading = true; isLoading = true;
constructor(protected authenticationService: AuthenticationService, constructor(protected authenticationService: AuthenticationService,
...@@ -34,7 +34,7 @@ export class CommentComponent implements OnInit { ...@@ -34,7 +34,7 @@ export class CommentComponent implements OnInit {
ngOnInit() { ngOnInit() {
if (this.authenticationService.getRole() === 0) { if (this.authenticationService.getRole() === 0) {
this.isCreator = true; this.isStudent = true;
} }
this.translateService.use(localStorage.getItem('currentLang')); this.translateService.use(localStorage.getItem('currentLang'));
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment