vite-plugin-opencode-assistant 1.0.29 → 1.0.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -88,15 +88,8 @@ const __vue_sfc__ = /* @__PURE__ */ _defineComponent({
88
88
  updateStatusFromTask,
89
89
  setStarting
90
90
  } = useServiceStatus();
91
- const {
92
- selectedElements,
93
- removeElement,
94
- clearElements
95
- } = useSelectedElements();
96
- const {
97
- theme,
98
- sendThemeToIframe
99
- } = useTheme(widgetTheme, widgetRef);
91
+ const { selectedElements, removeElement, clearElements } = useSelectedElements();
92
+ const { theme, sendThemeToIframe } = useTheme(widgetTheme, widgetRef);
100
93
  const {
101
94
  sessions,
102
95
  loadingSessionList,
@@ -211,13 +204,13 @@ const __vue_sfc__ = /* @__PURE__ */ _defineComponent({
211
204
  }
212
205
  });
213
206
  onMounted(() => {
214
- if (serviceStatus.value !== "idle") {
207
+ if (serviceStatus.value === "ready") {
215
208
  loadSessions();
216
209
  serverSSE.connect();
217
210
  opencodeSSE.connect();
218
211
  updateContext(true);
219
212
  }
220
- if (autoOpen && serviceStatus.value !== "idle") {
213
+ if (autoOpen && serviceStatus.value === "ready") {
221
214
  setTimeout(() => {
222
215
  open.value = true;
223
216
  }, 1e3);
@@ -252,7 +245,9 @@ const __vue_sfc__ = /* @__PURE__ */ _defineComponent({
252
245
  previewPageUrl: window.location.href,
253
246
  previewPageTitle: document.title
254
247
  });
255
- (_a = widgetRef.value) == null ? void 0 : _a.sendMessageToIframe("OPENCODE_INSERT_FILE_PART", { element: elementWithContext });
248
+ (_a = widgetRef.value) == null ? void 0 : _a.sendMessageToIframe("OPENCODE_INSERT_FILE_PART", {
249
+ element: elementWithContext
250
+ });
256
251
  showNotification(`\u8282\u70B9\u5DF2\u6DFB\u52A0\u5230\u5BF9\u8BDD\u6846`, { mode: "page" });
257
252
  };
258
253
  const handleClearSelected = () => {
@@ -430,7 +430,7 @@ function startProxyServer(targetUrl, port, options = {}) {
430
430
  server.listen(port, () => {
431
431
  const address = server.address();
432
432
  const actualPort = typeof address === "object" && address ? address.port : port;
433
- log.info(`Proxy server started on port ${actualPort} -> ${targetUrl}`);
433
+ log.debug(`Proxy server started on port ${actualPort} -> ${targetUrl}`);
434
434
  resolve({ server, actualPort });
435
435
  });
436
436
  });
@@ -25,7 +25,7 @@ export declare class OpenCodeService {
25
25
  workspaceRoot: string | null;
26
26
  constructor(config: Required<OpenCodeOptions>, api: OpenCodeAPI, sseClients: Set<http.ServerResponse>, onPortAllocated: (port: number) => void, onProxyPortAllocated: (port: number) => void);
27
27
  private sendTaskUpdate;
28
- start(corsOrigins?: string[], contextApiUrl?: string, viteOrigin?: string): Promise<void>;
28
+ start(corsOrigins?: string[], contextApiUrl?: string, logsApiUrl?: string, viteOrigin?: string): Promise<void>;
29
29
  retryWarmupChromeMcp(viteOrigin?: string): Promise<{
30
30
  success: boolean;
31
31
  errorType?: string;
@@ -86,7 +86,7 @@ class OpenCodeService {
86
86
  }
87
87
  });
88
88
  }
89
- start(corsOrigins, contextApiUrl, viteOrigin) {
89
+ start(corsOrigins, contextApiUrl, logsApiUrl, viteOrigin) {
90
90
  return __async(this, null, function* () {
91
91
  if (this.isStarted && this.webProcess) {
92
92
  log.debug("Services already started, skipping");
@@ -101,6 +101,7 @@ class OpenCodeService {
101
101
  const timer = log.timer("startServices", {
102
102
  corsOrigins,
103
103
  contextApiUrl,
104
+ logsApiUrl,
104
105
  viteOrigin
105
106
  });
106
107
  log.info("Starting OpenCode services...");
@@ -144,7 +145,7 @@ Please install OpenCode first:
144
145
  }
145
146
  timer.checkpoint("Port allocated");
146
147
  this.workspaceRoot = findGitRoot(process.cwd());
147
- log.info(`Using workspace root: ${this.workspaceRoot}`);
148
+ log.debug(`Using workspace root: ${this.workspaceRoot}`);
148
149
  this.sendTaskUpdate("preparing_runtime");
149
150
  const configDir = prepareOpenCodeRuntime(this.workspaceRoot);
150
151
  timer.checkpoint("Plugin setup complete");
@@ -161,11 +162,12 @@ Please install OpenCode first:
161
162
  cwd: this.workspaceRoot,
162
163
  configDir,
163
164
  corsOrigins,
164
- contextApiUrl
165
+ contextApiUrl,
166
+ logsApiUrl
165
167
  });
166
168
  timer.checkpoint("Web process started");
167
169
  const webUrl = `http://${this.config.hostname}:${this.actualWebPort}`;
168
- log.info(`Waiting for OpenCode Web to become ready at ${webUrl}...`);
170
+ log.debug(`Waiting for OpenCode Web to become ready at ${webUrl}...`);
169
171
  this.sendTaskUpdate("waiting_web_ready");
170
172
  try {
171
173
  yield waitForServer(webUrl, SERVER_START_TIMEOUT, this.webProcess);
@@ -1,4 +1,6 @@
1
1
  import type { ViteDevServer } from "vite";
2
2
  import type { EndpointContext } from "./types.js";
3
+ import { LOGS_API_PATH } from "./logs.js";
3
4
  export * from "./types.js";
5
+ export { LOGS_API_PATH };
4
6
  export declare function setupMiddlewares(server: ViteDevServer, ctx: EndpointContext): void;
@@ -4,6 +4,7 @@ import { setupStartEndpoint } from "./start.js";
4
4
  import { setupSseEndpoint } from "./sse.js";
5
5
  import { setupSessionsEndpoint } from "./sessions.js";
6
6
  import { setupWarmupEndpoint } from "./warmup.js";
7
+ import { setupLogsEndpoint, LOGS_API_PATH } from "./logs.js";
7
8
  export * from "./types.js";
8
9
  function setupMiddlewares(server, ctx) {
9
10
  setupWidgetEndpoints(server, ctx);
@@ -12,7 +13,9 @@ function setupMiddlewares(server, ctx) {
12
13
  setupSseEndpoint(server, ctx);
13
14
  setupSessionsEndpoint(server, ctx);
14
15
  setupWarmupEndpoint(server, ctx);
16
+ setupLogsEndpoint(server);
15
17
  }
16
18
  export {
19
+ LOGS_API_PATH,
17
20
  setupMiddlewares
18
21
  };
@@ -0,0 +1,11 @@
1
+ /**
2
+ * @fileoverview 进程日志端点
3
+ * @description 提供 HTTP API 获取 Vite 进程日志缓冲区内容
4
+ */
5
+ import type { ViteDevServer } from "vite";
6
+ /** 日志 API 路径 */
7
+ export declare const LOGS_API_PATH = "/__opencode_process_logs__";
8
+ /**
9
+ * 设置日志端点
10
+ */
11
+ export declare function setupLogsEndpoint(server: ViteDevServer): void;
@@ -0,0 +1,107 @@
1
+ var __async = (__this, __arguments, generator) => {
2
+ return new Promise((resolve, reject) => {
3
+ var fulfilled = (value) => {
4
+ try {
5
+ step(generator.next(value));
6
+ } catch (e) {
7
+ reject(e);
8
+ }
9
+ };
10
+ var rejected = (value) => {
11
+ try {
12
+ step(generator.throw(value));
13
+ } catch (e) {
14
+ reject(e);
15
+ }
16
+ };
17
+ var step = (x) => x.done ? resolve(x.value) : Promise.resolve(x.value).then(fulfilled, rejected);
18
+ step((generator = generator.apply(__this, __arguments)).next());
19
+ });
20
+ };
21
+ import {
22
+ getProcessLogBuffer
23
+ } from "@vite-plugin-opencode-assistant/shared";
24
+ import { RequestContext, createLogger } from "@vite-plugin-opencode-assistant/shared";
25
+ const log = createLogger("Endpoints:Logs");
26
+ const LOGS_API_PATH = "/__opencode_process_logs__";
27
+ function setupLogsEndpoint(server) {
28
+ server.middlewares.use(LOGS_API_PATH, (req, res) => __async(null, null, function* () {
29
+ const reqCtx = new RequestContext(req.method || "GET", LOGS_API_PATH);
30
+ res.setHeader("Content-Type", "application/json");
31
+ res.setHeader("Access-Control-Allow-Origin", "*");
32
+ res.setHeader("Access-Control-Allow-Methods", "GET, DELETE, OPTIONS");
33
+ res.setHeader("Access-Control-Allow-Headers", "Content-Type");
34
+ if (req.method === "OPTIONS") {
35
+ res.writeHead(200);
36
+ res.end();
37
+ reqCtx.end(200);
38
+ return;
39
+ }
40
+ const buffer = getProcessLogBuffer();
41
+ if (req.method === "GET") {
42
+ try {
43
+ const url = new URL(req.url || "", `http://${req.headers.host || "localhost"}`);
44
+ const levelParam = url.searchParams.get("level");
45
+ const limitParam = url.searchParams.get("limit");
46
+ const sourceParam = url.searchParams.get("source");
47
+ const sinceParam = url.searchParams.get("since");
48
+ const options = {};
49
+ if (levelParam) {
50
+ const levels = levelParam.split(",").map((l) => l.trim());
51
+ options.level = levels.length === 1 ? levels[0] : levels;
52
+ }
53
+ if (limitParam) {
54
+ const limit = parseInt(limitParam, 10);
55
+ if (limit > 0 && limit <= 1e3) {
56
+ options.limit = limit;
57
+ }
58
+ }
59
+ if (sourceParam) {
60
+ options.source = sourceParam;
61
+ }
62
+ if (sinceParam) {
63
+ options.since = sinceParam;
64
+ }
65
+ const logs = buffer.getLogs(options);
66
+ log.debug("Logs requested", {
67
+ params: { level: levelParam, limit: limitParam, source: sourceParam, since: sinceParam },
68
+ resultCount: logs.length,
69
+ bufferSize: buffer.size()
70
+ });
71
+ res.writeHead(200);
72
+ res.end(
73
+ JSON.stringify({
74
+ logs,
75
+ meta: {
76
+ total: buffer.size(),
77
+ returned: logs.length,
78
+ filters: options
79
+ }
80
+ })
81
+ );
82
+ reqCtx.end(200);
83
+ } catch (e) {
84
+ log.error("Failed to get logs", { error: e });
85
+ res.writeHead(500);
86
+ res.end(JSON.stringify({ error: "Internal server error" }));
87
+ reqCtx.error(e);
88
+ }
89
+ return;
90
+ }
91
+ if (req.method === "DELETE") {
92
+ buffer.clear();
93
+ log.info("Log buffer cleared");
94
+ res.writeHead(200);
95
+ res.end(JSON.stringify({ success: true, message: "Log buffer cleared" }));
96
+ reqCtx.end(200);
97
+ return;
98
+ }
99
+ res.writeHead(405);
100
+ res.end(JSON.stringify({ error: "Method not allowed" }));
101
+ reqCtx.end(405);
102
+ }));
103
+ }
104
+ export {
105
+ LOGS_API_PATH,
106
+ setupLogsEndpoint
107
+ };
package/es/index.js CHANGED
@@ -40,9 +40,10 @@ import {
40
40
  DEFAULT_CONFIG,
41
41
  DEFAULT_PROXY_PORT,
42
42
  createLogger,
43
- setVerbose
43
+ setVerbose,
44
+ initProcessLogCapture
44
45
  } from "@vite-plugin-opencode-assistant/shared";
45
- import { setupMiddlewares } from "./endpoints/index.js";
46
+ import { setupMiddlewares, LOGS_API_PATH } from "./endpoints/index.js";
46
47
  import { injectWidget } from "./core/injector.js";
47
48
  import { OpenCodeAPI } from "./core/api.js";
48
49
  import { OpenCodeService } from "./core/service.js";
@@ -63,6 +64,7 @@ function createOpenCodePlugin(options = {}) {
63
64
  var _a;
64
65
  const config = __spreadValues(__spreadValues({}, DEFAULT_CONFIG), options);
65
66
  setVerbose(config.verbose);
67
+ initProcessLogCapture({ maxSize: 500 });
66
68
  const log = createLogger("Plugin");
67
69
  let actualWebPort = config.webPort;
68
70
  let actualProxyPort = (_a = config.proxyPort) != null ? _a : DEFAULT_PROXY_PORT;
@@ -144,14 +146,16 @@ function createOpenCodePlugin(options = {}) {
144
146
  }
145
147
  viteOrigin = `http://${viteHost}:${vitePort}`;
146
148
  const contextApiUrl = `http://${viteHost}:${vitePort}${CONTEXT_API_PATH}`;
149
+ const logsApiUrl = `http://${viteHost}:${vitePort}${LOGS_API_PATH}`;
147
150
  log.debug("Vite server ready", {
148
151
  vitePort,
149
152
  viteHost,
150
153
  viteOrigin,
151
- contextApiUrl
154
+ contextApiUrl,
155
+ logsApiUrl
152
156
  });
153
157
  try {
154
- yield service.start([viteOrigin], contextApiUrl, viteOrigin);
158
+ yield service.start([viteOrigin], contextApiUrl, logsApiUrl, viteOrigin);
155
159
  } catch (e) {
156
160
  log.error("Failed to start services", { error: e });
157
161
  }
@@ -119,15 +119,8 @@ const __vue_sfc__ = /* @__PURE__ */ (0, import_vue.defineComponent)({
119
119
  updateStatusFromTask,
120
120
  setStarting
121
121
  } = (0, import_useServiceStatus.useServiceStatus)();
122
- const {
123
- selectedElements,
124
- removeElement,
125
- clearElements
126
- } = (0, import_useSelectedElements.useSelectedElements)();
127
- const {
128
- theme,
129
- sendThemeToIframe
130
- } = (0, import_useTheme.useTheme)(widgetTheme, widgetRef);
122
+ const { selectedElements, removeElement, clearElements } = (0, import_useSelectedElements.useSelectedElements)();
123
+ const { theme, sendThemeToIframe } = (0, import_useTheme.useTheme)(widgetTheme, widgetRef);
131
124
  const {
132
125
  sessions,
133
126
  loadingSessionList,
@@ -242,13 +235,13 @@ const __vue_sfc__ = /* @__PURE__ */ (0, import_vue.defineComponent)({
242
235
  }
243
236
  });
244
237
  (0, import_vue2.onMounted)(() => {
245
- if (serviceStatus.value !== "idle") {
238
+ if (serviceStatus.value === "ready") {
246
239
  loadSessions();
247
240
  serverSSE.connect();
248
241
  opencodeSSE.connect();
249
242
  updateContext(true);
250
243
  }
251
- if (autoOpen && serviceStatus.value !== "idle") {
244
+ if (autoOpen && serviceStatus.value === "ready") {
252
245
  setTimeout(() => {
253
246
  open.value = true;
254
247
  }, 1e3);
@@ -283,7 +276,9 @@ const __vue_sfc__ = /* @__PURE__ */ (0, import_vue.defineComponent)({
283
276
  previewPageUrl: window.location.href,
284
277
  previewPageTitle: document.title
285
278
  });
286
- (_a = widgetRef.value) == null ? void 0 : _a.sendMessageToIframe("OPENCODE_INSERT_FILE_PART", { element: elementWithContext });
279
+ (_a = widgetRef.value) == null ? void 0 : _a.sendMessageToIframe("OPENCODE_INSERT_FILE_PART", {
280
+ element: elementWithContext
281
+ });
287
282
  showNotification(`\u8282\u70B9\u5DF2\u6DFB\u52A0\u5230\u5BF9\u8BDD\u6846`, { mode: "page" });
288
283
  };
289
284
  const handleClearSelected = () => {