mkdir apps/web/scripts
mv scripts/{cleanup.sh,ci_package.sh,copy-res.ts,deploy.py,package.sh} apps/web/scripts
And a couple of gitignore tweaks
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
95 lines
3.2 KiB
TypeScript
95 lines
3.2 KiB
TypeScript
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
Copyright 2018 New Vector Ltd
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR GPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE files in the repository root for full details.
|
|
*/
|
|
|
|
/*
|
|
* Separate file that sets up rageshake logging when imported.
|
|
* This is necessary so that rageshake logging is set up before
|
|
* anything else. Webpack puts all import statements at the top
|
|
* of the file before any code, so imports will always be
|
|
* evaluated first. Other imports can cause other code to be
|
|
* evaluated (eg. the loglevel library in js-sdk, which if set
|
|
* up before rageshake causes some js-sdk logging to be missing
|
|
* from the rageshake.)
|
|
*/
|
|
|
|
import { logger } from "matrix-js-sdk/src/logger";
|
|
|
|
import * as rageshake from "../rageshake/rageshake";
|
|
import SdkConfig from "../SdkConfig";
|
|
import sendBugReport, { loadBugReport } from "../rageshake/submit-rageshake";
|
|
import { BugReportEndpointURLLocal } from "../IConfigOptions";
|
|
|
|
export function initRageshake(): Promise<void> {
|
|
// we manually check persistence for rageshakes ourselves
|
|
const prom = rageshake.init(/*setUpPersistence=*/ false);
|
|
prom.then(
|
|
async () => {
|
|
logger.log("Initialised rageshake.");
|
|
logger.log(
|
|
"To fix line numbers in Chrome: " +
|
|
"Meatball menu → Settings → Ignore list → Add /rageshake\\.ts & /logger\\.ts$",
|
|
);
|
|
|
|
window.addEventListener("beforeunload", () => {
|
|
logger.log("element-web closing");
|
|
// try to flush the logs to indexeddb
|
|
rageshake.flush();
|
|
});
|
|
|
|
await rageshake.cleanup();
|
|
},
|
|
(err) => {
|
|
logger.error("Failed to initialise rageshake: " + err);
|
|
},
|
|
);
|
|
return prom;
|
|
}
|
|
|
|
export function initRageshakeStore(): Promise<void> {
|
|
return rageshake.tryInitStorage();
|
|
}
|
|
|
|
window.mxSendRageshake = async function (text: string, withLogs = true): Promise<void> {
|
|
const url = SdkConfig.get().bug_report_endpoint_url;
|
|
if (!url) {
|
|
logger.error("Cannot send a rageshake - no bug_report_endpoint_url configured");
|
|
return;
|
|
}
|
|
|
|
if (!text || !text.trim()) {
|
|
logger.error("Cannot send a rageshake without a message - please tell us what went wrong");
|
|
return;
|
|
}
|
|
if (url === BugReportEndpointURLLocal) {
|
|
try {
|
|
const tape = await loadBugReport({
|
|
userText: text,
|
|
sendLogs: withLogs,
|
|
progressCallback: logger.log.bind(console),
|
|
});
|
|
const blob = new Blob([new Uint8Array(tape.out)], { type: "application/gzip" });
|
|
const url = URL.createObjectURL(blob);
|
|
logger.log(`Your logs are available at ${url}`);
|
|
} catch (err) {
|
|
logger.error("Failed to load bug report", err);
|
|
}
|
|
} else {
|
|
try {
|
|
await sendBugReport(url, {
|
|
userText: text,
|
|
sendLogs: withLogs,
|
|
progressCallback: logger.log.bind(console),
|
|
});
|
|
logger.log("Bug report sent!");
|
|
} catch (err) {
|
|
logger.error("Failed to send bug report", err);
|
|
}
|
|
}
|
|
};
|