2024-05-05 07:17:17 +00:00
|
|
|
|
const SettingList = (items, title, isCollapsible = false, direction = "column") => {
|
2024-07-26 03:12:09 +00:00
|
|
|
|
return `<setting-section ${""}>
|
2024-05-05 07:17:17 +00:00
|
|
|
|
<setting-panel>
|
2024-07-26 03:12:09 +00:00
|
|
|
|
<setting-list ${direction ? `data-direction="${direction}"` : ""} ${isCollapsible ? "is-collapsible" : ""} ${""}>
|
2024-05-05 07:17:17 +00:00
|
|
|
|
${items.join("")}
|
|
|
|
|
</setting-list>
|
|
|
|
|
</setting-panel>
|
|
|
|
|
</setting-section>`;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const SettingItem = (title, subtitle, action, id, visible = true) => {
|
|
|
|
|
return `<setting-item ${id ? `id="${id}"` : ""} ${!visible ? "is-hidden" : ""}>
|
|
|
|
|
<div>
|
|
|
|
|
<setting-text>${title}</setting-text>
|
|
|
|
|
${subtitle ? `<setting-text data-type="secondary">${subtitle}</setting-text>` : ""}
|
|
|
|
|
</div>
|
|
|
|
|
${action ? `<div>${action}</div>` : ""}
|
|
|
|
|
</setting-item>`;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const SettingButton = (text, id, type = "secondary") => {
|
|
|
|
|
return `<setting-button ${type ? `data-type="${type}"` : ""} ${id ? `id="${id}"` : ""}>${text}</setting-button>`;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const SettingSwitch = (configKey, isActive = false, extraData) => {
|
|
|
|
|
return `<setting-switch
|
|
|
|
|
${configKey ? `data-config-key="${configKey}"` : ""}
|
|
|
|
|
${isActive ? "is-active" : ""}
|
|
|
|
|
${extraData ? Object.keys(extraData).map((key) => `data-${key}="${extraData[key]}"`) : ""}
|
|
|
|
|
>
|
|
|
|
|
</setting-switch>`;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const SettingOption = (text, value, isSelected = false) => {
|
|
|
|
|
return `<setting-option ${value ? `data-value="${value}"` : ""} ${isSelected ? "is-selected" : ""}>${text}</setting-option>`;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const SelectTemplate = document.createElement("template");
|
|
|
|
|
SelectTemplate.innerHTML = `<style>
|
|
|
|
|
.hidden { display: none !important; }
|
|
|
|
|
</style>
|
|
|
|
|
<div part="parent">
|
|
|
|
|
<div part="button">
|
|
|
|
|
<input type="text" placeholder="请选择" part="current-text" />
|
|
|
|
|
<svg viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" part="button-arrow">
|
|
|
|
|
<path d="M12 6.0001L8.00004 10L4 6" stroke="currentColor" stroke-linejoin="round"></path>
|
|
|
|
|
</svg>
|
|
|
|
|
</div>
|
|
|
|
|
<ul class="hidden" part="option-list"><slot></slot></ul>
|
|
|
|
|
</div>`;
|
|
|
|
|
window.customElements.define(
|
|
|
|
|
"ob-setting-select",
|
|
|
|
|
class extends HTMLElement {
|
|
|
|
|
_button;
|
|
|
|
|
_text;
|
|
|
|
|
_context;
|
|
|
|
|
constructor() {
|
|
|
|
|
super();
|
|
|
|
|
this.attachShadow({ mode: "open" });
|
|
|
|
|
this.shadowRoot?.append(SelectTemplate.content.cloneNode(true));
|
|
|
|
|
this._button = this.shadowRoot.querySelector('div[part="button"]');
|
|
|
|
|
this._text = this.shadowRoot.querySelector('input[part="current-text"]');
|
|
|
|
|
this._context = this.shadowRoot.querySelector('ul[part="option-list"]');
|
|
|
|
|
const buttonClick = () => {
|
|
|
|
|
const isHidden = this._context.classList.toggle("hidden");
|
|
|
|
|
window[`${isHidden ? "remove" : "add"}EventListener`]("pointerdown", windowPointerDown);
|
|
|
|
|
};
|
|
|
|
|
const windowPointerDown = ({ target }) => {
|
2024-07-26 03:12:09 +00:00
|
|
|
|
if (!this.contains(target)) buttonClick();
|
2024-05-05 07:17:17 +00:00
|
|
|
|
};
|
|
|
|
|
this._button.addEventListener("click", buttonClick);
|
2024-08-11 14:50:47 +00:00
|
|
|
|
this._context.addEventListener("click", (event) => {
|
|
|
|
|
const { target } = event;
|
2024-07-26 03:12:09 +00:00
|
|
|
|
if (target.tagName !== "SETTING-OPTION") return;
|
2024-05-05 07:17:17 +00:00
|
|
|
|
buttonClick();
|
2024-07-26 03:12:09 +00:00
|
|
|
|
if (target.hasAttribute("is-selected")) return;
|
2024-05-05 07:17:17 +00:00
|
|
|
|
this.querySelectorAll("setting-option[is-selected]").forEach((dom) => dom.toggleAttribute("is-selected"));
|
|
|
|
|
target.toggleAttribute("is-selected");
|
|
|
|
|
this._text.value = target.textContent;
|
|
|
|
|
this.dispatchEvent(
|
|
|
|
|
new CustomEvent("selected", {
|
|
|
|
|
bubbles: true,
|
|
|
|
|
composed: true,
|
|
|
|
|
detail: {
|
|
|
|
|
name: target.textContent,
|
|
|
|
|
value: target.dataset.value
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
this._text.value = this.querySelector("setting-option[is-selected]")?.textContent;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
const SettingSelect = (items, configKey, configValue) => {
|
2024-07-26 03:12:09 +00:00
|
|
|
|
return `<ob-setting-select ${`data-config-key="${configKey}"` }>
|
2024-05-05 07:17:17 +00:00
|
|
|
|
${items.map((e, i) => {
|
2024-07-26 03:12:09 +00:00
|
|
|
|
return SettingOption(e.text, e.value, configValue ? configValue === e.value : i === 0);
|
2024-05-05 07:17:17 +00:00
|
|
|
|
}).join("")}
|
|
|
|
|
</ob-setting-select>`;
|
|
|
|
|
};
|
|
|
|
|
|
2024-05-08 10:31:30 +00:00
|
|
|
|
class WebUiApiOB11ConfigWrapper {
|
|
|
|
|
retCredential = "";
|
|
|
|
|
async Init(Credential) {
|
|
|
|
|
this.retCredential = Credential;
|
2024-05-05 07:17:17 +00:00
|
|
|
|
}
|
2024-05-08 10:31:30 +00:00
|
|
|
|
async GetOB11Config() {
|
2024-07-26 03:12:09 +00:00
|
|
|
|
const ConfigResponse = await fetch("../api/OB11Config/GetConfig", {
|
2024-05-08 10:31:30 +00:00
|
|
|
|
method: "POST",
|
|
|
|
|
headers: {
|
2024-05-15 04:06:17 +00:00
|
|
|
|
Authorization: "Bearer " + this.retCredential,
|
2024-05-08 10:31:30 +00:00
|
|
|
|
"Content-Type": "application/json"
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
if (ConfigResponse.status == 200) {
|
2024-05-28 12:08:40 +00:00
|
|
|
|
const ConfigResponseJson = await ConfigResponse.json();
|
2024-05-08 10:31:30 +00:00
|
|
|
|
if (ConfigResponseJson.code == 0) {
|
|
|
|
|
return ConfigResponseJson?.data;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return {};
|
|
|
|
|
}
|
|
|
|
|
async SetOB11Config(config) {
|
2024-07-26 03:12:09 +00:00
|
|
|
|
const ConfigResponse = await fetch("../api/OB11Config/SetConfig", {
|
2024-05-15 04:06:17 +00:00
|
|
|
|
method: "POST",
|
|
|
|
|
headers: {
|
|
|
|
|
Authorization: "Bearer " + this.retCredential,
|
|
|
|
|
"Content-Type": "application/json"
|
|
|
|
|
},
|
|
|
|
|
body: JSON.stringify({ config: JSON.stringify(config) })
|
|
|
|
|
});
|
2024-05-08 10:31:30 +00:00
|
|
|
|
if (ConfigResponse.status == 200) {
|
2024-05-28 12:08:40 +00:00
|
|
|
|
const ConfigResponseJson = await ConfigResponse.json();
|
2024-05-08 10:31:30 +00:00
|
|
|
|
if (ConfigResponseJson.code == 0) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return false;
|
2024-05-05 07:17:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-08 10:31:30 +00:00
|
|
|
|
const OB11ConfigWrapper = new WebUiApiOB11ConfigWrapper();
|
2024-05-28 12:08:40 +00:00
|
|
|
|
|
2024-05-05 07:17:17 +00:00
|
|
|
|
async function onSettingWindowCreated(view) {
|
|
|
|
|
const isEmpty = (value) => value === void 0 || value === void 0 || value === "";
|
2024-05-08 13:00:53 +00:00
|
|
|
|
await OB11ConfigWrapper.Init(localStorage.getItem("auth"));
|
2024-05-28 12:08:40 +00:00
|
|
|
|
const ob11Config = await OB11ConfigWrapper.GetOB11Config();
|
2024-05-05 07:17:17 +00:00
|
|
|
|
const setOB11Config = (key, value) => {
|
2024-05-08 10:45:45 +00:00
|
|
|
|
const configKey = key.split(".");
|
|
|
|
|
if (configKey.length === 2) {
|
|
|
|
|
ob11Config[configKey[1]] = value;
|
2024-05-15 04:06:17 +00:00
|
|
|
|
} else if (configKey.length === 3) {
|
|
|
|
|
ob11Config[configKey[1]][configKey[2]] = value;
|
2024-05-08 10:45:45 +00:00
|
|
|
|
}
|
2024-05-05 07:17:17 +00:00
|
|
|
|
};
|
|
|
|
|
const parser = new DOMParser();
|
|
|
|
|
const doc = parser.parseFromString(
|
|
|
|
|
[
|
|
|
|
|
"<div>",
|
|
|
|
|
`<setting-section id="napcat-error">
|
|
|
|
|
<setting-panel><pre><code></code></pre></setting-panel>
|
|
|
|
|
</setting-section>`,
|
|
|
|
|
SettingList([
|
|
|
|
|
SettingItem(
|
2024-05-08 10:31:30 +00:00
|
|
|
|
'<span id="napcat-update-title">Napcat</span>',
|
2024-05-05 07:17:17 +00:00
|
|
|
|
void 0,
|
2024-09-02 09:31:27 +00:00
|
|
|
|
SettingButton("V2.2.38", "napcat-update-button", "secondary")
|
2024-05-05 07:17:17 +00:00
|
|
|
|
)
|
|
|
|
|
]),
|
|
|
|
|
SettingList([
|
|
|
|
|
SettingItem(
|
|
|
|
|
"启用 HTTP 服务",
|
|
|
|
|
void 0,
|
2024-05-15 04:06:17 +00:00
|
|
|
|
SettingSwitch("ob11.http.enable", ob11Config.http.enable, {
|
2024-05-17 13:30:37 +00:00
|
|
|
|
"control-display-id": "config-ob11-http-port"
|
2024-05-15 04:06:17 +00:00
|
|
|
|
})
|
2024-05-05 07:17:17 +00:00
|
|
|
|
),
|
|
|
|
|
SettingItem(
|
|
|
|
|
"HTTP 服务监听端口",
|
|
|
|
|
void 0,
|
2024-05-15 04:06:17 +00:00
|
|
|
|
`<div class="q-input"><input class="q-input__inner" data-config-key="ob11.http.port" type="number" min="1" max="65534" value="${ob11Config.http.port}" placeholder="${ob11Config.http.port}" /></div>`,
|
2024-05-17 13:30:37 +00:00
|
|
|
|
"config-ob11-http-port",
|
2024-05-15 04:06:17 +00:00
|
|
|
|
ob11Config.http.enable
|
2024-05-05 07:17:17 +00:00
|
|
|
|
),
|
|
|
|
|
SettingItem(
|
|
|
|
|
"启用 HTTP 心跳",
|
|
|
|
|
void 0,
|
2024-05-15 04:06:17 +00:00
|
|
|
|
SettingSwitch("ob11.http.enableHeart", ob11Config.http.enableHeart, {
|
|
|
|
|
"control-display-id": "config-ob11-HTTP.enableHeart"
|
2024-05-05 07:17:17 +00:00
|
|
|
|
})
|
|
|
|
|
),
|
|
|
|
|
SettingItem(
|
|
|
|
|
"启用 HTTP 事件上报",
|
|
|
|
|
void 0,
|
2024-05-15 04:06:17 +00:00
|
|
|
|
SettingSwitch("ob11.http.enablePost", ob11Config.http.enablePost, {
|
2024-05-17 10:11:53 +00:00
|
|
|
|
"control-display-id": "config-ob11-http-postUrls"
|
2024-05-05 07:17:17 +00:00
|
|
|
|
})
|
|
|
|
|
),
|
2024-05-17 10:11:53 +00:00
|
|
|
|
`<div class="config-host-list" id="config-ob11-http-postUrls" ${ob11Config.http.enablePost ? "" : "is-hidden"}>
|
2024-05-05 07:17:17 +00:00
|
|
|
|
<setting-item data-direction="row">
|
|
|
|
|
<div>
|
|
|
|
|
<setting-text>HTTP 事件上报密钥</setting-text>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="q-input">
|
2024-05-17 10:11:53 +00:00
|
|
|
|
<input id="config-ob11-http-secret" class="q-input__inner" data-config-key="ob11.http.secret" type="text" value="${ob11Config.http.secret}" placeholder="未设置" />
|
2024-05-05 07:17:17 +00:00
|
|
|
|
</div>
|
|
|
|
|
</setting-item>
|
|
|
|
|
<setting-item data-direction="row">
|
|
|
|
|
<div>
|
|
|
|
|
<setting-text>HTTP 事件上报地址</setting-text>
|
|
|
|
|
</div>
|
2024-05-17 10:11:53 +00:00
|
|
|
|
<setting-button id="config-ob11-http-postUrls-add" data-type="primary">添加</setting-button>
|
2024-05-05 07:17:17 +00:00
|
|
|
|
</setting-item>
|
2024-05-17 10:11:53 +00:00
|
|
|
|
<div id="config-ob11-http-postUrls-list"></div>
|
2024-05-05 07:17:17 +00:00
|
|
|
|
</div>`,
|
|
|
|
|
SettingItem(
|
|
|
|
|
"启用正向 WebSocket 服务",
|
|
|
|
|
void 0,
|
2024-05-15 04:06:17 +00:00
|
|
|
|
SettingSwitch("ob11.ws.enable", ob11Config.ws.enable, {
|
2024-05-18 12:28:35 +00:00
|
|
|
|
"control-display-id": "config-ob11-ws-port"
|
2024-05-15 04:06:17 +00:00
|
|
|
|
})
|
2024-05-05 07:17:17 +00:00
|
|
|
|
),
|
|
|
|
|
SettingItem(
|
|
|
|
|
"正向 WebSocket 服务监听端口",
|
|
|
|
|
void 0,
|
2024-05-15 04:06:17 +00:00
|
|
|
|
`<div class="q-input"><input class="q-input__inner" data-config-key="ob11.ws.port" type="number" min="1" max="65534" value="${ob11Config.ws.port}" placeholder="${ob11Config.ws.port}" /></div>`,
|
2024-05-18 12:28:35 +00:00
|
|
|
|
"config-ob11-ws-port",
|
2024-05-15 04:06:17 +00:00
|
|
|
|
ob11Config.ws.enable
|
2024-05-05 07:17:17 +00:00
|
|
|
|
),
|
|
|
|
|
SettingItem(
|
|
|
|
|
"启用反向 WebSocket 服务",
|
|
|
|
|
void 0,
|
2024-05-15 04:06:17 +00:00
|
|
|
|
SettingSwitch("ob11.reverseWs.enable", ob11Config.reverseWs.enable, {
|
2024-05-17 10:11:53 +00:00
|
|
|
|
"control-display-id": "config-ob11-reverseWs-urls"
|
2024-05-05 07:17:17 +00:00
|
|
|
|
})
|
|
|
|
|
),
|
2024-05-17 10:11:53 +00:00
|
|
|
|
`<div class="config-host-list" id="config-ob11-reverseWs-urls" ${ob11Config.reverseWs.enable ? "" : "is-hidden"}>
|
2024-05-05 07:17:17 +00:00
|
|
|
|
<setting-item data-direction="row">
|
|
|
|
|
<div>
|
|
|
|
|
<setting-text>反向 WebSocket 监听地址</setting-text>
|
|
|
|
|
</div>
|
2024-05-17 10:11:53 +00:00
|
|
|
|
<setting-button id="config-ob11-reverseWs-urls-add" data-type="primary">添加</setting-button>
|
2024-05-05 07:17:17 +00:00
|
|
|
|
</setting-item>
|
2024-05-17 10:11:53 +00:00
|
|
|
|
<div id="config-ob11-reverseWs-urls-list"></div>
|
2024-05-05 07:17:17 +00:00
|
|
|
|
</div>`,
|
|
|
|
|
SettingItem(
|
|
|
|
|
" WebSocket 服务心跳间隔",
|
|
|
|
|
"控制每隔多久发送一个心跳包,单位为毫秒",
|
2024-05-08 13:40:30 +00:00
|
|
|
|
`<div class="q-input"><input class="q-input__inner" data-config-key="ob11.heartInterval" type="number" min="1000" value="${ob11Config.heartInterval}" placeholder="${ob11Config.heartInterval}" /></div>`
|
2024-05-05 07:17:17 +00:00
|
|
|
|
),
|
|
|
|
|
SettingItem(
|
|
|
|
|
"Access token",
|
|
|
|
|
void 0,
|
2024-05-08 13:40:30 +00:00
|
|
|
|
`<div class="q-input" style="width:210px;"><input class="q-input__inner" data-config-key="ob11.token" type="text" value="${ob11Config.token}" placeholder="未设置" /></div>`
|
2024-05-05 07:17:17 +00:00
|
|
|
|
),
|
|
|
|
|
SettingItem(
|
|
|
|
|
"新消息上报格式",
|
|
|
|
|
`如客户端无特殊需求推荐保持默认设置,两者的详细差异可参考 <a href="javascript:LiteLoader.api.openExternal('https://github.com/botuniverse/onebot-11/tree/master/message#readme');">OneBot v11 文档</a>`,
|
|
|
|
|
SettingSelect(
|
|
|
|
|
[
|
|
|
|
|
{ text: "消息段", value: "array" },
|
|
|
|
|
{ text: "CQ码", value: "string" }
|
|
|
|
|
],
|
|
|
|
|
"ob11.messagePostFormat",
|
|
|
|
|
ob11Config.messagePostFormat
|
|
|
|
|
)
|
|
|
|
|
),
|
|
|
|
|
SettingItem(
|
|
|
|
|
"音乐卡片签名地址",
|
|
|
|
|
void 0,
|
2024-05-08 13:40:30 +00:00
|
|
|
|
`<div class="q-input" style="width:210px;"><input class="q-input__inner" data-config-key="ob11.musicSignUrl" type="text" value="${ob11Config.musicSignUrl}" placeholder="未设置" /></div>`,
|
|
|
|
|
"ob11.musicSignUrl"
|
2024-05-05 07:17:17 +00:00
|
|
|
|
),
|
2024-05-28 16:00:48 +00:00
|
|
|
|
SettingItem(
|
|
|
|
|
"启用本地进群时间与发言时间记录",
|
|
|
|
|
void 0,
|
2024-05-28 16:07:05 +00:00
|
|
|
|
SettingSwitch("ob11.GroupLocalTime.Record", ob11Config.GroupLocalTime.Record, {
|
2024-05-28 16:00:48 +00:00
|
|
|
|
"control-display-id": "config-ob11-GroupLocalTime-RecordList"
|
|
|
|
|
})
|
|
|
|
|
),
|
2024-05-28 16:07:05 +00:00
|
|
|
|
`<div class="config-host-list" id="config-ob11-GroupLocalTime-RecordList" ${ob11Config.GroupLocalTime.Record ? "" : "is-hidden"}>
|
2024-05-28 16:00:48 +00:00
|
|
|
|
<setting-item data-direction="row">
|
|
|
|
|
<div>
|
|
|
|
|
<setting-text>群列表</setting-text>
|
|
|
|
|
</div>
|
2024-05-28 16:07:05 +00:00
|
|
|
|
<setting-button id="config-ob11-GroupLocalTime-RecordList-add" data-type="primary">添加</setting-button>
|
2024-05-28 16:00:48 +00:00
|
|
|
|
</setting-item>
|
2024-05-28 16:07:05 +00:00
|
|
|
|
<div id="config-ob11-GroupLocalTime-RecordList-list"></div>
|
2024-05-28 16:00:48 +00:00
|
|
|
|
</div>`,
|
2024-05-15 04:06:17 +00:00
|
|
|
|
SettingItem(
|
|
|
|
|
"",
|
|
|
|
|
void 0,
|
|
|
|
|
SettingButton("保存", "config-ob11-save", "primary")
|
|
|
|
|
)
|
2024-05-05 07:17:17 +00:00
|
|
|
|
]),
|
|
|
|
|
SettingList([
|
|
|
|
|
SettingItem(
|
|
|
|
|
"上报 Bot 自身发送的消息",
|
|
|
|
|
"上报 event 为 message_sent",
|
2024-05-08 13:40:30 +00:00
|
|
|
|
SettingSwitch("ob11.reportSelfMessage", ob11Config.reportSelfMessage)
|
2024-05-05 07:17:17 +00:00
|
|
|
|
)
|
|
|
|
|
]),
|
|
|
|
|
SettingList([
|
2024-05-15 04:06:17 +00:00
|
|
|
|
SettingItem(
|
|
|
|
|
"GitHub 仓库",
|
2024-05-28 12:08:40 +00:00
|
|
|
|
"https://github.com/NapNeko/NapCatQQ",
|
2024-05-15 04:06:17 +00:00
|
|
|
|
SettingButton("点个星星", "open-github")
|
|
|
|
|
),
|
2024-08-11 14:10:39 +00:00
|
|
|
|
SettingItem("NapCat 文档", "", SettingButton("看看文档", "open-docs"))
|
2024-05-05 07:17:17 +00:00
|
|
|
|
]),
|
2024-08-12 10:25:34 +00:00
|
|
|
|
SettingItem(
|
|
|
|
|
"Telegram 群",
|
|
|
|
|
"https://t.me/+nLZEnpne-pQ1OWFl",
|
|
|
|
|
SettingButton("进去逛逛", "open-telegram")
|
|
|
|
|
),
|
|
|
|
|
SettingItem(
|
|
|
|
|
"QQ 群",
|
|
|
|
|
"518662028",
|
|
|
|
|
SettingButton("我要进去", "open-qq-group")
|
|
|
|
|
),
|
2024-05-05 07:17:17 +00:00
|
|
|
|
"</div>"
|
|
|
|
|
].join(""),
|
|
|
|
|
"text/html"
|
|
|
|
|
);
|
|
|
|
|
doc.querySelector("#open-github")?.addEventListener("click", () => {
|
2024-07-26 03:12:09 +00:00
|
|
|
|
window.open("https://github.com/NapNeko/NapCatQQ", "_blank");
|
2024-05-05 07:17:17 +00:00
|
|
|
|
});
|
|
|
|
|
doc.querySelector("#open-docs")?.addEventListener("click", () => {
|
2024-07-26 03:12:09 +00:00
|
|
|
|
window.open("https://napneko.github.io/", "_blank");
|
2024-05-05 07:17:17 +00:00
|
|
|
|
});
|
2024-08-12 10:25:34 +00:00
|
|
|
|
doc.querySelector("#open-telegram")?.addEventListener("click", () => {
|
|
|
|
|
window.open("https://t.me/+nLZEnpne-pQ1OWFl", "_blank");
|
|
|
|
|
});
|
|
|
|
|
doc.querySelector("#open-qq-group")?.addEventListener("click", () => {
|
|
|
|
|
window.open("https://qm.qq.com/q/VfjAq5HIMS", "_blank");
|
|
|
|
|
});
|
2024-05-05 07:17:17 +00:00
|
|
|
|
const buildHostListItem = (type, host, index, inputAttrs = {}) => {
|
|
|
|
|
const dom = {
|
|
|
|
|
container: document.createElement("setting-item"),
|
|
|
|
|
input: document.createElement("input"),
|
|
|
|
|
inputContainer: document.createElement("div"),
|
|
|
|
|
deleteBtn: document.createElement("setting-button")
|
|
|
|
|
};
|
|
|
|
|
dom.container.classList.add("setting-host-list-item");
|
|
|
|
|
dom.container.dataset.direction = "row";
|
|
|
|
|
Object.assign(dom.input, inputAttrs);
|
|
|
|
|
dom.input.classList.add("q-input__inner");
|
|
|
|
|
dom.input.type = "url";
|
|
|
|
|
dom.input.value = host;
|
|
|
|
|
dom.input.addEventListener("input", () => {
|
2024-05-17 10:23:50 +00:00
|
|
|
|
ob11Config[type.split("-")[0]][type.split("-")[1]][index] = dom.input.value;
|
2024-05-05 07:17:17 +00:00
|
|
|
|
});
|
|
|
|
|
dom.inputContainer.classList.add("q-input");
|
|
|
|
|
dom.inputContainer.appendChild(dom.input);
|
|
|
|
|
dom.deleteBtn.innerHTML = "删除";
|
|
|
|
|
dom.deleteBtn.dataset.type = "secondary";
|
|
|
|
|
dom.deleteBtn.addEventListener("click", () => {
|
2024-05-17 10:23:50 +00:00
|
|
|
|
ob11Config[type.split("-")[0]][type.split("-")[1]].splice(index, 1);
|
2024-05-05 07:17:17 +00:00
|
|
|
|
initReverseHost(type);
|
|
|
|
|
});
|
|
|
|
|
dom.container.appendChild(dom.inputContainer);
|
|
|
|
|
dom.container.appendChild(dom.deleteBtn);
|
|
|
|
|
return dom.container;
|
|
|
|
|
};
|
2024-05-08 13:40:30 +00:00
|
|
|
|
const buildHostList = (hosts, type, inputAttr = {}) => {
|
|
|
|
|
const result = [];
|
2024-05-15 04:06:17 +00:00
|
|
|
|
hosts?.forEach((host, index) => {
|
2024-05-08 13:40:30 +00:00
|
|
|
|
result.push(buildHostListItem(type, host, index, inputAttr));
|
|
|
|
|
});
|
|
|
|
|
return result;
|
|
|
|
|
};
|
2024-05-05 07:17:17 +00:00
|
|
|
|
const addReverseHost = (type, doc2 = document, inputAttr = {}) => {
|
2024-05-17 10:21:03 +00:00
|
|
|
|
type = type.replace(/\./g, "-");
|
2024-05-15 04:06:17 +00:00
|
|
|
|
const hostContainerDom = doc2.body.querySelector(
|
|
|
|
|
`#config-ob11-${type}-list`
|
|
|
|
|
);
|
|
|
|
|
hostContainerDom?.appendChild(
|
|
|
|
|
buildHostListItem(
|
|
|
|
|
type,
|
|
|
|
|
"",
|
2024-05-17 10:21:03 +00:00
|
|
|
|
ob11Config[type.split("-")[0]][type.split("-")[1]].length,
|
2024-05-15 04:06:17 +00:00
|
|
|
|
inputAttr
|
|
|
|
|
)
|
|
|
|
|
);
|
2024-05-17 10:21:03 +00:00
|
|
|
|
ob11Config[type.split("-")[0]][type.split("-")[1]].push("");
|
2024-05-05 07:17:17 +00:00
|
|
|
|
};
|
|
|
|
|
const initReverseHost = (type, doc2 = document) => {
|
2024-05-17 10:23:50 +00:00
|
|
|
|
type = type.replace(/\./g, "-");
|
2024-05-15 04:06:17 +00:00
|
|
|
|
const hostContainerDom = doc2.body?.querySelector(
|
|
|
|
|
`#config-ob11-${type}-list`
|
|
|
|
|
);
|
2024-05-08 13:40:30 +00:00
|
|
|
|
if (hostContainerDom) {
|
|
|
|
|
[...hostContainerDom.childNodes].forEach((dom) => dom.remove());
|
2024-05-15 04:06:17 +00:00
|
|
|
|
buildHostList(
|
2024-05-17 10:23:50 +00:00
|
|
|
|
ob11Config[type.split("-")[0]][type.split("-")[1]],
|
2024-05-15 04:06:17 +00:00
|
|
|
|
type
|
|
|
|
|
).forEach((dom) => {
|
2024-05-08 13:40:30 +00:00
|
|
|
|
hostContainerDom?.appendChild(dom);
|
|
|
|
|
});
|
|
|
|
|
}
|
2024-05-05 07:17:17 +00:00
|
|
|
|
};
|
2024-05-15 04:06:17 +00:00
|
|
|
|
initReverseHost("http.postUrls", doc);
|
|
|
|
|
initReverseHost("reverseWs.urls", doc);
|
2024-05-28 16:00:48 +00:00
|
|
|
|
initReverseHost("GroupLocalTime.RecordList", doc);
|
2024-05-17 10:11:53 +00:00
|
|
|
|
doc.querySelector("#config-ob11-http-postUrls-add")?.addEventListener(
|
2024-05-05 07:17:17 +00:00
|
|
|
|
"click",
|
2024-05-15 04:06:17 +00:00
|
|
|
|
() => addReverseHost("http.postUrls", document, {
|
|
|
|
|
placeholder: "如:http://127.0.0.1:5140/onebot"
|
|
|
|
|
})
|
2024-05-05 07:17:17 +00:00
|
|
|
|
);
|
2024-05-17 10:11:53 +00:00
|
|
|
|
doc.querySelector("#config-ob11-reverseWs-urls-add")?.addEventListener(
|
2024-05-05 07:17:17 +00:00
|
|
|
|
"click",
|
2024-05-15 04:06:17 +00:00
|
|
|
|
() => addReverseHost("reverseWs.urls", document, {
|
|
|
|
|
placeholder: "如:ws://127.0.0.1:5140/onebot"
|
|
|
|
|
})
|
2024-05-05 07:17:17 +00:00
|
|
|
|
);
|
2024-05-28 16:00:48 +00:00
|
|
|
|
doc.querySelector("#config-ob11-GroupLocalTime-RecordList-add")?.addEventListener(
|
|
|
|
|
"click",
|
|
|
|
|
() => addReverseHost("GroupLocalTime.RecordList", document, {
|
2024-05-29 02:25:13 +00:00
|
|
|
|
placeholder: "此处填写群号 -1为全部"
|
2024-05-28 16:00:48 +00:00
|
|
|
|
})
|
|
|
|
|
);
|
2024-05-05 07:17:17 +00:00
|
|
|
|
doc.querySelector("#config-ffmpeg-select")?.addEventListener("click", () => {
|
|
|
|
|
});
|
|
|
|
|
doc.querySelector("#config-open-log-path")?.addEventListener("click", () => {
|
|
|
|
|
});
|
|
|
|
|
doc.querySelectorAll("setting-switch[data-config-key]").forEach((dom) => {
|
|
|
|
|
dom.addEventListener("click", () => {
|
2024-05-08 11:43:33 +00:00
|
|
|
|
const active = dom.getAttribute("is-active") == void 0;
|
2024-05-08 10:31:30 +00:00
|
|
|
|
setOB11Config(dom.dataset.configKey, active);
|
2024-07-26 03:12:09 +00:00
|
|
|
|
if (active) dom.setAttribute("is-active", "");
|
|
|
|
|
else dom.removeAttribute("is-active");
|
2024-05-05 07:17:17 +00:00
|
|
|
|
if (!isEmpty(dom.dataset.controlDisplayId)) {
|
2024-05-15 04:06:17 +00:00
|
|
|
|
const displayDom = document.querySelector(
|
2024-05-28 12:08:40 +00:00
|
|
|
|
//@ts-expect-error 等待修复
|
2024-05-15 04:06:17 +00:00
|
|
|
|
`#${dom.dataset.controlDisplayId}`
|
|
|
|
|
);
|
2024-07-26 03:12:09 +00:00
|
|
|
|
if (active) displayDom?.removeAttribute("is-hidden");
|
|
|
|
|
else displayDom?.setAttribute("is-hidden", "");
|
2024-05-05 07:17:17 +00:00
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
});
|
2024-05-15 04:06:17 +00:00
|
|
|
|
doc.querySelectorAll(
|
|
|
|
|
"setting-item .q-input input.q-input__inner[data-config-key]"
|
|
|
|
|
).forEach((dom) => {
|
2024-05-05 07:17:17 +00:00
|
|
|
|
dom.addEventListener("input", () => {
|
|
|
|
|
const Type = dom.getAttribute("type");
|
2024-05-08 10:31:30 +00:00
|
|
|
|
const configKey = dom.dataset.configKey;
|
|
|
|
|
const configValue = Type === "number" ? parseInt(dom.value) >= 1 ? parseInt(dom.value) : 1 : dom.value;
|
|
|
|
|
setOB11Config(configKey, configValue);
|
2024-05-05 07:17:17 +00:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
doc.querySelectorAll("ob-setting-select[data-config-key]").forEach((dom) => {
|
|
|
|
|
dom?.addEventListener("selected", (e) => {
|
2024-05-08 10:31:30 +00:00
|
|
|
|
const configKey = dom.dataset.configKey;
|
|
|
|
|
const configValue = e.detail.value;
|
|
|
|
|
setOB11Config(configKey, configValue);
|
2024-05-05 07:17:17 +00:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
doc.querySelector("#config-ob11-save")?.addEventListener("click", () => {
|
2024-05-08 10:31:30 +00:00
|
|
|
|
OB11ConfigWrapper.SetOB11Config(ob11Config);
|
2024-05-05 07:17:17 +00:00
|
|
|
|
alert("保存成功");
|
|
|
|
|
});
|
2024-05-05 07:34:07 +00:00
|
|
|
|
doc.body.childNodes.forEach((node) => {
|
|
|
|
|
view.appendChild(node);
|
|
|
|
|
});
|
2024-05-05 07:17:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-05-05 07:34:07 +00:00
|
|
|
|
export { onSettingWindowCreated };
|