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

43 lines
1.2 KiB
React
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
import * as MODALS from 'constants/modal_types';
import * as ICONS from 'constants/icons';
import React from 'react';
2018-03-26 23:32:43 +02:00
import Button from 'component/button';
2018-06-20 05:55:25 +02:00
import Tooltip from 'component/common/tooltip';
2018-03-26 23:32:43 +02:00
type Props = {
uri: string,
claimId: string,
openModal: (id: string, { uri: string }) => void,
2018-03-26 23:32:43 +02:00
claimIsMine: boolean,
2019-08-06 05:25:33 +02:00
fileInfo: FileListItem,
2018-03-26 23:32:43 +02:00
};
class FileActions extends React.PureComponent<Props> {
render() {
2019-08-02 23:03:26 +02:00
const { fileInfo, uri, openModal, claimIsMine, claimId } = this.props;
const showDelete = claimIsMine || (fileInfo && (fileInfo.written_bytes > 0 || fileInfo.blobs_completed > 0));
return (
2018-06-20 05:55:25 +02:00
<React.Fragment>
2017-11-24 15:31:05 +01:00
{showDelete && (
<Tooltip label={__('Remove from your library')}>
2018-06-20 05:55:25 +02:00
<Button
2019-11-22 22:13:00 +01:00
button="alt"
2019-01-22 21:36:28 +01:00
icon={ICONS.DELETE}
2018-06-20 05:55:25 +02:00
description={__('Delete')}
onClick={() => openModal(MODALS.CONFIRM_FILE_REMOVE, { uri })}
2018-06-20 05:55:25 +02:00
/>
</Tooltip>
2017-11-24 15:31:05 +01:00
)}
{!claimIsMine && (
<Tooltip label={__('Report content')}>
2019-11-22 22:13:00 +01:00
<Button button="alt" icon={ICONS.REPORT} href={`https://lbry.com/dmca/${claimId}`} />
2018-06-20 05:55:25 +02:00
</Tooltip>
2017-11-24 15:31:05 +01:00
)}
2018-06-20 05:55:25 +02:00
</React.Fragment>
);
}
}
2017-06-06 06:21:55 +02:00
export default FileActions;