1.0.0 • Published 6 years ago
use-object-url v1.0.0
useObjectURL
React Hook that receives an instance of File, Blob or MediaSource and creates an URL representing it. It releases URL when component unmount or parameter changes.
import useObjectURL from 'use-object-url';
const DownloadFileLink = ({ file, filename }) => {
const fileURL = useObjectURL(file);
return (
<a href={fileURL} target="_blank" download={filename}>
Download
</a>
);
};Installation
This library is published in the NPM registry and can be installed using any compatible package manager.
npm install use-object-url --save
# For Yarn, use the command below.
yarn add use-object-urlInstallation from CDN
This module has an UMD bundle available through JSDelivr and Unpkg CDNs.
<!-- For UNPKG use the code below. -->
<script src="https://unpkg.com/use-object-url"></script>
<!-- For JSDelivr use the code below. -->
<script src="https://cdn.jsdelivr.net/npm/use-object-url"></script>
<script>
function PreviewImage(props) {
// UMD module is exposed through the "useObjectURL" function.
var imageURL = useObjectURL(props.uploadedImage);
return React.createElement('img', {
src: imageURL,
alt: 'Uploaded image',
title: 'Preview of uploaded image.'
});
}
</script>Documentation
Documentation generated from source files by Typedoc.
License
Released under MIT License.
1.0.0
6 years ago