2021-10-06 21:03:29 +03:00
|
|
|
<!--
|
|
|
|
|
|
|
|
|
|
Copyright © 2016-2021 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.
|
|
|
|
|
|
|
|
|
|
-->
|
2021-10-13 20:35:10 +03:00
|
|
|
<button #toggleHelpButton
|
|
|
|
|
*ngIf="!triggerText"
|
|
|
|
|
color="primary" mat-button mat-icon-button
|
|
|
|
|
class="tb-help-popup-button tb-mat-32"
|
|
|
|
|
type="button"
|
|
|
|
|
(click)="toggleHelp()"
|
|
|
|
|
matTooltip="{{'help.show-help' | translate}}"
|
|
|
|
|
matTooltipPosition="above">
|
|
|
|
|
<mat-icon class="material-icons">{{popoverVisible ? 'help' : 'help_outline'}}</mat-icon>
|
|
|
|
|
<mat-spinner *ngIf="popoverVisible && !popoverReady" class="tb-help-popup-button-loading" mode="indeterminate" diameter="20" strokeWidth="2"></mat-spinner>
|
|
|
|
|
</button>
|
|
|
|
|
<span #toggleHelpSpan
|
|
|
|
|
*ngIf="triggerText"
|
|
|
|
|
class="tb-help-popup-span"
|
|
|
|
|
(click)="toggleHelp()"
|
|
|
|
|
[ngClass]="{'active': popoverVisible, 'ready': popoverReady}">
|
|
|
|
|
<span>{{triggerText}}</span>
|
|
|
|
|
<mat-progress-bar *ngIf="popoverVisible && !popoverReady" color="primary" mode="indeterminate"></mat-progress-bar>
|
|
|
|
|
</span>
|