Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | 10x 10x 10x 10x 10x 10x 10x 10x | import { ChangeDetectionStrategy, ChangeDetectorRef, Component } from '@angular/core';
import { ReactiveFormsModule } from '@angular/forms';
import { FieldType, FieldTypeConfig, FormlyAttributes, FormlyConfig } from '@ngx-formly/core';
import { isString } from 'lodash-es';
import { AdminService } from '../service/admin.service';
import { Saving } from '../store/submit';
import { AudioUploadComponent } from './audio-upload/audio-upload.component';
import { getErrorMessage } from './errors';
import { ImageUploadComponent } from './image-upload/image-upload.component';
import { PdfUploadComponent } from './pdf-upload/pdf-upload.component';
import { QrScannerComponent } from './qr-scanner/qr-scanner.component';
import { VideoUploadComponent } from './video-upload/video-upload.component';
@Component({
selector: 'formly-field-input',
host: { 'class': 'field' },
template: `
<div class="form-array">
@if (uploading) {
<progress class="grow" max="100" [value]="progress"></progress>
} @else if (type !== 'number') {
<input class="grow"
(blur)="blur($any($event.target))"
[type]="type"
[formControl]="formControl"
[formlyAttributes]="field"
[class.is-invalid]="showError"
[class.cleared]="props.clear && !field.formControl.value">
} @else {
<input type="number"
class="grow"
(blur)="blur($any($event.target))"
[formControl]="formControl"
[formlyAttributes]="field"
[class.is-invalid]="showError">
}
@if (props.clear) { <button type="button" (click)="field.formControl!.setValue(null)" i18n-title title="Clear" i18n>��️</button> }
@if (field.type === 'qr') { <app-qr-scanner (data)="$event && field.formControl!.setValue($event)"></app-qr-scanner> }
@if (files) {
@if (field.type === 'pdf') { <app-pdf-upload (data)="onUpload($event)"></app-pdf-upload> }
@if (field.type === 'audio') { <app-audio-upload (data)="onUpload($event)"></app-audio-upload> }
@if (field.type === 'video') { <app-video-upload (data)="onUpload($event)"></app-video-upload> }
@if (field.type === 'image') { <app-image-upload (data)="onUpload($event)"></app-image-upload> }
}
</div>
`,
changeDetection: ChangeDetectionStrategy.OnPush,
imports: [
ReactiveFormsModule,
QrScannerComponent,
PdfUploadComponent,
AudioUploadComponent,
VideoUploadComponent,
ImageUploadComponent,
FormlyAttributes,
],
})
export class FormlyFieldInputI extends FieldType<FieldTypeConfig> {
progress?: number;
uploading = false;
files = !!this.admin.getPlugin('plugin/file');
private showedError = false;
constructor(
private config: FormlyConfig,
private admin: AdminService,
private cd: ChangeDetectorRef,
) {
super();
}
/**
* Overrides the <input> type. Not related to the formly field type.
*
* https://developer.mozilla.org/en-US/docs/Web/HTML/Element/input#input_types
*/
get type() {
return this.props.type || 'text';
}
validate(input: HTMLInputElement) {
if (this.showError) {
input.setCustomValidity(getErrorMessage(this.field, this.config));
input.reportValidity();
}
}
blur(input: HTMLInputElement) {
if (this.showError && !this.showedError) {
this.showedError = true;
this.validate(input);
} else {
this.showedError = false;
}
}
onUpload(event?: Saving | string) {
if (!event) {
this.uploading = false;
} else if (isString(event)) {
// TODO set error
} else if (event.url) {
this.uploading = false;
this.field.formControl!.setValue(event.url);
} else {
this.uploading = true;
this.progress = event.progress || undefined;
}
this.cd.detectChanges();
}
}
|