migrate about_start to not use jquery

pull/2242/head
Audric Ackermann 3 years ago
parent f164302617
commit 475c92eeb4
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -11,7 +11,7 @@
img-src 'self' blob: data:; img-src 'self' blob: data:;
media-src 'self' blob:; media-src 'self' blob:;
object-src 'none'; object-src 'none';
script-src 'self'; script-src 'self' 'unsafe-inline';
style-src 'self' 'unsafe-inline';" style-src 'self' 'unsafe-inline';"
/> />
<link href="stylesheets/manifest.css" rel="stylesheet" type="text/css" /> <link href="stylesheets/manifest.css" rel="stylesheet" type="text/css" />
@ -49,7 +49,8 @@
<a class="privacy" href="https://getsession.org/terms-of-service/">Terms of Service</a> <a class="privacy" href="https://getsession.org/terms-of-service/">Terms of Service</a>
</div> </div>
<script type="text/javascript" src="node_modules/jquery/dist/jquery.js"></script> <script type="text/javascript">
<script type="text/javascript" src="ts/start/about_start.js"></script> require('./ts/mains/about_start.js');
</script>
</body> </body>
</html> </html>

@ -8,9 +8,6 @@ const config = url.parse(window.location.toString(), true).query;
const { locale } = config; const { locale } = config;
const localeMessages = ipcRenderer.sendSync('locale-data'); const localeMessages = ipcRenderer.sendSync('locale-data');
global.dcodeIO = global.dcodeIO || {};
global.dcodeIO.ByteBuffer = require('bytebuffer');
window.getEnvironment = () => config.environment; window.getEnvironment = () => config.environment;
window.getVersion = () => config.version; window.getVersion = () => config.version;
window.getCommitHash = () => config.commitHash; window.getCommitHash = () => config.commitHash;

@ -11,15 +11,22 @@
img-src 'self' blob: data:; img-src 'self' blob: data:;
media-src 'self' blob:; media-src 'self' blob:;
object-src 'none'; object-src 'none';
script-src 'self'; script-src 'self' 'unsafe-inline';
style-src 'self' 'unsafe-inline';" style-src 'self' 'unsafe-inline';"
/> />
<link href="stylesheets/manifest.css" rel="stylesheet" type="text/css" /> <link href="stylesheets/manifest.css" rel="stylesheet" type="text/css" />
<style></style>
<script>
var exports = {};
</script>
</head> </head>
<body> <body>
<div id="root"></div> <div id="root"></div>
</body> </body>
<script>
<script type="text/javascript" src="js/debug_log_start.js"></script> var exports = {};
</script>
<script type="text/javascript">
require('./ts/mains/debug_log_start.js');
</script>
</html> </html>

@ -3,15 +3,10 @@
const { ipcRenderer } = require('electron'); const { ipcRenderer } = require('electron');
const url = require('url'); const url = require('url');
const i18n = require('./ts/util/i18n'); const i18n = require('./ts/util/i18n');
const { DebugLogView } = require('./ts/views/DebugLogView');
const config = url.parse(window.location.toString(), true).query; const config = url.parse(window.location.toString(), true).query;
const { locale } = config; const { locale } = config;
const localeMessages = ipcRenderer.sendSync('locale-data'); const localeMessages = ipcRenderer.sendSync('locale-data');
global.dcodeIO = global.dcodeIO || {};
global.dcodeIO.ByteBuffer = require('bytebuffer');
window._ = require('lodash'); window._ = require('lodash');
window.React = require('react'); window.React = require('react');
@ -35,7 +30,4 @@ window.getCommitHash = () => config.commitHash;
window.closeDebugLog = () => ipcRenderer.send('close-debug-log'); window.closeDebugLog = () => ipcRenderer.send('close-debug-log');
window.Views = {};
window.Views.DebugLogView = DebugLogView;
window.saveLog = logText => ipcRenderer.send('save-debug-log', logText); window.saveLog = logText => ipcRenderer.send('save-debug-log', logText);

@ -11,7 +11,7 @@
img-src 'self' blob: data:; img-src 'self' blob: data:;
media-src 'self' blob:; media-src 'self' blob:;
object-src 'none'; object-src 'none';
script-src 'self'; script-src 'self' 'unsafe-inline';
style-src 'self' 'unsafe-inline';" style-src 'self' 'unsafe-inline';"
/> />
<link href="stylesheets/manifest.css" rel="stylesheet" type="text/css" /> <link href="stylesheets/manifest.css" rel="stylesheet" type="text/css" />
@ -28,6 +28,8 @@
</div> </div>
</div> </div>
</div> </div>
<script type="text/javascript" src="js/password_start.js"></script> <script type="text/javascript">
require('./ts/mains/password_start.js');
</script>
</body> </body>
</html> </html>

@ -8,9 +8,6 @@ const config = url.parse(window.location.toString(), true).query;
const { locale } = config; const { locale } = config;
const localeMessages = ipcRenderer.sendSync('locale-data'); const localeMessages = ipcRenderer.sendSync('locale-data');
global.dcodeIO = global.dcodeIO || {};
global.dcodeIO.ByteBuffer = require('bytebuffer');
window.React = require('react'); window.React = require('react');
window.ReactDOM = require('react-dom'); window.ReactDOM = require('react-dom');

@ -15,9 +15,6 @@ if (config.appInstance) {
} }
// tslint:disable: no-require-imports no-var-requires // tslint:disable: no-require-imports no-var-requires
global.dcodeIO = global.dcodeIO || {};
global.dcodeIO.ByteBuffer = require('bytebuffer');
window.platform = process.platform; window.platform = process.platform;
window.getTitle = () => title; window.getTitle = () => title;
window.getEnvironment = () => configAny.environment; window.getEnvironment = () => configAny.environment;

@ -1,5 +1,8 @@
$onionPathLineColor: rgba(#7a7a7a, 0.6); $onionPathLineColor: rgba(#7a7a7a, 0.6);
#root {
height: 100%;
}
.subtle { .subtle {
opacity: $session-subtle-factor; opacity: $session-subtle-factor;
} }

@ -9,7 +9,6 @@ import {
hasSyncedInitialConfigurationItem, hasSyncedInitialConfigurationItem,
lastAvatarUploadTimestamp, lastAvatarUploadTimestamp,
removeConversation, removeConversation,
removeOneOpenGroupV1Message,
} from '../../data/data'; } from '../../data/data';
import { getMessageQueue } from '../../session/sending'; import { getMessageQueue } from '../../session/sending';
import { useDispatch, useSelector } from 'react-redux'; import { useDispatch, useSelector } from 'react-redux';
@ -192,16 +191,6 @@ const triggerSyncIfNeeded = async () => {
} }
}; };
const scheduleDeleteOpenGroupV1Messages = async () => {
const leftToRemove = await removeOneOpenGroupV1Message();
if (leftToRemove > 0) {
window?.log?.info(`We still have ${leftToRemove} opengroupv1 messages to remove...`);
setTimeout(scheduleDeleteOpenGroupV1Messages, 10000);
} else {
window?.log?.info('No more opengroupv1 messages to remove...');
}
};
const removeAllV1OpenGroups = async () => { const removeAllV1OpenGroups = async () => {
const allV1Convos = (await getAllOpenGroupV1Conversations()).models || []; const allV1Convos = (await getAllOpenGroupV1Conversations()).models || [];
// do not remove messages of opengroupv1 for now. We have to find a way of doing it without making the whole app extremely slow // do not remove messages of opengroupv1 for now. We have to find a way of doing it without making the whole app extremely slow
@ -222,8 +211,6 @@ const removeAllV1OpenGroups = async () => {
window.log.warn(`failed to delete opengroupv1 ${v1Convo.id}`, e); window.log.warn(`failed to delete opengroupv1 ${v1Convo.id}`, e);
} }
} }
setTimeout(scheduleDeleteOpenGroupV1Messages, 10000);
}; };
const triggerAvatarReUploadIfNeeded = async () => { const triggerAvatarReUploadIfNeeded = async () => {

@ -3,7 +3,11 @@ import React from 'react';
import { useDispatch, useSelector } from 'react-redux'; import { useDispatch, useSelector } from 'react-redux';
// tslint:disable-next-line: no-submodule-imports // tslint:disable-next-line: no-submodule-imports
import useUpdate from 'react-use/lib/useUpdate'; import useUpdate from 'react-use/lib/useUpdate';
import { createOrUpdateItem, hasLinkPreviewPopupBeenDisplayed } from '../../../data/data'; import {
createOrUpdateItem,
fillWithTestData,
hasLinkPreviewPopupBeenDisplayed,
} from '../../../data/data';
import { ToastUtils } from '../../../session/utils'; import { ToastUtils } from '../../../session/utils';
import { updateConfirmModal } from '../../../state/ducks/modalDialog'; import { updateConfirmModal } from '../../../state/ducks/modalDialog';
import { toggleAudioAutoplay } from '../../../state/ducks/userConfig'; import { toggleAudioAutoplay } from '../../../state/ducks/userConfig';

@ -3,15 +3,10 @@
import _ from 'lodash'; import _ from 'lodash';
import { MessageResultProps } from '../components/search/MessageSearchResults'; import { MessageResultProps } from '../components/search/MessageSearchResults';
import { import { ConversationCollection, ConversationModel } from '../models/conversation';
ConversationCollection,
ConversationModel,
ConversationTypeEnum,
} from '../models/conversation';
import { MessageCollection, MessageModel } from '../models/message'; import { MessageCollection, MessageModel } from '../models/message';
import { MessageAttributes, MessageDirection } from '../models/messageType'; import { MessageAttributes, MessageDirection } from '../models/messageType';
import { HexKeyPair } from '../receiver/keypairs'; import { HexKeyPair } from '../receiver/keypairs';
import { getConversationController } from '../session/conversations';
import { getSodiumRenderer } from '../session/crypto'; import { getSodiumRenderer } from '../session/crypto';
import { PubKey } from '../session/types'; import { PubKey } from '../session/types';
import { ReduxConversationType } from '../state/ducks/conversations'; import { ReduxConversationType } from '../state/ducks/conversations';

@ -89,7 +89,6 @@ const channelsToMake = new Set([
'getLatestClosedGroupEncryptionKeyPair', 'getLatestClosedGroupEncryptionKeyPair',
'addClosedGroupEncryptionKeyPair', 'addClosedGroupEncryptionKeyPair',
'removeAllClosedGroupEncryptionKeyPairs', 'removeAllClosedGroupEncryptionKeyPairs',
'removeOneOpenGroupV1Message',
'fillWithTestData', 'fillWithTestData',
...channelsToMakeForOpengroupV2, ...channelsToMakeForOpengroupV2,
]); ]);

@ -0,0 +1,29 @@
// Add version and commit hash
global.setTimeout(() => {
const version = document.getElementsByClassName('version').item(0);
const commit = document.getElementsByClassName('commitHash').item(0);
const environment = document.getElementsByClassName('environment').item(0);
// Add debugging metadata - environment if not production, app instance name
const states = [];
if (window.getEnvironment() !== 'production') {
states.push(window.getEnvironment());
}
if (window.getAppInstance()) {
states.push(window.getAppInstance());
}
if (version) {
version.innerHTML = `v${window.getVersion()}`;
}
if (commit) {
commit.innerHTML = window.getCommitHash() || '';
}
if (environment) {
environment.innerHTML = states.join(' - ');
}
}, 1000);

@ -13,4 +13,6 @@ import { DebugLogView } from '../views/DebugLogView';
// }); // });
// Whisper ? // Whisper ?
window.ReactDOM.render(<DebugLogView />, document.getElementById('root')); global.setTimeout(() => {
window.ReactDOM.render(<DebugLogView />, document.getElementById('root'));
}, 1000);

@ -28,7 +28,6 @@ import packageJson from '../../package.json'; // checked - only node
setupGlobalErrorHandler(); setupGlobalErrorHandler();
import electronLocalshortcut from 'electron-localshortcut'; import electronLocalshortcut from 'electron-localshortcut';
console;
// tslint:disable: no-console // tslint:disable: no-console
@ -493,13 +492,13 @@ async function showPasswordWindow() {
minHeight, minHeight,
autoHideMenuBar: false, autoHideMenuBar: false,
webPreferences: { webPreferences: {
nodeIntegration: false, nodeIntegration: true,
enableRemoteModule: true, enableRemoteModule: true,
nodeIntegrationInWorker: false, nodeIntegrationInWorker: false,
contextIsolation: false, contextIsolation: false,
// sandbox: true, // sandbox: true,
preload: path.join(__dirname, '..', 'password_preload.js'), preload: path.join(__dirname, '..', '..', 'password_preload.js'),
nativeWindowOpen: true, nativeWindowOpen: true,
}, },
// don't setup icon, the executable one will be used by default // don't setup icon, the executable one will be used by default
@ -507,7 +506,7 @@ async function showPasswordWindow() {
passwordWindow = new BrowserWindow(windowOptions); passwordWindow = new BrowserWindow(windowOptions);
await passwordWindow.loadURL(prepareURL([__dirname, 'password.html'])); await passwordWindow.loadURL(prepareURL([__dirname, '..', '..', 'password.html']));
captureClicks(passwordWindow); captureClicks(passwordWindow);
@ -560,17 +559,17 @@ async function showAbout() {
const options = { const options = {
width: 500, width: 500,
height: 400, height: 500,
resizable: false, resizable: true,
title: locale.messages.about, title: locale.messages.about,
autoHideMenuBar: true, autoHideMenuBar: true,
backgroundColor: '#000', backgroundColor: '#000',
show: false, show: false,
webPreferences: { webPreferences: {
nodeIntegration: false, nodeIntegration: true,
nodeIntegrationInWorker: false, nodeIntegrationInWorker: false,
contextIsolation: false, contextIsolation: false,
preload: path.join(__dirname, '..', 'about_preload.js'), preload: path.join(__dirname, '..', '..', 'about_preload.js'),
nativeWindowOpen: true, nativeWindowOpen: true,
}, },
parent: mainWindow, parent: mainWindow,
@ -580,7 +579,7 @@ async function showAbout() {
captureClicks(aboutWindow); captureClicks(aboutWindow);
await aboutWindow.loadURL(prepareURL([__dirname, 'about.html'])); await aboutWindow.loadURL(prepareURL([__dirname, '..', '..', 'about.html']));
aboutWindow.on('closed', () => { aboutWindow.on('closed', () => {
aboutWindow = null; aboutWindow = null;
@ -608,17 +607,17 @@ async function showDebugLogWindow() {
const options = { const options = {
width: Math.max(size[0] - 100, WINDOW_SIZE.minWidth), width: Math.max(size[0] - 100, WINDOW_SIZE.minWidth),
height: Math.max(size[1] - 100, WINDOW_SIZE.minHeight), height: Math.max(size[1] - 100, WINDOW_SIZE.minHeight),
resizable: false, resizable: true,
title: locale.messages.debugLog, title: locale.messages.debugLog,
autoHideMenuBar: true, autoHideMenuBar: true,
backgroundColor: '#000', backgroundColor: '#000',
show: false, show: false,
modal: true, modal: true,
webPreferences: { webPreferences: {
nodeIntegration: false, nodeIntegration: true,
nodeIntegrationInWorker: false, nodeIntegrationInWorker: false,
contextIsolation: false, contextIsolation: false,
preload: path.join(__dirname, '..', 'debug_log_preload.js'), preload: path.join(__dirname, '..', '..', 'debug_log_preload.js'),
nativeWindowOpen: true, nativeWindowOpen: true,
}, },
parent: mainWindow, parent: mainWindow,
@ -628,7 +627,7 @@ async function showDebugLogWindow() {
captureClicks(debugLogWindow); captureClicks(debugLogWindow);
await debugLogWindow.loadURL(prepareURL([__dirname, 'debug_log.html'], { theme })); await debugLogWindow.loadURL(prepareURL([__dirname, '..', '..', 'debug_log.html'], { theme }));
debugLogWindow.on('closed', () => { debugLogWindow.on('closed', () => {
debugLogWindow = null; debugLogWindow = null;

@ -31,6 +31,7 @@ if (environment === 'production') {
} }
// We load config after we've made our modifications to NODE_ENV // We load config after we've made our modifications to NODE_ENV
//tslint-disable no-require-imports no-var-requires
const c = require('config'); const c = require('config');
(c as any).environment = environment; (c as any).environment = environment;

@ -50,6 +50,7 @@ export async function encryptAttachmentBufferNode(
sodium.crypto_secretstream_xchacha20poly1305_TAG_FINAL sodium.crypto_secretstream_xchacha20poly1305_TAG_FINAL
); );
//tslint-disable restrict-plus-operands
const encryptedBufferWithHeader = new Uint8Array(bufferOut.length + header.length); const encryptedBufferWithHeader = new Uint8Array(bufferOut.length + header.length);
encryptedBufferWithHeader.set(header); encryptedBufferWithHeader.set(header);
encryptedBufferWithHeader.set(bufferOut, header.length); encryptedBufferWithHeader.set(bufferOut, header.length);

@ -64,6 +64,7 @@ export async function initializeLogger() {
ipc.on('fetch-log', event => { ipc.on('fetch-log', event => {
fs.mkdirSync(logPath, { recursive: true }); fs.mkdirSync(logPath, { recursive: true });
console.info('fetching logs from logPath');
fetch(logPath).then( fetch(logPath).then(
data => { data => {

@ -3330,35 +3330,6 @@ function removeV2OpenGroupRoom(conversationId: string) {
}); });
} }
function removeOneOpenGroupV1Message() {
const row = assertGlobalInstance()
.prepare(
`SELECT count(*) from ${MESSAGES_TABLE} WHERE
conversationId LIKE 'publicChat:1@%';`
)
.get();
const toRemoveCount = row['count(*)'];
if (toRemoveCount <= 0) {
return 0;
}
console.info('left opengroupv1 message to remove: ', toRemoveCount);
const rowMessageIds = assertGlobalInstance()
.prepare(
`SELECT id from ${MESSAGES_TABLE} WHERE conversationId LIKE 'publicChat:1@%' ORDER BY id LIMIT 1;`
)
.all();
const messagesIds = map(rowMessageIds, r => r.id)[0];
console.time('removeOneOpenGroupV1Message');
removeMessage(messagesIds);
console.timeEnd('removeOneOpenGroupV1Message');
return toRemoveCount - 1;
}
// tslint:disable: binary-expression-operand-order // tslint:disable: binary-expression-operand-order
// tslint:disable: insecure-random // tslint:disable: insecure-random
@ -3451,7 +3422,7 @@ function fillWithTestData(numConvosToAdd: number, numMsgsToAdd: number) {
const msgObjToAdd = { const msgObjToAdd = {
// body: `fake body ${activeAt}`, // body: `fake body ${activeAt}`,
body: `fakeMsgIdx-spongebob-${index} ${fakeBodyText} ${activeAt}`, body: `fakeMsgIdx-spongebob-${index} ${fakeBodyText} ${activeAt}`,
conversationId: `${convoId}`, conversationId: `05${id}`,
// eslint-disable-next-line camelcase // eslint-disable-next-line camelcase
expires_at: 0, expires_at: 0,
hasAttachments: 0, hasAttachments: 0,
@ -3467,7 +3438,7 @@ function fillWithTestData(numConvosToAdd: number, numMsgsToAdd: number) {
sent_at: Date.now(), sent_at: Date.now(),
source: `${convoId}`, source: `${convoId}`,
sourceDevice: 1, sourceDevice: 1,
type: '%', type: 'outgoing',
unread: 1, unread: 1,
expireTimer: 0, expireTimer: 0,
expirationStartTimestamp: 0, expirationStartTimestamp: 0,
@ -3602,5 +3573,4 @@ export const sqlNode = {
getAllV2OpenGroupRooms, getAllV2OpenGroupRooms,
getV2OpenGroupRoomByRoomId, getV2OpenGroupRoomByRoomId,
removeV2OpenGroupRoom, removeV2OpenGroupRoom,
removeOneOpenGroupV1Message,
}; };

@ -28,6 +28,7 @@ import {
import { MessageModel } from '../models/message'; import { MessageModel } from '../models/message';
import { isUsFromCache } from '../session/utils/User'; import { isUsFromCache } from '../session/utils/User';
import { decryptProfile } from '../util/crypto/profileEncrypter'; import { decryptProfile } from '../util/crypto/profileEncrypter';
import ByteBuffer from 'bytebuffer';
export async function updateProfileOneAtATime( export async function updateProfileOneAtATime(
conversation: ConversationModel, conversation: ConversationModel,
@ -52,8 +53,6 @@ async function createOrUpdateProfile(
profile: SignalService.DataMessage.ILokiProfile, profile: SignalService.DataMessage.ILokiProfile,
profileKey?: Uint8Array | null profileKey?: Uint8Array | null
) { ) {
const { dcodeIO } = window;
// Retain old values unless changed: // Retain old values unless changed:
const newProfile = conversation.get('profile') || {}; const newProfile = conversation.get('profile') || {};

@ -21,6 +21,7 @@ import { getMessageById } from '../../../ts/data/data';
import { getConversationController } from '../conversations'; import { getConversationController } from '../conversations';
import { ed25519Str } from '../onions/onionPath'; import { ed25519Str } from '../onions/onionPath';
import { EmptySwarmError } from '../utils/errors'; import { EmptySwarmError } from '../utils/errors';
import ByteBuffer from 'bytebuffer';
const DEFAULT_CONNECTIONS = 1; const DEFAULT_CONNECTIONS = 1;
@ -128,7 +129,7 @@ export async function TEST_sendMessageToSnode(
isSyncMessage?: boolean, isSyncMessage?: boolean,
messageId?: string messageId?: string
): Promise<void> { ): Promise<void> {
const data64 = window.dcodeIO.ByteBuffer.wrap(data).toString('base64'); const data64 = ByteBuffer.wrap(data).toString('base64');
const swarm = await getSwarmFor(pubKey); const swarm = await getSwarmFor(pubKey);
window?.log?.debug( window?.log?.debug(

@ -1,26 +0,0 @@
/* global $: false */
// Add version and commit hash
$('.version').text(`v${window.getVersion()}`);
$('.commitHash').text(window.getCommitHash() || '');
// Add debugging metadata - environment if not production, app instance name
const states = [];
if (window.getEnvironment() !== 'production') {
states.push(window.getEnvironment());
}
if (window.getAppInstance()) {
states.push(window.getAppInstance());
}
$('.environment').text(states.join(' - '));
// Install the 'dismiss with escape key' handler
// $(document).on('keyup', e => {
// 'use strict';
// if (e.keyCode === 27) {
// window.closeAbout();
// }
// });

@ -94,14 +94,13 @@ function format(entries: Array<EntryType>) {
return redactAll(entries.map(formatLine).join('\n')); return redactAll(entries.map(formatLine).join('\n'));
} }
async function fetch() { export async function fetch() {
return new Promise(resolve => { return new Promise(resolve => {
ipc.send('fetch-log');
ipc.on('fetched-log', (_event, text) => { ipc.on('fetched-log', (_event, text) => {
const result = `${getHeader()}\n${format(text)}`; const result = `${getHeader()}\n${format(text)}`;
resolve(result); resolve(result);
}); });
ipc.send('fetch-log');
}); });
} }
@ -130,7 +129,6 @@ window.log = {
info: _.partial(logAtLevel, 'info', 'INFO '), info: _.partial(logAtLevel, 'info', 'INFO '),
debug: _.partial(logAtLevel, 'debug', 'DEBUG'), debug: _.partial(logAtLevel, 'debug', 'DEBUG'),
trace: _.partial(logAtLevel, 'trace', 'TRACE'), trace: _.partial(logAtLevel, 'trace', 'TRACE'),
fetch,
}; };
window.onerror = (_message, _script, _line, _col, error) => { window.onerror = (_message, _script, _line, _col, error) => {

@ -1,7 +1,44 @@
import React, { useEffect, useState } from 'react'; import React, { useEffect, useState } from 'react';
import styled from 'styled-components';
import { fetch } from '../util/logging';
export const DebugLogView = () => { const StyledContent = styled.div`
display: flex;
flex-direction: column;
padding: 10px;
height: 100%;
`;
const DebugLogTextArea = (props: { content: string }) => {
console.warn('DebugLogTextArea ', props.content);
return <textarea spellCheck="false" rows={10} value={props.content} style={{ height: '100%' }} />;
};
const DebugLogButtons = (props: { content: string }) => {
return (
<div className="buttons">
<button
className="grey submit"
onClick={e => {
e.preventDefault();
if (props.content.length <= 20) {
// loading
return;
}
(window as any).saveLog(props.content);
(window as any).closeDebugLog();
}}
>
{window.i18n('saveLogToDesktop')}
</button>
</div>
);
};
const DebugLogViewAndSave = () => {
const [content, setContent] = useState(window.i18n('loading')); const [content, setContent] = useState(window.i18n('loading'));
useEffect(() => { useEffect(() => {
const operatingSystemInfo = `Operating System: ${(window as any).getOSRelease()}`; const operatingSystemInfo = `Operating System: ${(window as any).getOSRelease()}`;
@ -10,15 +47,25 @@ export const DebugLogView = () => {
: ''; : '';
// eslint-disable-next-line more/no-then // eslint-disable-next-line more/no-then
window.log.fetch().then((text: string) => { fetch()
.then((text: any) => {
const debugLogWithSystemInfo = operatingSystemInfo + commitHashInfo + text; const debugLogWithSystemInfo = operatingSystemInfo + commitHashInfo + text;
setContent(debugLogWithSystemInfo); setContent(debugLogWithSystemInfo);
}); })
.catch(console.warn);
}, []); }, []);
return ( return (
<div className="content"> <>
<DebugLogTextArea content={content} />
<DebugLogButtons content={content} />
</>
);
};
export const DebugLogView = () => {
return (
<StyledContent>
<div> <div>
<button <button
className="x close" className="x close"
@ -30,26 +77,7 @@ export const DebugLogView = () => {
<h1> {window.i18n('debugLog')} </h1> <h1> {window.i18n('debugLog')} </h1>
<p> {window.i18n('debugLogExplanation')}</p> <p> {window.i18n('debugLogExplanation')}</p>
</div> </div>
<textarea spellCheck="false" rows={5}> <DebugLogViewAndSave />
{content} </StyledContent>
</textarea>
<div className="buttons">
<button
className="grey submit"
onClick={e => {
e.preventDefault();
if (content.length <= 20) {
// loading
return;
}
(window as any).saveLog(content);
(window as any).closeDebugLog();
}}
>
{window.i18n('saveLogToDesktop')}
</button>
</div>
</div>
); );
}; };

@ -29,7 +29,7 @@ const functions = {
bytesFromString, bytesFromString,
}; };
// tslint:disable: function-name // tslint:disable: function-name
//tslint-disable no-console
onmessage = async (e: any) => { onmessage = async (e: any) => {
const [jobId, fnName, ...args] = e.data; const [jobId, fnName, ...args] = e.data;

Loading…
Cancel
Save