Server IP : 80.87.202.40 / Your IP : 216.73.216.169 Web Server : Apache System : Linux rospirotorg.ru 5.14.0-539.el9.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Dec 5 22:26:13 UTC 2024 x86_64 User : bitrix ( 600) PHP Version : 8.2.27 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/bitrix/ext_www/rospirotorg.ru/bitrix/js/ui/stepprocessing/src/fields/ |
Upload File : |
// @flow import { Tag, Loc } from 'main.core'; import type { OptionsField } from '../process-types'; import { BaseField } from './base-field'; import { DialogStyle } from '../dialog'; export class FileField extends BaseField { type: string = 'file'; className: string = DialogStyle.ProcessOptionFile; constructor(options: OptionsField) { if (!('emptyMessage' in options)) { options.emptyMessage = Loc.getMessage('UI_STEP_PROCESSING_FILE_EMPTY_ERROR'); } super(options); } setValue(value: File | FileList) { this.value = value; if (this.field) { if (value instanceof FileList) { this.field.files = value; } else if (value instanceof File) { this.field.files[0] = value; } } return this; } getValue(): ?File { if (this.field && this.disabled !== true) { if (typeof(this.field.files[0]) != "undefined") { this.value = this.field.files[0]; } } return this.value; } isFilled(): boolean { if (this.field) { if (typeof(this.field.files[0]) != "undefined") { return true; } } return false; } render(): HTMLElement { if (!this.field) { this.field = Tag.render`<input type="file" id="${this.id}" name="${this.name}">`; } return this.field; } lock(flag: boolean = true) { this.disabled = flag; this.field.disabled = !!flag; return this; } }