2e87b2fd22
Naomi
comment websockets
increase slow mode time to 5 seconds
fix to prevent duplicate comments
update livestream details
fix channel
pin electron boom
fix rebase
prune unused icons
updating meme
updating meme
update livestream for naomi
fix rebase
DigitalCashNetwork
remove electroboom pin
Slavguns
Joel
So he can edit his claims
add streamTypes param to claimTilesDiscover so following section can search for all types of content
fix typo
update meme
fixes
publish page fixes
pending
fix notifications
fix comments finally
fix claim preview
no mature for simplesite
Revert "no mature for simplesite"
This reverts commit 9f89242d85
.
fix livestream preview click
no mature on simple site
try fixing invite page crash
probably needs more changes.
100 lines
3.5 KiB
JavaScript
100 lines
3.5 KiB
JavaScript
// @flow
|
|
import React from 'react';
|
|
import { Modal } from 'modal/modal';
|
|
import { FormField } from 'component/common/form';
|
|
import Button from 'component/button';
|
|
import usePersistedState from 'effects/use-persisted-state';
|
|
import Card from 'component/common/card';
|
|
import I18nMessage from 'component/i18nMessage';
|
|
import LbcSymbol from 'component/common/lbc-symbol';
|
|
|
|
type Props = {
|
|
uri: string,
|
|
claim: StreamClaim,
|
|
claimIsMine: boolean,
|
|
closeModal: () => void,
|
|
deleteFile: (string, boolean, boolean) => void,
|
|
title: string,
|
|
fileInfo?: {
|
|
outpoint: ?string,
|
|
},
|
|
isAbandoning: boolean,
|
|
};
|
|
|
|
function ModalRemoveFile(props: Props) {
|
|
const { uri, claimIsMine, closeModal, deleteFile, title, claim, isAbandoning } = props;
|
|
const [deleteChecked, setDeleteChecked] = usePersistedState('modal-remove-file:delete', true);
|
|
const [abandonChecked, setAbandonChecked] = usePersistedState('modal-remove-file:abandon', true);
|
|
|
|
return (
|
|
<Modal isOpen contentLabel={__('Confirm File Remove')} type="card" onAborted={closeModal}>
|
|
<Card
|
|
title={__('Remove File')}
|
|
subtitle={
|
|
<I18nMessage tokens={{ title: <cite>{`"${title}"`}</cite> }}>
|
|
Are you sure you'd like to remove %title% from LBRY?
|
|
</I18nMessage>
|
|
}
|
|
body={
|
|
<React.Fragment>
|
|
{/* @if TARGET='app' */}
|
|
<FormField
|
|
name="file_delete"
|
|
label={__('Delete this file from my computer')}
|
|
type="checkbox"
|
|
checked={deleteChecked}
|
|
onChange={() => setDeleteChecked(!deleteChecked)}
|
|
/>
|
|
{/* @endif */}
|
|
|
|
{claimIsMine && (
|
|
<React.Fragment>
|
|
<FormField
|
|
name="claim_abandon"
|
|
label={
|
|
<I18nMessage tokens={{ lbc: <LbcSymbol postfix={claim.amount} /> }}>
|
|
Abandon on blockchain (reclaim %lbc%)
|
|
</I18nMessage>
|
|
}
|
|
type="checkbox"
|
|
checked={abandonChecked}
|
|
onChange={() => setAbandonChecked(!abandonChecked)}
|
|
/>
|
|
{abandonChecked === true && (
|
|
<p className="help error__text">{__('This action is permanent and cannot be undone.')}</p>
|
|
)}
|
|
|
|
{/* @if TARGET='app' */}
|
|
{abandonChecked === false && deleteChecked && (
|
|
<p className="help">{__('This file will be removed from your Library and Downloads folder.')}</p>
|
|
)}
|
|
{!deleteChecked && (
|
|
<p className="help">
|
|
{__('This file will be removed from your Library but will remain in your Downloads folder.')}
|
|
</p>
|
|
)}
|
|
{/* @endif */}
|
|
</React.Fragment>
|
|
)}
|
|
</React.Fragment>
|
|
}
|
|
actions={
|
|
<>
|
|
<div className="section__actions">
|
|
<Button
|
|
button="primary"
|
|
label={isAbandoning ? __('Removing...') : __('OK')}
|
|
disabled={isAbandoning}
|
|
onClick={() => deleteFile(uri, deleteChecked, claimIsMine ? abandonChecked : false)}
|
|
/>
|
|
<Button button="link" label={__('Cancel')} onClick={closeModal} />
|
|
</div>
|
|
<p className="help">{__('These changes will appear shortly.')}</p>
|
|
</>
|
|
}
|
|
/>
|
|
</Modal>
|
|
);
|
|
}
|
|
|
|
export default ModalRemoveFile;
|