
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
@idot-digital/file-selector
Advanced tools
Upload, delete, filter, and select files, using Material UI's framework
Upload, delete, filter, and select files, using Material UI's framework
npm install --save @idot-digital/file-selector
yarn add @idot-digital/file-selector
import React, { Component } from 'react';
import { createTheme, ThemeProvider } from '@material-ui/core';
import { SnackbarProvider } from 'notistack';
import { FileSelector, FileSelectorRaw, FileResponse, FileSelectorLinkSettings } from '@idot-digital/file-selector';
// Wrap ThemeProvider from Material UI around your app -- ability to tweak initial styles
// Wrap SnackbarProvider around your app -- ability to enqueue snackbars
const Index = () => {
return (
<ThemeProvider theme={createTheme()}>
<SnackbarProvider preventDuplicate maxSnack={3}>
<App />
</SnackbarProvider>
</ThemeProvider>
);
};
const App = () => {
const [open, setOpen] = React.useState(false);
const [files, setFiles] = React.useState<string[]>([]); // Currently selected files (paths)
return (
<>
<div onClick={() => setOpen(true)}>Open</div>
<FileSelector
// Fetch settings
links={{
get: {
url: 'URL for specific request',
method: 'Method for specific request',
settings: {
// Custom settings only for "get"
},
},
rename: {
//Settings as in get
},
delete: {
//Settings as in get
},
upload: {
//Settings as in get
},
// Next applies to all requests
settings: {
// General settings
},
url: 'General api URL',
root: 'Root image URL',
}}
// Callback functions
callback={(file) => console.log(file)}
callbackDone={(files) => {
console.log(files);
setFiles(files.map((file) => file.path));
setOpen(false);
}}
// Controlled prop to manage currently selected files
pickedFiles={files}
// Change link of previewed images in order to fetch low res variants
previewImage={(filePath) => filePath.replace('...', '...')}
// Material UI default dialog props
open={open}
onClose={() => setOpen(false)}
// Custom props
fullWidth
maxWidth="xl"
/>
</>
);
};
UNLICENSED © @idot-digital
FAQs
Upload, delete, filter, and select files, using Material UI's framework
We found that @idot-digital/file-selector demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.