// @flow import React from 'react'; import { Modal } from 'modal/modal'; import { formatFileSystemPath } from 'util/url'; // @if TARGET='app' import { shell } from 'electron'; // @endif type Props = { uri: string, isTrusted: boolean, path: string, isMine: boolean, closeModal: () => void, }; function ModalOpenExternalResource(props: Props) { const { uri, isTrusted, path, isMine, closeModal } = props; if ((uri && isTrusted) || (path && isMine)) { openResource(); } function openResource() { // @if TARGET='app' const { openExternal, openItem, showItemInFolder } = shell; if (uri) { openExternal(uri); } else if (path) { const success = openItem(path); if (!success) { showItemInFolder(path); } } // @endif // @if TARGET='web' if (uri) { window.open(uri); } else if (path) { window.open(formatFileSystemPath(path)); } // @endif closeModal(); } return ( openResource()} onAborted={closeModal} >

{(uri && __('This link leads to an external website.')) || (path && __('This file has been shared with you by other people.'))}

{uri || path}

{__('LBRY Inc is not responsible for its content, click continue to proceed at your own risk.')}

); } export default ModalOpenExternalResource;