Skip to content

Commit 67b9868

Browse files
committed
fix: docs
1 parent 894bd33 commit 67b9868

File tree

22 files changed

+858
-347
lines changed

22 files changed

+858
-347
lines changed

blog/Timyaya8732/2024-06-15-timyaya8732.mdx

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ tags: [timyaya8732, sandboxie, tremv]
1010

1111
:::
1212

13+
{/* truncate */}
14+
1315
## Sandboxie 前的準備
1416

1517
### 下載

i18n/en/code.json

+316-292
Large diffs are not rendered by default.

i18n/en/docusaurus-plugin-content-docs/current.json

+12
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,17 @@
22
"version.label": {
33
"message": "Next",
44
"description": "The label for version current"
5+
},
6+
"sidebar.tremSidebar.category.TREM": {
7+
"message": "TREM",
8+
"description": "The label for category TREM in sidebar tremSidebar"
9+
},
10+
"sidebar.tremSidebar.category.擴充開發": {
11+
"message": "擴充開發",
12+
"description": "The label for category 擴充開發 in sidebar tremSidebar"
13+
},
14+
"sidebar.tremSidebar.category.雜項": {
15+
"message": "雜項",
16+
"description": "The label for category 雜項 in sidebar tremSidebar"
517
}
618
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
sidebar_position: 3
3+
---
4+
5+
# 依賴關係
6+
7+
擴充之間的依賴關係
8+
9+
## 聲明依賴
10+
11+
`info.json` 中 聲明
12+
13+
:::tip
14+
15+
依賴中 `trem` 為必須的。
16+
17+
:::
18+
19+
:::tip 版本格式說明
20+
版本號格式為: 主版本.次版本.修訂版本-預發布標識
21+
22+
例如: `3.0.0-pre.1`
23+
24+
支援的版本規則格式:
25+
26+
`>=3.0.0-pre.1` - 大於等於指定版本
27+
28+
`<=3.0.0-pre.4` - 小於等於指定版本
29+
30+
`<3.0.0-pre.4` - 小於指定版本
31+
32+
`>3.0.0-pre.4` - 大於指定版本
33+
34+
`=3.0.0-pre.4` - 等於指定版本
35+
36+
`>=3.0.0-pre.1 <=3.0.0-pre.4` - 版本需同時符合兩個條件
37+
:::
38+
39+
```json
40+
{
41+
// ...
42+
"dependencies": {
43+
"trem": ">=3.0.0" // 擴充所需的 TREM 最低版本
44+
}
45+
// ...
46+
}
47+
```
48+
49+
## 用途
50+
51+
檢查是否有執行擴充所需的其他擴充
52+
53+
:::tip
54+
55+
舉例來說,`websocket` 需要 `exptech` 提供地震報告資料。換句話說,`exptech` 就是 `websocket` 所必需的依賴。
56+
57+
:::
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
sidebar_position: 6
3+
---
4+
5+
# 自定義事件註冊
6+
7+
除了 TREM 本身,擴充還可以分發自己的事件。
8+
9+
:::tip
10+
11+
**自定義事件**是擴充之間,傳遞訊息的一種方式。
12+
13+
:::
14+
15+
## 用法
16+
17+
事件發射
18+
19+
```js
20+
const emit = (event, data) => TREM.variable.events.emit(event, data);
21+
emit("test", { data: "test" });
22+
```
23+
24+
事件接收
25+
26+
```js
27+
const event = (event, callback) => TREM.variable.events.on(event, callback);
28+
event("test", (data) => {
29+
console.log(data); // { data: "test" }
30+
});
31+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
sidebar_position: 1
3+
---
4+
5+
# 事件列表
6+
7+
查看可用的事件。
8+
9+
## 目錄
10+
11+
- onServerStartEvent
12+
13+
## onServerStartEvent
14+
15+
#### 回傳參數 `pid`
16+
17+
當伺服器被啟動
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
sidebar_position: 3
3+
---
4+
5+
# 雜項
6+
7+
這裡紀錄著,一些瑣碎的東西。
8+
9+
## 目錄
10+
11+
- [事件列表](./events_list)
12+
- [版本管理](./version)
13+
- [依賴關係](./dependencies)
14+
- [日誌紀錄](./logger)
15+
- [導入其他擴充](./require)
16+
- [自定義事件註冊](./event)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
sidebar_position: 4
3+
---
4+
5+
# 日誌紀錄
6+
7+
主視窗 logger 實例,有 `debug``info``warn``error` 四種等級。
8+
9+
:::tip
10+
支援 `logger.info("info", 123, false);` 用法。
11+
:::
12+
13+
:::tip
14+
若是擴充要使用的 logger 推薦使用[自定義日誌](../plugin_dev/log)
15+
:::
16+
17+
```js
18+
const { TREM, Logger, logger, MixinManager } = this.#ctx;
19+
logger.debug("debug");
20+
logger.info("info");
21+
logger.warn("warn");
22+
logger.error("error");
23+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
sidebar_position: 5
3+
---
4+
5+
# 導入其他擴充
6+
7+
## test.js
8+
9+
plugins/test/test.js
10+
11+
```js
12+
const test = 123;
13+
14+
module.exports = test;
15+
```
16+
17+
## example.js
18+
19+
plugins/example/example.js
20+
21+
```js
22+
const { TREM, Logger, logger, MixinManager } = this.#ctx;
23+
24+
// 導入 test.js
25+
// pluginLoader 會處理路徑問題,使用相對路徑即可。
26+
const test = this.#ctx.require("../test/test");
27+
console.log(test);
28+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
---
2+
sidebar_position: 2
3+
---
4+
5+
# 版本管理
6+
7+
擴充作者應做好版本管理
8+
9+
## 擴充版本命名方式
10+
11+
`X.Y.Z`
12+
13+
### X 主版號
14+
15+
當產品進行了重大的更新或功能改變,影響了向下相容性,或完全重寫了代碼時,應增加 `主版號`
16+
17+
- 1.5.8 -> 2.0.0
18+
19+
### Y 次版號
20+
21+
擴充新增功能後,應增加 `次版號`,然後 `修訂號` 歸零。
22+
23+
- 1.1.5 -> 1.2.0
24+
25+
### Z 修訂號
26+
27+
擴充修復錯誤或問題增加 `修訂號`
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
sidebar_position: 2
3+
---
4+
5+
# 事件
6+
7+
監聽發生的事件,並執行對應功能。
8+
9+
## Event Listener
10+
11+
定義一個 Listener 後,向**事件管理器**註冊。
12+
13+
<span style={{ color: "red" }}>❗ 不推薦的做法</span>
14+
15+
:::caution
16+
不保證事件發生後,執行的優先順序,應考慮 [Mixin](./mixin)
17+
:::
18+
19+
```js
20+
const event = (event, callback) => TREM.variable.events.on(event, callback);
21+
22+
event("EewNewAreaAlert", (ans) => console.log("收到地震預警:", ans));
23+
```
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
---
2+
sidebar_position: 2
3+
---
4+
5+
# 擴充開發
6+
7+
並不是所有想要的功能,軟體都會有,如果有能力,不妨試試動手做看看!!!
8+
9+
## 準備
10+
11+
- Node.js ( 推薦 `>= 18.20.2` )
12+
- VSCode ( 或其他 IDE )
13+
- Git
14+
- GitHub Desktop (可選)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
---
2+
sidebar_position: 4
3+
---
4+
5+
# 自定義日誌
6+
7+
一個屬於擴充自己的日誌紀錄方式。
8+
9+
## index.js
10+
11+
```js
12+
const { TREM, Logger, MixinManager } = this.#ctx;
13+
// 傳入主視窗 Logger 類定義 (父類)
14+
// 導入新的自定義類 (繼承的子類)
15+
const { CustomLogger } = require("./logger").createCustomLogger(Logger);
16+
// 初始化自定義類
17+
this.logger = new CustomLogger("example");
18+
this.logger.info("info");
19+
```
20+
21+
## test.js
22+
23+
```js
24+
// 由於是單例模式,在 index.js 初始化後,即可在任何地方使用。
25+
const logger = require("./logger");
26+
logger.info("info");
27+
```
28+
29+
## logger.js
30+
31+
```js
32+
let globalInstance = null;
33+
let CustomLoggerClass = null;
34+
35+
function createCustomLogger(BaseLogger) {
36+
if (CustomLoggerClass && globalInstance)
37+
return {
38+
CustomLogger: CustomLoggerClass,
39+
instance: globalInstance,
40+
};
41+
42+
class CustomLogger extends BaseLogger {
43+
constructor(prefix = "") {
44+
super();
45+
46+
if (globalInstance) {
47+
globalInstance.prefix = prefix;
48+
return globalInstance;
49+
}
50+
51+
this.prefix = prefix;
52+
globalInstance = this;
53+
}
54+
55+
_formatMessage(message, ...args) {
56+
const formattedMessage = super._formatMessage(message, ...args);
57+
return this.prefix
58+
? `[${this.prefix}] ${formattedMessage}`
59+
: formattedMessage;
60+
}
61+
}
62+
63+
CustomLoggerClass = CustomLogger;
64+
65+
return {
66+
CustomLogger,
67+
instance: globalInstance,
68+
};
69+
}
70+
71+
function checkInitialized() {
72+
if (!globalInstance)
73+
throw new Error(
74+
"Logger not initialized. Please call createCustomLogger first."
75+
);
76+
}
77+
78+
module.exports = {
79+
createCustomLogger,
80+
info: (...args) => {
81+
checkInitialized();
82+
return globalInstance.info(...args);
83+
},
84+
error: (...args) => {
85+
checkInitialized();
86+
return globalInstance.error(...args);
87+
},
88+
warn: (...args) => {
89+
checkInitialized();
90+
return globalInstance.warn(...args);
91+
},
92+
debug: (...args) => {
93+
checkInitialized();
94+
return globalInstance.debug(...args);
95+
},
96+
get prefix() {
97+
checkInitialized();
98+
return globalInstance.prefix;
99+
},
100+
};
101+
```

0 commit comments

Comments
 (0)