95 lines
4.3 KiB
HTML
95 lines
4.3 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="tb-details-buttons xs:flex xs:flex-col" *ngIf="!standalone">
|
|
<button mat-raised-button color="primary"
|
|
[disabled]="(isLoading$ | async)"
|
|
(click)="onEntityAction($event, 'open')"
|
|
[class.!hidden]="isEdit || isDetailsPage">
|
|
{{'common.open-details-page' | translate }}
|
|
</button>
|
|
<button mat-raised-button color="primary"
|
|
[disabled]="(isLoading$ | async)"
|
|
(click)="onEntityAction($event, 'downloadResource')"
|
|
[class.!hidden]="isEdit">
|
|
{{ 'resource.download' | translate }}
|
|
</button>
|
|
<button mat-raised-button color="primary"
|
|
[disabled]="(isLoading$ | async)"
|
|
(click)="onEntityAction($event, 'deleteResource')"
|
|
[class.!hidden]="hideDelete() || isEdit">
|
|
{{ 'resource.delete' | translate }}
|
|
</button>
|
|
<div class="flex flex-row xs:flex-col">
|
|
<button mat-raised-button
|
|
ngxClipboard
|
|
(cbOnSuccess)="onResourceIdCopied()"
|
|
[cbContent]="entity?.id?.id"
|
|
[class.!hidden]="isEdit">
|
|
<mat-icon svgIcon="mdi:clipboard-arrow-left"></mat-icon>
|
|
<span translate>resource.copyId</span>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<div class="mat-padding flex flex-col">
|
|
<form [formGroup]="entityForm">
|
|
<fieldset [disabled]="(isLoading$ | async) || !isEdit">
|
|
<mat-form-field class="mat-block">
|
|
<mat-label translate>resource.resource-type</mat-label>
|
|
<mat-select formControlName="resourceType" required>
|
|
<mat-option *ngFor="let resourceType of resourceTypes" [value]="resourceType">
|
|
{{ resourceTypesTranslationMap.get(resourceType) | translate }}
|
|
</mat-option>
|
|
</mat-select>
|
|
</mat-form-field>
|
|
<mat-form-field class="mat-block" *ngIf="entityForm.get('resourceType').value !== resourceType.LWM2M_MODEL || !isAdd">
|
|
<mat-label translate>resource.title</mat-label>
|
|
<input matInput formControlName="title" required>
|
|
<mat-error *ngIf="entityForm.get('title').hasError('required')">
|
|
{{ 'resource.title-required' | translate }}
|
|
</mat-error>
|
|
<mat-error *ngIf="entityForm.get('title').hasError('maxlength')">
|
|
{{ 'resource.title-max-length' | translate }}
|
|
</mat-error>
|
|
</mat-form-field>
|
|
@if (isAdd || ((isAdd || isEdit) && entityForm.get('resourceType').value === resourceType.GENERAL)) {
|
|
<tb-file-input formControlName="data"
|
|
required
|
|
label="{{ (entityForm.get('resourceType').value === resourceType.LWM2M_MODEL ? 'resource.resource-files' : 'resource.resource-file') | translate }}"
|
|
[readAsBinary]="true"
|
|
[maxSizeByte]="maxResourceSize"
|
|
[allowedExtensions]="getAllowedExtensions()"
|
|
[contentConvertFunction]="convertToBase64File"
|
|
[accept]="getAcceptType()"
|
|
[multipleFile]="entityForm.get('resourceType').value === resourceType.LWM2M_MODEL"
|
|
dropLabel="{{'resource.drop-resource-file-or' | translate}}"
|
|
[existingFileName]="entityForm.get('fileName')?.value"
|
|
(mediaTypeChanged)="mediaTypeChange($event)"
|
|
(fileNameChanged)="entityForm?.get('fileName').patchValue($event)">
|
|
</tb-file-input>
|
|
} @else {
|
|
<div class="flex flex-row xs:flex-col sm:gap-2 md:flex-col gt-md:gap-2">
|
|
<mat-form-field class="flex-1">
|
|
<mat-label translate>resource.file-name</mat-label>
|
|
<input matInput formControlName="fileName" type="text">
|
|
</mat-form-field>
|
|
</div>
|
|
}
|
|
</fieldset>
|
|
</form>
|
|
</div>
|