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

Add timestamp to bonus tokens

parent 64a560d4
No related merge requests found
......@@ -9,6 +9,10 @@
{{bonusToken.token}}
</p>
<span class="fill-remaining-space"></span>
<p>
{{bonusToken.timestamp | date: lang === 'de' ? 'dd.MM.yy' : ' M/d/yy'}}
</p>
<span class="fill-remaining-space"></span>
<button mat-icon-button (click)="openDeleteSingleBonusDialog(bonusToken.userId, bonusToken.commentId, i)">
<mat-icon>close</mat-icon>
</button>
......
......@@ -16,6 +16,7 @@ import { TranslateService } from '@ngx-translate/core';
export class BonusTokenComponent implements OnInit {
room: Room;
bonusTokens: BonusToken[] = [];
lang: string;
constructor(private bonusTokenService: BonusTokenService,
public dialog: MatDialog,
......@@ -30,6 +31,7 @@ export class BonusTokenComponent implements OnInit {
return (a.token > b.token) ? 1 : -1;
});
});
this.lang = localStorage.getItem('currentLang');
}
openDeleteSingleBonusDialog(userId: string, commentId: string, index: number): void {
......
export class BonusToken {
roomId: string;
commentId: string;
timestamp: Date;
userId: string;
token: string;
constructor(
roomId: string,
commentId: string,
timestamp: Date,
userId: string,
token: string
) {
this.roomId = roomId;
this.commentId = commentId;
this.timestamp = timestamp;
this.userId = userId;
this.token = token;
}
......
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