mirror of
https://github.com/Tzahi12345/YoutubeDL-Material.git
synced 2026-03-27 23:20:56 +03:00
Updated templates to new Angular control flow
This commit is contained in:
@@ -1,12 +1,17 @@
|
||||
<div class="chat-container" #scrollContainer *ngIf="visible_chat">
|
||||
@if (visible_chat) {
|
||||
<div class="chat-container" #scrollContainer>
|
||||
<div style="width: 250px; text-align: center;"><strong>Twitch Chat</strong></div>
|
||||
<div #chat style="max-width: 250px" *ngFor="let chat of visible_chat; let last = last">
|
||||
@for (chat of visible_chat; track chat; let last = $last) {
|
||||
<div #chat style="max-width: 250px">
|
||||
{{chat.timestamp_str}} - <strong [style.color]="chat.user_color ? chat.user_color : null">{{chat.name}}</strong>: {{chat.message}}
|
||||
{{last ? scrollToBottom() : ''}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<ng-container *ngIf="chat_response_received && !full_chat">
|
||||
<button [disabled]="downloading_chat" (click)="downloadTwitchChat()" class="download-button" mat-raised-button color="accent"><ng-container i18n="Download Twitch Chat button">Download Twitch Chat</ng-container></button>
|
||||
<mat-spinner *ngIf="downloading_chat" class="downloading-spinner" [diameter]="30"></mat-spinner>
|
||||
</ng-container>
|
||||
</div>
|
||||
}
|
||||
</div>
|
||||
}
|
||||
@if (chat_response_received && !full_chat) {
|
||||
<button [disabled]="downloading_chat" (click)="downloadTwitchChat()" class="download-button" mat-raised-button color="accent"><ng-container i18n="Download Twitch Chat button">Download Twitch Chat</ng-container></button>
|
||||
@if (downloading_chat) {
|
||||
<mat-spinner class="downloading-spinner" [diameter]="30"></mat-spinner>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user