thingsboard/ui-ngx/src/app/shared/components/image/upload-image-dialog.component.ts

173 lines
6.1 KiB
TypeScript
Raw Normal View History

2023-11-21 11:27:37 +02:00
///
2024-01-09 10:46:16 +02:00
/// Copyright © 2016-2024 The Thingsboard Authors
2023-11-21 11:27:37 +02: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.
///
2024-12-19 11:38:26 +02:00
import { Component, DestroyRef, Inject, OnInit, SkipSelf } from '@angular/core';
2023-11-21 11:27:37 +02:00
import { ErrorStateMatcher } from '@angular/material/core';
2023-11-21 14:08:52 +02:00
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
import { Store } from '@ngrx/store';
2023-11-21 11:27:37 +02:00
import { AppState } from '@core/core.state';
import {
FormGroupDirective,
NgForm,
UntypedFormBuilder,
UntypedFormControl,
UntypedFormGroup,
Validators
} from '@angular/forms';
import { DialogComponent } from '@shared/components/dialog.component';
import { Router } from '@angular/router';
import { ImageService } from '@core/http/image.service';
2024-05-09 18:56:31 +03:00
import { ImageResource, ImageResourceInfo, imageResourceType, ResourceSubType } from '@shared/models/resource.models';
import { getCurrentAuthState } from '@core/auth/auth.selectors';
import { forkJoin } from 'rxjs';
2024-05-09 20:38:41 +03:00
import { blobToBase64, blobToText, updateFileContent } from '@core/utils';
import {
emptyMetadata,
ScadaSymbolMetadata,
parseScadaSymbolMetadataFromContent,
updateScadaSymbolMetadataInContent
} from '@home/components/widget/lib/scada/scada-symbol.models';
2024-12-19 11:38:26 +02:00
import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
2023-11-21 14:08:52 +02:00
export interface UploadImageDialogData {
2024-05-09 18:56:31 +03:00
imageSubType: ResourceSubType;
2023-11-21 14:08:52 +02:00
image?: ImageResourceInfo;
}
2023-11-21 11:27:37 +02:00
export interface UploadImageDialogResult {
image?: ImageResource;
scadaSymbolContent?: string;
}
2023-11-21 11:27:37 +02:00
@Component({
selector: 'tb-upload-image-dialog',
templateUrl: './upload-image-dialog.component.html',
providers: [{provide: ErrorStateMatcher, useExisting: UploadImageDialogComponent}],
styleUrls: []
})
export class UploadImageDialogComponent extends
DialogComponent<UploadImageDialogComponent, UploadImageDialogResult> implements OnInit, ErrorStateMatcher {
2023-11-21 11:27:37 +02:00
uploadImageFormGroup: UntypedFormGroup;
2023-11-21 14:08:52 +02:00
uploadImage = true;
2023-11-21 11:27:37 +02:00
submitted = false;
maxResourceSize = getCurrentAuthState(this.store).maxResourceSize;
2024-05-09 18:56:31 +03:00
get isScada() {
return this.data.imageSubType === ResourceSubType.SCADA_SYMBOL;
2024-05-09 18:56:31 +03:00
}
private scadaSymbolContent: string;
private scadaSymbolMetadata: ScadaSymbolMetadata;
2024-05-09 20:38:41 +03:00
2023-11-21 11:27:37 +02:00
constructor(protected store: Store<AppState>,
protected router: Router,
private imageService: ImageService,
2023-11-21 14:08:52 +02:00
@Inject(MAT_DIALOG_DATA) public data: UploadImageDialogData,
2023-11-21 11:27:37 +02:00
@SkipSelf() private errorStateMatcher: ErrorStateMatcher,
public dialogRef: MatDialogRef<UploadImageDialogComponent, UploadImageDialogResult>,
2024-12-19 11:38:26 +02:00
public fb: UntypedFormBuilder,
private destroyRef: DestroyRef) {
2023-11-21 11:27:37 +02:00
super(store, router, dialogRef);
}
ngOnInit(): void {
2023-11-21 14:08:52 +02:00
this.uploadImage = !this.data?.image;
2023-11-21 11:27:37 +02:00
this.uploadImageFormGroup = this.fb.group({
2023-11-21 14:08:52 +02:00
file: [this.data?.image?.link, [Validators.required]]
2023-11-21 11:27:37 +02:00
});
2023-11-21 14:08:52 +02:00
if (this.uploadImage) {
this.uploadImageFormGroup.addControl('title', this.fb.control(null, [Validators.required]));
2024-05-09 20:38:41 +03:00
if (this.isScada) {
2024-12-19 11:38:26 +02:00
this.uploadImageFormGroup.get('file').valueChanges.pipe(
takeUntilDestroyed(this.destroyRef)
).subscribe((file: File) => {
2024-05-09 20:38:41 +03:00
if (file) {
blobToText(file).subscribe(content => {
this.scadaSymbolContent = content;
this.scadaSymbolMetadata = parseScadaSymbolMetadataFromContent(this.scadaSymbolContent);
2024-05-09 20:38:41 +03:00
const titleControl = this.uploadImageFormGroup.get('title');
if (this.scadaSymbolMetadata.title && (!titleControl.value || !titleControl.touched)) {
titleControl.setValue(this.scadaSymbolMetadata.title);
2024-05-09 20:38:41 +03:00
}
});
}
});
}
2023-11-21 14:08:52 +02:00
}
2023-11-21 11:27:37 +02:00
}
imageFileNameChanged(fileName: string) {
2023-11-21 14:08:52 +02:00
if (this.uploadImage) {
const titleControl = this.uploadImageFormGroup.get('title');
if (!titleControl.value || !titleControl.touched) {
titleControl.setValue(fileName);
}
2023-11-21 11:27:37 +02:00
}
}
isErrorState(control: UntypedFormControl | null, form: FormGroupDirective | NgForm | null): boolean {
const originalErrorState = this.errorStateMatcher.isErrorState(control, form);
const customErrorState = !!(control && control.invalid && this.submitted);
return originalErrorState || customErrorState;
}
cancel(): void {
2023-11-21 14:08:52 +02:00
this.dialogRef.close(null);
2023-11-21 11:27:37 +02:00
}
upload(): void {
this.submitted = true;
2024-05-09 20:38:41 +03:00
let file: File = this.uploadImageFormGroup.get('file').value;
2023-11-21 14:08:52 +02:00
if (this.uploadImage) {
const title: string = this.uploadImageFormGroup.get('title').value;
2024-05-09 20:38:41 +03:00
if (this.isScada) {
if (!this.scadaSymbolMetadata) {
this.scadaSymbolMetadata = emptyMetadata();
2024-05-09 20:38:41 +03:00
}
if (this.scadaSymbolMetadata.title !== title) {
this.scadaSymbolMetadata.title = title;
2024-05-09 20:38:41 +03:00
}
const newContent = updateScadaSymbolMetadataInContent(this.scadaSymbolContent, this.scadaSymbolMetadata);
2024-05-09 20:38:41 +03:00
file = updateFileContent(file, newContent);
}
forkJoin([
2024-05-09 18:56:31 +03:00
this.imageService.uploadImage(file, title, this.data.imageSubType),
blobToBase64(file)
]).subscribe(([imageInfo, base64]) => {
this.dialogRef.close({image: Object.assign(imageInfo, {base64})});
});
2023-11-21 14:08:52 +02:00
} else {
if (this.isScada) {
blobToText(file).subscribe(scadaSymbolContent => {
this.dialogRef.close({scadaSymbolContent});
});
} else {
const image = this.data.image;
forkJoin([
this.imageService.updateImage(imageResourceType(image), image.resourceKey, file),
blobToBase64(file)
]).subscribe(([imageInfo, base64]) => {
this.dialogRef.close({image:Object.assign(imageInfo, {base64})});
});
}
2023-11-21 14:08:52 +02:00
}
2023-11-21 11:27:37 +02:00
}
}