thingsboard/ui-ngx/src/app/modules/home/components/profile/queue/tenant-profile-queues.component.html

56 lines
2.1 KiB
HTML
Raw Normal View History

2022-04-29 19:18:11 +03:00
<!--
2024-01-09 10:46:16 +02:00
Copyright © 2016-2024 The Thingsboard Authors
2022-04-29 19:18:11 +03:00
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">
2022-05-25 18:45:00 +03:00
<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">
2022-06-01 19:14:09 +03:00
<mat-expansion-panel-header>
<div class="flex flex-1 flex-row items-center justify-start">
2022-06-01 19:14:09 +03:00
<mat-panel-title>
{{ getTitle(queuesControl.value.name) }}
2022-06-01 19:14:09 +03:00
</mat-panel-title>
<span class="flex-1"></span>
2022-06-01 19:14:09 +03:00
<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>
2022-06-01 19:14:09 +03:00
</ng-template>
</mat-expansion-panel>
2022-04-29 19:18:11 +03:00
</div>
2022-05-05 11:02:45 +03:00
<div *ngIf="!queuesFormArray.controls.length">
<span translate
class="tb-prompt flex items-center justify-center">tenant-profile.no-queue</span>
2022-04-29 19:18:11 +03:00
</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>