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

113 lines
3.8 KiB
TypeScript
Raw Normal View History

2023-11-21 11:27:37 +02:00
///
/// Copyright © 2016-2023 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.
///
2023-11-21 14:08:52 +02:00
import { Component, 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';
2023-11-21 11:27:37 +02:00
import { Store } from '@ngrx/store';
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';
2023-11-21 14:08:52 +02:00
import { ImageResourceInfo, imageResourceType } from '@shared/models/resource.models';
export interface UploadImageDialogData {
image?: ImageResourceInfo;
}
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
2023-11-21 14:08:52 +02:00
DialogComponent<UploadImageDialogComponent, ImageResourceInfo> 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;
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,
2023-11-21 14:08:52 +02:00
public dialogRef: MatDialogRef<UploadImageDialogComponent, ImageResourceInfo>,
2023-11-21 11:27:37 +02:00
public fb: UntypedFormBuilder) {
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]));
}
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;
const 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;
this.imageService.uploadImage(file, title).subscribe(
(res) => {
this.dialogRef.close(res);
}
);
} else {
const image = this.data.image;
this.imageService.updateImage(imageResourceType(image), image.resourceKey, file).subscribe(
(res) => {
this.dialogRef.close(res);
}
);
}
2023-11-21 11:27:37 +02:00
}
}