
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
react-file-reader-input
Advanced tools
React file input component for complete control over styling and abstraction from file reading.
React file input component for complete control over styling and abstraction from file reading.
buffer
, binary
, url
, text
). Defaults
to url
.children
. Whenever the custom children
are
clicked, the component will trigger the native file input prompt. This
allows complete control over styling an display.function(event, results)
.
Results will be an array of arrays, the size of which depending on how many
files were selected. Each result will be an array of two items:
result[0]
is a
ProgressEvent
object. You can retrieve the raw results at
progressEvent.target.result
among other things.result[1]
is a
File object. You can
retrieve the file name at file.name
among other things.All other props on FileReaderInput
will be passed down to the native file
input.
import React from 'react';
import FileReaderInput from 'react-file-reader-input';
class MyComponent extends React.Component {
handleChange = (e, results) => {
results.forEach(result => {
const [e, file] = result;
this.props.dispatch(uploadFile(e.target.result));
console.log(`Successfully uploaded ${file.name}!`);
});
}
render() {
return (
<form>
<label htmlFor="my-file-input">Upload a File:</label>
<FileReaderInput as="binary" id="my-file-input"
onChange={this.handleChange}>
<button>Select a file!</button>
</FileReaderInput>
</form>
);
}
}
FAQs
React file input component for complete control over styling and abstraction from file reading.
The npm package react-file-reader-input receives a total of 815 weekly downloads. As such, react-file-reader-input popularity was classified as not popular.
We found that react-file-reader-input demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.