bpms_site/.svn/pristine/dc/dc8694eab4e93e450375ace9880efe1fbb60a045.svn-base
2025-11-02 16:38:49 +03:30

20 lines
768 B
Plaintext

function getSocketProtocol(assetPrefix) {
let protocol = window.location.protocol;
try {
// assetPrefix is a url
protocol = new URL(assetPrefix).protocol;
} catch (e) {}
return protocol === "http:" ? "ws" : "wss";
}
export function getSocketUrl(assetPrefix) {
const { hostname, port } = window.location;
const protocol = getSocketProtocol(assetPrefix);
const normalizedAssetPrefix = assetPrefix.replace(/^\/+/, "");
let url = protocol + "://" + hostname + ":" + port + (normalizedAssetPrefix ? "/" + normalizedAssetPrefix : "");
if (normalizedAssetPrefix.startsWith("http")) {
url = protocol + "://" + normalizedAssetPrefix.split("://")[1];
}
return url;
}
//# sourceMappingURL=get-socket-url.js.map