import React, { Component, Fragment } from 'react'; import { saveAs } from 'file-saver/FileSaver'; import { client } from './FileSharing'; const saveFile = (file) => { file.getBlob((err, blob) => { if (err) { console.error('WebTorrent error'); return; } console.log('TRYING TO SAVE BLOB', blob) saveAs(blob, file.name); }); }; class FileChatEntry extends Component { state = { active: false, numPeers: 0, progress: 0, files: null }; download = () => { this.setState({ active: true }); client.add(this.props.message.file.magnet, (torrent) => { const onProgress = () => { this.setState({ numPeers: torrent.numPeers, progress: Math.round(torrent.progress * 100 * 100) / 100 }); }; setInterval(onProgress, 500); onProgress(); torrent.on('done', () => { onProgress(); clearInterval(onProgress); this.setState({ files: torrent.files }); }); }); } render() { return (
{this.state.active && (
peers: {this.state.numPeers} progress: {this.state.progress}
)} {this.state.files && (
{this.state.files.map((file, i) => (
))}
)}
); } } export default FileChatEntry;