Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.