siyuan/app/src/layout/Model.ts

76 lines
2.9 KiB
TypeScript
Raw Normal View History

import {Constants} from "../constants";
import {Tab} from "./Tab";
import {processMessage} from "../util/processMessage";
import {kernelError} from "../dialog/processSystem";
import {exportLayout} from "./util";
export class Model {
public ws: WebSocket;
public reqId: number;
public parent: Tab;
constructor(options: { id: string, type?: TWS, callback?: () => void, msgCallback?: (data: IWebSocketData) => void }) {
if (options.msgCallback) {
this.connect(options);
}
}
private connect(options: { id: string, type?: TWS, callback?: () => void, msgCallback?: (data: IWebSocketData) => void }) {
const websocketURL = `${window.location.protocol === "https:" ? "wss" : "ws"}://${window.location.host}/ws`;
const ws = new WebSocket(`${websocketURL}?app=${Constants.SIYUAN_APPID}&id=${options.id}${options.type ? "&type=" + options.type : ""}`);
ws.onopen = () => {
if (options.callback) {
options.callback.call(this);
}
const logElement = document.getElementById("errorLog");
if (logElement) {
// 内核中断后无法 catch fetch 请求错误,重连会导致无法执行 transactionsTimeout
exportLayout(true);
}
};
ws.onmessage = (event) => {
if (options.msgCallback) {
const data = processMessage(JSON.parse(event.data));
options.msgCallback.call(this, data);
}
};
ws.onclose = (ev) => {
if (0 <= ev.reason.indexOf("unauthenticated")) {
return;
}
if (0 > ev.reason.indexOf("close websocket")) {
console.warn("WebSocket is closed. Reconnect will be attempted in 3 second.", ev);
setTimeout(() => {
this.connect({
id: options.id,
type: options.type,
msgCallback: options.msgCallback
});
}, 3000);
}
};
ws.onerror = (err: Event & { target: { url: string, readyState: number } }) => {
const logElement = document.getElementById("errorLog");
if (err.target.url.endsWith("&type=main") && err.target.readyState === 3 && !logElement) {
kernelError();
}
};
this.ws = ws;
}
public send(cmd: string, param: Record<string, unknown>, process = false) {
if (!this.ws) { // Inbox 无 ws
return;
}
this.reqId = process ? 0 : new Date().getTime();
this.ws.send(JSON.stringify({
cmd,
reqId: this.reqId,
param,
// pushMode 0: 广播1单播(默认)2广播不包含自己
// reloadPushMode 是否需要 reload 0: 广播1单播(默认)2广播不包含自己3不推送
}));
}
}