import type { PropsWithChildren } from 'react'; import { useMemo } from 'react'; import DataProvider from '../DataProvider'; import type { DataProviderApi } from '../api'; import { HsdsApi } from './hsds-api'; interface Props { url: string; username: string; password: string; filepath: string; fileExt:string; // filepath: string[]; // fileExt:string[]; // fileIndex:number getExportURL?: DataProviderApi['getExportURL']; } function HsdsProvider(props: PropsWithChildren) { const { url, username, password, filepath,fileExt, getExportURL, children } = props; const api = useMemo( () => new HsdsApi(url, username, password, filepath,fileExt ,getExportURL), [filepath, password, url, username,fileExt, getExportURL] ); return {children}; } export default HsdsProvider;