lbry-desktop/src/renderer/component/fileActions/view.jsx

52 lines
1.3 KiB
React
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
2018-06-20 05:55:25 +02:00
import * as React from 'react';
2018-03-26 23:32:43 +02:00
import Button from 'component/button';
import { MODALS } from 'lbry-redux';
import * as icons from 'constants/icons';
2018-06-20 05:55:25 +02:00
import Tooltip from 'component/common/tooltip';
2018-03-26 23:32:43 +02:00
type FileInfo = {
claim_id: string,
};
type Props = {
uri: string,
claimId: string,
openModal: ({ id: string }, { uri: string }) => void,
2018-03-26 23:32:43 +02:00
claimIsMine: boolean,
fileInfo: FileInfo,
};
class FileActions extends React.PureComponent<Props> {
render() {
2018-06-20 05:55:25 +02:00
const { fileInfo, uri, openModal, claimIsMine, claimId } = this.props;
2018-03-26 23:32:43 +02:00
const showDelete = fileInfo && Object.keys(fileInfo).length > 0;
return (
2018-06-20 05:55:25 +02:00
<React.Fragment>
2017-11-24 15:31:05 +01:00
{showDelete && (
2018-06-20 05:55:25 +02:00
<Tooltip onComponent body={__('Delete this file')}>
<Button
button="alt"
icon={icons.TRASH}
2018-06-20 05:55:25 +02:00
description={__('Delete')}
onClick={() => openModal({ id: MODALS.CONFIRM_FILE_REMOVE }, { uri })}
2018-06-20 05:55:25 +02:00
/>
</Tooltip>
2017-11-24 15:31:05 +01:00
)}
{!claimIsMine && (
2018-06-20 05:55:25 +02:00
<Tooltip onComponent body={__('Report content')}>
<Button
button="alt"
icon={icons.REPORT}
2018-06-20 05:55:25 +02:00
href={`https://lbry.io/dmca?claim_id=${claimId}`}
/>
</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;