lbry-desktop/ui/component/fileDownloadLink/view.jsx

119 lines
3 KiB
React
Raw Normal View History

2018-05-21 16:30:00 -04:00
// @flow
2018-11-25 20:21:25 -05:00
import * as ICONS from 'constants/icons';
import * as MODALS from 'constants/modal_types';
2020-02-01 16:17:20 -05:00
import React, { useState } from 'react';
2018-03-26 14:32:43 -07:00
import Button from 'component/button';
import { webDownloadClaim } from 'util/downloadClaim';
2017-09-07 23:15:05 -04:00
2018-05-21 16:30:00 -04:00
type Props = {
2019-08-05 23:25:33 -04:00
uri: string,
2020-01-07 13:17:43 -05:00
claim: StreamClaim,
claimIsMine: boolean,
2018-05-21 16:30:00 -04:00
downloading: boolean,
loading: boolean,
2021-07-15 15:14:21 -05:00
focusable: boolean,
2019-08-05 23:25:33 -04:00
fileInfo: ?FileListItem,
openModal: (id: string, { path: string }) => void,
pause: () => void,
download: (string) => void,
costInfo: ?{ cost: string },
buttonType: ?string,
showLabel: ?boolean,
2020-01-29 13:58:43 -05:00
hideOpenButton: boolean,
2020-02-04 21:54:19 -05:00
hideDownloadStatus: boolean,
2020-05-21 11:38:28 -04:00
streamingUrl: ?string,
2018-05-21 16:30:00 -04:00
};
2019-08-02 02:28:14 -04:00
function FileDownloadLink(props: Props) {
const {
fileInfo,
downloading,
loading,
openModal,
pause,
claimIsMine,
download,
uri,
claim,
2020-09-30 16:46:20 -04:00
buttonType,
2021-07-15 15:14:21 -05:00
focusable = true,
showLabel = false,
2020-01-29 13:58:43 -05:00
hideOpenButton = false,
2020-02-04 21:54:19 -05:00
hideDownloadStatus = false,
2020-05-21 11:38:28 -04:00
streamingUrl,
} = props;
2020-05-21 11:38:28 -04:00
const [didClickDownloadButton, setDidClickDownloadButton] = useState(false);
const fileName = claim && claim.value && claim.value.source && claim.value.source.name;
2020-02-01 16:17:20 -05:00
2020-06-08 16:26:49 -04:00
// @if TARGET='web'
2020-05-21 11:38:28 -04:00
React.useEffect(() => {
if (didClickDownloadButton && streamingUrl) {
webDownloadClaim(streamingUrl, fileName);
2020-05-21 11:38:28 -04:00
setDidClickDownloadButton(false);
}
2020-12-01 12:56:59 -05:00
}, [streamingUrl, didClickDownloadButton, fileName]);
2020-06-08 16:26:49 -04:00
// @endif
2017-09-07 23:15:05 -04:00
2020-01-29 13:58:43 -05:00
function handleDownload(e) {
2020-05-21 11:38:28 -04:00
setDidClickDownloadButton(true);
2020-02-01 16:17:20 -05:00
e.preventDefault();
download(uri);
}
2020-05-21 11:38:28 -04:00
if (!claim) {
return null;
}
// @if TARGET='app'
if (downloading || loading) {
if (hideDownloadStatus) {
return null;
}
2018-03-26 14:32:43 -07:00
if (fileInfo && fileInfo.written_bytes > 0) {
const progress = (fileInfo.written_bytes / fileInfo.total_bytes) * 100;
return <span className="download-text">{__('%percent%% downloaded', { percent: progress.toFixed(0) })}</span>;
} else {
return <span className="download-text">{__('Connecting...')}</span>;
}
2019-08-02 02:28:14 -04:00
}
2020-05-21 11:38:28 -04:00
// @endif
2017-09-07 23:15:05 -04:00
2019-08-02 02:28:14 -04:00
if (fileInfo && fileInfo.download_path && fileInfo.completed) {
const openLabel = __('Open file');
2020-01-29 13:58:43 -05:00
return hideOpenButton ? null : (
<Button
button={buttonType}
className={buttonType ? undefined : 'button--file-action'}
title={openLabel}
label={showLabel ? openLabel : null}
2020-01-29 13:58:43 -05:00
icon={ICONS.EXTERNAL}
onClick={() => {
pause();
openModal(MODALS.CONFIRM_EXTERNAL_RESOURCE, { path: fileInfo.download_path, isMine: claimIsMine });
}}
2021-07-15 15:14:21 -05:00
aria-hidden={!focusable}
tabIndex={focusable ? 0 : -1}
2020-01-29 13:58:43 -05:00
/>
2019-08-02 02:28:14 -04:00
);
2017-09-07 23:15:05 -04:00
}
2020-05-21 11:38:28 -04:00
const label = __('Download');
return (
2020-01-29 13:58:43 -05:00
<Button
button={buttonType}
2020-09-30 16:46:20 -04:00
className={buttonType ? undefined : 'button--file-action'}
title={label}
2020-01-29 13:58:43 -05:00
icon={ICONS.DOWNLOAD}
label={showLabel ? label : null}
2020-01-29 13:58:43 -05:00
onClick={handleDownload}
2021-07-15 15:14:21 -05:00
aria-hidden={!focusable}
tabIndex={focusable ? 0 : -1}
2020-01-29 13:58:43 -05:00
/>
);
2017-09-07 23:15:05 -04:00
}
export default FileDownloadLink;