kepler.gl
Version:
kepler.gl is a webgl based application to visualize large scale location data in the browser
37 lines (36 loc) • 1.65 kB
TypeScript
import React from 'react';
import { IntlShape } from 'react-intl';
import FileUploadFactory from '../common/file-uploader/file-upload';
import LoadStorageMapFactory from './load-storage-map';
import ModalTabsFactory from './modal-tabs';
import { FileLoading, FileLoadingProgress, LoadFiles } from '@kepler.gl/types';
export interface LoadingMethod {
id: string;
label: string;
elementType: React.ComponentType<any>;
tabElementType?: React.ComponentType<{
onClick: React.MouseEventHandler;
intl: IntlShape;
}>;
}
declare type LoadDataModalProps = {
onFileUpload: (files: File[]) => void;
onLoadCloudMap: (provider: any, vis: any) => void;
fileLoading: FileLoading | false;
loadingMethods?: LoadingMethod[];
/** A list of names of supported formats suitable to present to user */
fileFormatNames: string[];
/** A list of typically 3 letter extensions (without '.') for file matching */
fileExtensions: string[];
isCloudMapLoading: boolean;
/** Set to true if app wants to do its own file filtering */
disableExtensionFilter?: boolean;
onClose?: (...args: any) => any;
loadFiles: LoadFiles;
fileLoadingProgress: FileLoadingProgress;
};
export declare function LoadDataModalFactory(ModalTabs: ReturnType<typeof ModalTabsFactory>, FileUpload: ReturnType<typeof FileUploadFactory>, LoadStorageMap: ReturnType<typeof LoadStorageMapFactory>): React.FC<LoadDataModalProps>;
export declare namespace LoadDataModalFactory {
var deps: (typeof LoadStorageMapFactory | typeof ModalTabsFactory | typeof FileUploadFactory)[];
}
export default LoadDataModalFactory;