0.0.39 • Published 3 years ago
@gabrielcazacu96/file-viewer v0.0.39
file-viewer
Supported file formats:
- bmp
- csv
- docx
- gif
- jpeg
- jpg
- png
- xlsx
Install
# via npm
npm install @resolve_ch/file-viewer
FileViewer example
import React from 'react';
import ReactDOM from 'react-dom';
import FileViewer from '@resolve_ch/file-viewer';
class App extends React.Component {
render() {
return (
<FileViewer
filePath="https://upload.wikimedia.org/wikipedia/en/a/a9/Example.jpg"
</FileViewer>
);
}
}
ReactDOM.render(<App/>, document.body);
FileViewer props
{
// The url of the resource to be shown by the FileViewer.
filePath: string,
// Type of resource to be shown (one of the supported file formats, eg 'png').
// Passing in an unsupported file type will result in displaying an unsupported file type message (or a custom component).
// By default, the extension of the filePath is used to determine the fileType, but it can be overwritten using this prop.
fileType: string [optional]
// Can be used to extend the file-viwer or overwrite the existing drivers, eg: '{ mp4: VideoPlayerViewer }'
drivers: object [optional]
// Called when an error is thrown due to fetching or rendering problems
onError: function [optional]
// A component to render in case the file format is not supported.
UnsupportedComponent: ReactElement [optional]
// A component to render in case an error is thrown
ErrorComponent: ReactElement [optional]
}
Local development
There is a demo app built into this library that can be used for development purposes.
npm run dev
0.0.37
3 years ago
0.0.38
3 years ago
0.0.39
3 years ago
0.0.35
3 years ago
0.0.36
3 years ago
0.0.21
3 years ago
0.0.22
3 years ago
0.0.23
3 years ago
0.0.24
3 years ago
0.0.30
3 years ago
0.0.31
3 years ago
0.0.32
3 years ago
0.0.33
3 years ago
0.0.34
3 years ago
0.0.26
3 years ago
0.0.27
3 years ago
0.0.28
3 years ago
0.0.29
3 years ago
0.0.20
3 years ago
0.0.19
3 years ago
0.0.18
3 years ago
0.0.17
3 years ago
0.0.16
3 years ago
0.0.15
3 years ago
0.0.14
3 years ago
0.0.13
3 years ago
0.0.12
3 years ago
0.0.11
3 years ago
0.0.10
3 years ago
0.0.9
3 years ago
0.0.8
3 years ago
0.0.7
3 years ago
0.0.5
3 years ago
0.0.4
3 years ago
0.0.3
3 years ago
0.0.2
3 years ago
0.0.1
3 years ago