52 lines
1.6 KiB
TypeScript
52 lines
1.6 KiB
TypeScript
// Copyright 2021-2022 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
// This has to be the first import because of monkey-patching
|
|
import '../shims';
|
|
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import { contextBridge, ipcRenderer } from 'electron';
|
|
|
|
import { SignalContext } from '../context';
|
|
import { DebugLogWindow } from '../../components/DebugLogWindow';
|
|
import * as debugLog from '../../logging/debuglogs';
|
|
import { upload } from '../../logging/uploadDebugLog';
|
|
import * as logger from '../../logging/log';
|
|
|
|
contextBridge.exposeInMainWorld('SignalContext', {
|
|
...SignalContext,
|
|
renderWindow: () => {
|
|
const environmentText: Array<string> = [SignalContext.getEnvironment()];
|
|
|
|
const appInstance = SignalContext.getAppInstance();
|
|
if (appInstance) {
|
|
environmentText.push(appInstance);
|
|
}
|
|
|
|
ReactDOM.render(
|
|
React.createElement(DebugLogWindow, {
|
|
hasCustomTitleBar: SignalContext.OS.hasCustomTitleBar(),
|
|
executeMenuRole: SignalContext.executeMenuRole,
|
|
closeWindow: () => SignalContext.executeMenuRole('close'),
|
|
downloadLog: (logText: string) =>
|
|
ipcRenderer.send('show-debug-log-save-dialog', logText),
|
|
i18n: SignalContext.i18n,
|
|
fetchLogs() {
|
|
return debugLog.fetch(
|
|
SignalContext.getNodeVersion(),
|
|
SignalContext.getVersion()
|
|
);
|
|
},
|
|
uploadLogs(logs: string) {
|
|
return upload({
|
|
content: logs,
|
|
appVersion: SignalContext.getVersion(),
|
|
logger,
|
|
});
|
|
},
|
|
}),
|
|
document.getElementById('app')
|
|
);
|
|
},
|
|
});
|