import React from 'react'; import Swal from 'sweetalert2'; import withReactContent from 'sweetalert2-react-content'; import i18n from 'i18next'; import { Trans } from 'react-i18next'; import CopyClipboardButton from './components/CopyClipboardButton'; import { isStoreBuild, isMasBuild, isWindowsStoreBuild } from './util'; const electron = window.require('electron'); // eslint-disable-line const os = window.require('os'); const ReactSwal = withReactContent(Swal); // eslint-disable-next-line import/prefer-default-export export function openSendReportDialog(err, state) { const reportInstructions = isStoreBuild ?

Please send an email to electron.shell.openExternal('mailto:losslesscut@mifi.no')}>losslesscut@mifi.no where you describe what you were doing.

:

Please create an issue at electron.shell.openExternal('https://github.com/mifi/lossless-cut/issues')}>https://github.com/mifi/lossless-cut/issues where you describe what you were doing.

; const platform = os.platform(); const version = electron.remote.app.getVersion(); const text = `${err ? err.stack : 'No error occurred.'}\n\n${JSON.stringify({ err: err && { code: err.code, killed: err.killed, failed: err.failed, timedOut: err.timedOut, isCanceled: err.isCanceled, exitCode: err.exitCode, signal: err.signal, signalDescription: err.signalDescription, }, state, platform, version, isWindowsStoreBuild, isMasBuild, }, null, 2)}`; ReactSwal.fire({ showCloseButton: true, title: i18n.t('Send problem report'), html: (
{reportInstructions}

Include the following text:

{text}
), }); }