feat: better errors when server fails

This commit is contained in:
thecodrr
2022-01-18 12:00:57 +05:00
parent 17eeaeb72c
commit 2e50130c16
3 changed files with 57 additions and 2 deletions

View File

@@ -1,3 +1,5 @@
import { extractHostname } from "./hostname";
const hosts = {
API_HOST:
process.env.NODE_ENV === "production"
@@ -22,3 +24,16 @@ const hosts = {
};
export default hosts;
export const getServerNameFromHost = (host) => {
const names = {
[extractHostname(hosts.API_HOST)]: "Notesnook Sync Server",
[extractHostname(hosts.AUTH_HOST)]: "Authentication Server",
[extractHostname(hosts.SSE_HOST)]: "Eventing Server",
[extractHostname(hosts.SUBSCRIPTIONS_HOST)]:
"Subscriptions Management Server",
[extractHostname(hosts.ISSUES_HOST)]: "Bug Reporting Server",
};
console.log(names, host);
return names[host];
};