mirror of
https://github.com/LBRYFoundation/lbry-android.git
synced 2025-08-23 17:47:28 +00:00
91 lines
2.7 KiB
JavaScript
91 lines
2.7 KiB
JavaScript
import React from 'react';
|
|
import { NativeModules, Text, View, TouchableOpacity } from 'react-native';
|
|
import fileDownloadButtonStyle from '../../styles/fileDownloadButton';
|
|
|
|
class FileDownloadButton extends React.PureComponent {
|
|
componentDidMount() {
|
|
const { costInfo, fetchCostInfo, uri } = this.props;
|
|
if (costInfo === undefined) {
|
|
fetchCostInfo(uri);
|
|
}
|
|
}
|
|
|
|
componentWillReceiveProps(nextProps) {
|
|
//this.checkAvailability(nextProps.uri);
|
|
this.restartDownload(nextProps);
|
|
}
|
|
|
|
restartDownload(props) {
|
|
const { downloading, fileInfo, uri, restartDownload } = props;
|
|
|
|
if (
|
|
!downloading &&
|
|
fileInfo &&
|
|
!fileInfo.completed &&
|
|
fileInfo.written_bytes !== false &&
|
|
fileInfo.written_bytes < fileInfo.total_bytes
|
|
) {
|
|
restartDownload(uri, fileInfo.outpoint);
|
|
}
|
|
}
|
|
|
|
render() {
|
|
const {
|
|
fileInfo,
|
|
downloading,
|
|
uri,
|
|
purchaseUri,
|
|
costInfo,
|
|
isPlayable,
|
|
onPlay,
|
|
loading,
|
|
doPause,
|
|
style,
|
|
openFile
|
|
} = this.props;
|
|
|
|
if (loading || downloading) {
|
|
const progress =
|
|
fileInfo && fileInfo.written_bytes ? fileInfo.written_bytes / fileInfo.total_bytes * 100 : 0,
|
|
label = fileInfo ? progress.toFixed(0) + '% complete' : 'Connecting...';
|
|
|
|
return (
|
|
<View style={[style, fileDownloadButtonStyle.container]}>
|
|
<View style={{ width: `${progress}%`, backgroundColor: '#ff0000', position: 'absolute', left: 0, top: 0 }}></View>
|
|
<Text style={fileDownloadButtonStyle.text}>{label}</Text>
|
|
</View>
|
|
);
|
|
} else if (fileInfo === null && !downloading) {
|
|
if (!costInfo) {
|
|
return (
|
|
<View style={[style, fileDownloadButtonStyle.container]}>
|
|
<Text style={fileDownloadButtonStyle.text}>Fetching cost info...</Text>
|
|
</View>
|
|
);
|
|
}
|
|
return (
|
|
<TouchableOpacity style={[style, fileDownloadButtonStyle.container]} onPress={() => {
|
|
if (NativeModules.Mixpanel) {
|
|
NativeModules.Mixpanel.track('Purchase Uri', { Uri: uri });
|
|
}
|
|
purchaseUri(uri);
|
|
if (isPlayable && onPlay) {
|
|
this.props.onPlay();
|
|
}
|
|
}}>
|
|
<Text style={fileDownloadButtonStyle.text}>{isPlayable ? 'Play' : 'Download'}</Text>
|
|
</TouchableOpacity>
|
|
);
|
|
} else if (fileInfo && fileInfo.download_path) {
|
|
return (
|
|
<TouchableOpacity style={[style, fileDownloadButtonStyle.container]} onPress={openFile}>
|
|
<Text style={fileDownloadButtonStyle.text}>Open</Text>
|
|
</TouchableOpacity>
|
|
);
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export default FileDownloadButton;
|