lbry-desktop/ui/modal/modalOpenExternalResource/view.jsx

68 lines
1.6 KiB
React
Raw Normal View History

2019-05-12 16:51:22 +02:00
// @flow
import React from 'react';
import { Modal } from 'modal/modal';
import { formatFileSystemPath } from 'util/url';
2019-05-12 16:51:22 +02:00
// @if TARGET='app'
import { shell } from 'electron';
// @endif
type Props = {
uri: string,
isTrusted: boolean,
2019-05-12 16:51:22 +02:00
path: string,
isMine: boolean,
2019-05-12 16:51:22 +02:00
closeModal: () => void,
};
function ModalOpenExternalResource(props: Props) {
const { uri, isTrusted, path, isMine, closeModal } = props;
if ((uri && isTrusted) || (path && isMine)) {
openResource();
}
function openResource() {
2019-05-12 16:51:22 +02:00
// @if TARGET='app'
const { openExternal, openItem, showItemInFolder } = shell;
if (uri) {
openExternal(uri);
2019-05-12 19:59:57 +02:00
} else if (path) {
2019-05-12 16:51:22 +02:00
const success = openItem(path);
if (!success) {
showItemInFolder(path);
}
}
// @endif
// @if TARGET='web'
if (uri) {
window.open(uri);
} else if (path) {
window.open(formatFileSystemPath(path));
2019-05-12 16:51:22 +02:00
}
// @endif
closeModal();
}
return (
<Modal
isOpen
title={__('Warning!')}
contentLabel={__('Confirm External Resource')}
type="confirm"
confirmButtonLabel={__('Continue')}
onConfirmed={() => openResource()}
onAborted={closeModal}
>
2019-07-21 23:31:22 +02:00
<p>
{(uri && __('This link leads to an external website.')) ||
(path && __('This file has been shared with you by other people.'))}
</p>
<blockquote>{uri || path}</blockquote>
<p>{__('LBRY Inc is not responsible for its content, click continue to proceed at your own risk.')}</p>
</Modal>
);
2019-05-12 16:51:22 +02:00
}
export default ModalOpenExternalResource;