PromucFlow_constructor/app/client/src/widgets/FilepickerWidget.tsx

171 lines
4.7 KiB
TypeScript
Raw Normal View History

2019-11-05 05:09:50 +00:00
import * as React from "react";
import BaseWidget, { WidgetProps, WidgetState } from "./BaseWidget";
2019-11-25 05:07:27 +00:00
import { WidgetType } from "constants/WidgetConstants";
2019-11-05 05:09:50 +00:00
import Uppy from "@uppy/core";
import GoogleDrive from "@uppy/google-drive";
import Webcam from "@uppy/webcam";
import Url from "@uppy/url";
import OneDrive from "@uppy/onedrive";
2019-11-25 05:07:27 +00:00
import FilePickerComponent from "components/designSystems/appsmith/FilePickerComponent";
2019-11-22 13:12:39 +00:00
import { WidgetPropertyValidationType } from "utils/ValidationFactory";
import { VALIDATION_TYPES } from "constants/WidgetValidation";
import { EventType } from "constants/ActionConstants";
import { TriggerPropertiesMap } from "utils/WidgetFactory";
import Dashboard from "@uppy/dashboard";
2020-02-24 14:28:20 +00:00
import shallowequal from "shallowequal";
2019-11-05 05:09:50 +00:00
class FilePickerWidget extends BaseWidget<FilePickerWidgetProps, WidgetState> {
uppy: any;
constructor(props: FilePickerWidgetProps) {
super(props);
this.refreshUppy(props);
}
2019-11-22 13:12:39 +00:00
static getPropertyValidationMap(): WidgetPropertyValidationType {
return {
label: VALIDATION_TYPES.TEXT,
maxNumFiles: VALIDATION_TYPES.NUMBER,
allowedFileTypes: VALIDATION_TYPES.ARRAY,
};
}
2019-11-05 05:09:50 +00:00
refreshUppy = (props: FilePickerWidgetProps) => {
this.uppy = Uppy({
id: this.props.widgetId,
autoProceed: false,
2019-11-05 05:09:50 +00:00
allowMultipleUploads: true,
debug: false,
restrictions: {
maxFileSize: null,
maxNumberOfFiles: props.maxNumFiles,
minNumberOfFiles: null,
allowedFileTypes: props.allowedFileTypes,
},
})
.use(Dashboard, {
target: "body",
metaFields: [],
inline: false,
width: 750,
height: 550,
thumbnailWidth: 280,
showLinkToFileUploadResult: true,
showProgressDetails: false,
hideUploadButton: false,
hideProgressAfterFinish: false,
note: null,
closeAfterFinish: true,
closeModalOnClickOutside: true,
disableStatusBar: false,
disableInformer: false,
disableThumbnailGenerator: false,
disablePageScrollWhenModalOpen: true,
proudlyDisplayPoweredByUppy: false,
onRequestCloseModal: () => {
this.uppy.getPlugin("Dashboard").closeModal();
},
locale: {},
})
2019-11-05 05:09:50 +00:00
.use(GoogleDrive, { companionUrl: "https://companion.uppy.io" })
.use(Url, { companionUrl: "https://companion.uppy.io" })
.use(OneDrive, {
companionUrl: "https://companion.uppy.io/",
})
.use(Webcam, {
onBeforeSnapshot: () => Promise.resolve(),
countdown: false,
mirror: true,
facingMode: "user",
locale: {},
});
this.uppy.on("file-removed", (file: any) => {
const updatedFiles = this.props.files.filter(dslFile => {
return file.id !== dslFile.id;
});
this.updateWidgetMetaProperty("files", updatedFiles);
});
this.uppy.on("file-added", (file: any) => {
const dslFiles = this.props.files;
const reader = new FileReader();
reader.readAsDataURL(file.data);
reader.onloadend = () => {
const base64data = reader.result;
const newFile = {
id: file.id,
base64: base64data,
blob: file.data,
};
dslFiles.push(newFile);
this.updateWidgetMetaProperty("files", dslFiles);
};
});
this.uppy.on("upload", () => {
this.onFilesSelected();
});
2019-11-05 05:09:50 +00:00
};
static getTriggerPropertyMap(): TriggerPropertiesMap {
return {
onFilesSelected: true,
};
}
onFilesSelected() {
if (this.props.onFilesSelected) {
this.executeAction({
dynamicString: this.props.onFilesSelected,
event: {
type: EventType.ON_FILES_SELECTED,
},
});
}
}
2019-11-05 05:09:50 +00:00
componentDidUpdate(prevProps: FilePickerWidgetProps) {
super.componentDidUpdate(prevProps);
if (
2020-02-24 14:28:20 +00:00
!shallowequal(prevProps.allowedFileTypes, this.props.allowedFileTypes) ||
2019-11-05 05:09:50 +00:00
prevProps.maxNumFiles !== this.props.maxNumFiles
) {
this.refreshUppy(this.props);
}
}
componentDidMount() {
super.componentDidMount();
this.refreshUppy(this.props);
}
componentWillUnmount() {
this.uppy.close();
}
getPageView() {
return (
<FilePickerComponent
uppy={this.uppy}
widgetId={this.props.widgetId}
key={this.props.widgetId}
label={this.props.label}
files={this.props.files}
2019-12-03 04:41:10 +00:00
isLoading={this.props.isLoading}
2019-11-05 05:09:50 +00:00
/>
);
}
getWidgetType(): WidgetType {
return "FILE_PICKER_WIDGET";
}
}
export interface FilePickerWidgetProps extends WidgetProps {
label: string;
maxNumFiles?: number;
files: any[];
2019-11-05 05:09:50 +00:00
allowedFileTypes: string[];
onFilesSelected?: string;
2019-11-05 05:09:50 +00:00
}
export default FilePickerWidget;