thingsboard/ui-ngx/src/app/modules/home/components/profile/queue/tenant-profile-queues.component.html
2025-02-25 09:39:16 +02:00

56 lines
2.1 KiB
HTML

<!--
Copyright © 2016-2025 The Thingsboard Authors
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<div class="flex flex-col">
<div class="tb-tenant-profile-queues"
*ngFor="let queuesControl of queuesFormArray.controls; trackBy: trackByQueue;
let $index = index; last as isLast;"
[class.pb-2]="!isLast">
<mat-expansion-panel class="flex-1" [expanded]="true">
<mat-expansion-panel-header>
<div class="flex flex-1 flex-row items-center justify-start">
<mat-panel-title>
{{ getTitle(queuesControl.value.name) }}
</mat-panel-title>
<span class="flex-1"></span>
<button *ngIf="!($index === 0) && !disabled" mat-icon-button style="min-width: 40px;"
type="button"
(click)="removeQueue($index)"
matTooltip="{{ 'action.remove' | translate }}"
matTooltipPosition="above">
<mat-icon>delete</mat-icon>
</button>
</div>
</mat-expansion-panel-header>
<ng-template matExpansionPanelContent>
<tb-queue-form [formControl]="queuesControl" [newQueue]="newQueue"></tb-queue-form>
</ng-template>
</mat-expansion-panel>
</div>
<div *ngIf="!queuesFormArray.controls.length">
<span translate
class="tb-prompt flex items-center justify-center">tenant-profile.no-queue</span>
</div>
<div *ngIf="!disabled" style="padding-top: 16px;">
<button mat-raised-button color="primary"
type="button"
(click)="addQueue()">
<span translate>tenant-profile.add-queue</span>
</button>
</div>
</div>