thingsboard/ui-ngx/src/app/modules/home/components/dashboard-page/layout/manage-dashboard-layouts-dialog.component.html

173 lines
7.6 KiB
HTML
Raw Normal View History

<!--
2022-01-17 14:07:46 +02:00
Copyright © 2016-2022 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.
-->
<form [formGroup]="layoutsFormGroup" (ngSubmit)="save()">
<mat-toolbar color="primary">
<h2 translate>layout.manage</h2>
<span fxFlex></span>
<button mat-button mat-icon-button
(click)="cancel()"
type="button">
<mat-icon class="material-icons">close</mat-icon>
</button>
</mat-toolbar>
2022-07-27 13:56:11 +03:00
<div mat-dialog-content fxLayout="column" fxLayoutGap="8px" style="min-width: 300px;">
<div fxLayout="row" fxLayoutAlign="start center" fxLayoutGap="8px">
<mat-checkbox fxFlex formControlName="main">
{{ (layoutsFormGroup.value.right ? 'layout.left' : 'layout.main') | translate }}
</mat-checkbox>
<mat-checkbox fxFlex formControlName="right">
{{ 'layout.right' | translate }}
</mat-checkbox>
</div>
<div fxLayout="column" fxLayoutGap="8px">
<div fxLayout="row" fxLayoutAlign="start center" fxLayoutGap="2%">
<button fxFlex="{{buttonFlexValue()}}"
type="button"
mat-raised-button
color="primary"
class="tb-layout-button"
(click)="openLayoutSettings('main')"
>
<span >{{ (layoutsFormGroup.value.right ? 'layout.left' : 'layout.main') | translate }}</span>
</button>
<button fxFlex
[fxShow]="layoutsFormGroup.get('right').value"
type="button"
mat-raised-button
color="primary"
class="tb-layout-button"
(click)="openLayoutSettings('right')">
<span >{{ 'layout.right' | translate }}</span>
</button>
</div>
2022-07-27 13:56:11 +03:00
<div fxLayout="column" fxLayoutGap="8px" [fxShow]="layoutsFormGroup.get('right').value">
<mat-button-toggle-group aria-label="Select width value type"
formControlName="type">
<mat-button-toggle fxFlex value="percentage">
{{ 'layout.percentage-width' | translate }}
</mat-button-toggle>
<mat-button-toggle fxFlex value="fixed">
{{ 'layout.fixed-width' | translate }}
</mat-button-toggle>
</mat-button-toggle-group>
<div [fxShow]="layoutsFormGroup.get('type').value === LayoutWidthType.PERCENTAGE">
<mat-slider min="10"
step="1"
max="90"
style="width: 100%;"
formControlName="sliderPercentage"
thumbLabel
[displayWith]="formatSliderTooltipLabel">
</mat-slider>
<div fxLayout="row" fxLayoutGap="8px">
<mat-form-field fxFlex class="mat-block">
<mat-label>{{ 'layout.left-width' | translate }}</mat-label>
<input matInput
formControlName="leftWidthPercentage"
type="number"
step="1"
min="10"
max="90">
<mat-error *ngIf="layoutsFormGroup.get('leftWidthPercentage').hasError('required')">
{{ 'layout.left-width-percentage-required' | translate }}
</mat-error>
<mat-error *ngIf="layoutsFormGroup.get('leftWidthPercentage').hasError('max')">
{{ 'layout.value-max-error' | translate: { max: 90 } }}
</mat-error>
<mat-error *ngIf="layoutsFormGroup.get('leftWidthPercentage').hasError('min')">
{{ 'layout.value-min-error' | translate: { min: 10 } }}
</mat-error>
</mat-form-field>
<mat-form-field fxFlex class="mat-block">
<mat-label>{{ 'layout.right-width' | translate }}</mat-label>
<input matInput
formControlName="rightWidthPercentage"
type="number"
step="1"
min="10"
max="90">
<mat-error *ngIf="layoutsFormGroup.get('rightWidthPercentage').hasError('required')">
{{ 'layout.right-width-percentage-required' | translate }}
</mat-error>
<mat-error *ngIf="layoutsFormGroup.get('rightWidthPercentage').hasError('max')">
{{ 'layout.value-max-error' | translate: { max: 90 } }}
</mat-error>
<mat-error *ngIf="layoutsFormGroup.get('rightWidthPercentage').hasError('min')">
{{ 'layout.value-min-error' | translate: { min: 10 } }}
</mat-error>
</mat-form-field>
2022-04-05 13:56:44 +03:00
</div>
2022-07-27 13:56:11 +03:00
<label [fxShow]="layoutsFormGroup.get('leftWidthPercentage').valid && layoutsFormGroup.get('rightWidthPercentage').valid" class="tb-hint tb-hint-group">
{{'layout.layout-min-max' | translate: { min: 10, max: 90, units: "%" } }}
</label>
</div>
<div [fxShow]="layoutsFormGroup.get('type').value === LayoutWidthType.FIXED">
<div fxLayout="row" fxLayoutAlign="start center" fxLayoutGap="8px" class="tb-layout-fixed-container">
<label>{{ 'layout.pick-fixed-side' | translate }}</label>
<mat-radio-group aria-label="Select side"
formControlName="fixedLayout"
fxLayout="row"
fxLayoutGap="8px">
<mat-radio-button value="main">
{{ 'layout.left' | translate }}
</mat-radio-button>
<mat-radio-button value="right">
{{ 'layout.right' | translate }}
</mat-radio-button>
</mat-radio-group>
2022-04-05 13:56:44 +03:00
</div>
2022-07-27 13:56:11 +03:00
<mat-form-field fxFlex class="mat-block" style="min-width: 368px;">
<mat-label>{{ 'layout.layout-fixed-width' | translate }}</mat-label>
<input matInput
formControlName="fixedWidth"
type="number"
step="1"
min="150"
max="1700">
<mat-hint>
{{ 'layout.layout-min-max' | translate: {min: 150, max: 1700, units: "px" } }}
</mat-hint>
<mat-error *ngIf="layoutsFormGroup.get('fixedWidth').hasError('required')">
{{ 'layout.layout-fixed-width-required' | translate }}
</mat-error>
<mat-error *ngIf="layoutsFormGroup.get('fixedWidth').hasError('max')">
{{ 'layout.value-max-error' | translate: { max: 1700 } }}
</mat-error>
<mat-error *ngIf="layoutsFormGroup.get('fixedWidth').hasError('min')">
{{ 'layout.value-min-error' | translate: { min: 150 } }}
</mat-error>
</mat-form-field>
2022-04-05 13:56:44 +03:00
</div>
</div>
2022-07-27 13:56:11 +03:00
</div>
</div>
<div mat-dialog-actions fxLayoutAlign="end center">
<button mat-button
color="primary"
type="button"
(click)="cancel()" cdkFocusInitial>
{{ 'action.cancel' | translate }}
</button>
2020-10-14 12:32:07 +03:00
<button mat-raised-button color="primary"
type="submit"
2022-07-27 13:56:11 +03:00
[disabled]="layoutsFormGroup.invalid || !layoutsFormGroup.dirty">
2020-10-14 12:32:07 +03:00
{{ 'action.save' | translate }}
</button>
</div>
</form>