Added support chat and sentry ignore messages.

This commit is contained in:
Patrick Fic
2023-10-13 11:29:18 -07:00
parent fc89c4429d
commit fd989bf7e4
9 changed files with 57 additions and 9 deletions

View File

@@ -128,5 +128,10 @@
"title": "Release Notes for 1.1.5",
"date": "08/23/2023",
"notes": "Bug Fixes:\r\n- Performance improvements."
},
"1.1.6": {
"title": "Release Notes for 1.1.6",
"date": "10/13/2023",
"notes": "New Feature:\r\n- Added live support chat."
}
}

View File

@@ -37,7 +37,7 @@ function WhichRulesetToApply(close_date) {
(r) =>
DateMoment.isSameOrAfter(r.range[0]) && DateMoment.isBefore(r.range[1])
);
console.log("Using ruleset:", newRuleSet);
//console.log("Using ruleset:", newRuleSet);
return newRuleSet?.title;
}

View File

@@ -63,7 +63,7 @@ ipcMain.on(
);
const newFilePaths = store.get("filePaths");
console.log("newFilePaths", newFilePaths);
//console.log("newFilePaths", newFilePaths);
event.sender.send(
ipcTypes.default.fileWatcher.toRenderer.filepathsList,

View File

@@ -70,8 +70,13 @@ async function StartWatcher() {
.on("error", function (error) {
log.error("Error in Watcher", error);
const b = BrowserWindow.getFocusedWindow();
b.webContents.send(ipcTypes.default.fileWatcher.toRenderer.error, error);
// Nucleus.track("WATCHER_ERROR", error);
if (b) {
b.webContents.send(
ipcTypes.default.fileWatcher.toRenderer.error,
error
);
}
// Nucleus.track("WATCHER_ERROR", error);
})
.on("ready", onWatcherReady)
.on("raw", function (event, path, details) {
@@ -111,6 +116,6 @@ exports.StopWatcher = StopWatcher;
exports.watcher = watcher;
async function HandleNewFile(path) {
// Nucleus.track("IMPORT_JOB_FROM_WATCHER");
// Nucleus.track("IMPORT_JOB_FROM_WATCHER");
await ImportJob(path);
}

View File

@@ -16,7 +16,6 @@ const { autoUpdater } = require("electron-updater");
const log = require("electron-log");
const contextMenu = require("electron-context-menu");
const Sentry = require("@sentry/electron");
const { set } = require("lodash");
//const Nucleus = require("nucleus-nodejs");
require("./ipc-main-handler");
@@ -24,6 +23,11 @@ require("./analytics");
Sentry.init({
dsn: "https://9840e0f304124299e379d9347e12d2e6@o492140.ingest.sentry.io/4505728058523648",
ignoreErrors: [
"SimpleURLLoaderWrapper",
"Cannot read properties of null (reading 'webContents')",
"EBUSY: resource busy or locked",
],
});
autoUpdater.autoDownload = true;

View File

@@ -3,7 +3,7 @@
"productName": "ImEX RPS",
"author": "ImEX Systems Inc. <support@thinkimex.com>",
"description": "ImEX RPS",
"version": "1.1.5",
"version": "1.1.6",
"main": "electron/main.js",
"homepage": "./",
"dependencies": {

View File

@@ -3,9 +3,20 @@
<head>
<meta charset="utf-8" />
<link rel="icon" href="%PUBLIC_URL%/favicon.ico" />
<!--
<script type="text/javascript">
window.$crisp = [];
window.CRISP_WEBSITE_ID = "36724f62-2eb0-4b29-9cdd-9905fb99913e";
(function () {
d = document;
s = d.createElement("script");
s.src = "https://client.crisp.chat/l.js";
s.async = 1;
d.getElementsByTagName("head")[0].appendChild(s);
})();
</script>
<!--
<script data-jsd-embedded data-key="51adb36e-ee16-46b1-a4c6-4b6d5fcd8530" data-base-url="https://jsd-widget.atlassian.com" src="https://jsd-widget.atlassian.com/assets/embed.js"></script>
-->
-->
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#002366" />
<meta

View File

@@ -17,6 +17,11 @@ Sentry.init({
tracesSampleRate: 1.0,
// Set `tracePropagationTargets` to control for which URLs distributed tracing should be enabled
tracePropagationTargets: ["localhost", "https://db.rps.imex.online"],
ignoreErrors: [
"SimpleURLLoaderWrapper",
"Cannot read properties of null (reading 'webContents')",
"EBUSY: resource busy or locked",
],
});
//if (process.env.NODE_ENV === "production") LogRocket.init("imex/rps");
const container = document.getElementById("root");

View File

@@ -29,6 +29,7 @@ import {
updateUserDetailsSuccess,
} from "./user.actions";
import UserActionTypes from "./user.types";
import * as Sentry from "@sentry/electron";
const { ipcRenderer } = window;
@@ -153,6 +154,23 @@ export function* signInSuccessSaga({ payload }) {
});
yield put(checkForNotification());
//Check for notifications, and continue to check.
window.$crisp.push([
"set",
"user:company",
[shop.data.bodyshops[0].shopname],
]);
window.$crisp.push([
"set",
"user:nickname",
[payload.displayName || payload.email],
]);
window.$crisp.push(["set", "session:segments", [["rps-user"]]]);
Sentry.setUser({
email: payload.email,
username: payload.displayName || payload.email,
});
} else {
console.log("No bodyshop has been associated.");
yield put(setBodyshop(false));