ework-web 0.10.101 → 0.10.102

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ework-web",
3
- "version": "0.10.101",
3
+ "version": "0.10.102",
4
4
  "type": "module",
5
5
  "description": "ework-web — standalone multi-project issue tracker. Local SQLite-backed, no external API dependency. Bun + TypeScript + SSR HTML.",
6
6
  "license": "MIT",
package/src/index.ts CHANGED
@@ -208,7 +208,6 @@ const SEC_HEADERS: Record<string, string> = {
208
208
  "x-content-type-options": "nosniff",
209
209
  "x-frame-options": "DENY",
210
210
  "referrer-policy": "same-origin",
211
- "permissions-policy": "()",
212
211
  };
213
212
 
214
213
  function buildCsp(cfg: Config): string {
@@ -1828,11 +1827,19 @@ async function handle(req: Request, url: URL, ip: string, ctx: { authed: boolean
1828
1827
  const [, owner, repo, numStr] = cp;
1829
1828
  if (!(owner && repo && numStr)) return json({ error: "bad path" }, 400);
1830
1829
  const number = Number(numStr);
1830
+ const isFormSubmit = (req.headers.get("content-type") || "").includes("application/x-www-form-urlencoded");
1831
1831
  try {
1832
- const payload = (await req.json().catch(() => ({}))) as { body?: unknown; close?: unknown; reopen?: unknown };
1833
- const body = typeof payload.body === "string" ? payload.body : "";
1832
+ const payload = isFormSubmit
1833
+ ? ((await req.formData().catch(() => new FormData())) as FormData)
1834
+ : ((await req.json().catch(() => ({}))) as { body?: unknown; close?: unknown; reopen?: unknown });
1835
+ const body = typeof (payload as FormData).get === "function"
1836
+ ? String((payload as FormData).get("body") ?? "")
1837
+ : typeof (payload as { body?: unknown }).body === "string"
1838
+ ? ((payload as { body: string }).body)
1839
+ : "";
1834
1840
  const hasBody = body.trim().length > 0;
1835
- const wantsStateChange = payload.close === true || payload.reopen === true;
1841
+ const jsonPayload = isFormSubmit ? null : (payload as { close?: unknown; reopen?: unknown });
1842
+ const wantsStateChange = (jsonPayload?.close ?? jsonPayload?.reopen) === true;
1836
1843
  if (!hasBody && !wantsStateChange) return json({ error: "body required" }, 400);
1837
1844
  if (body.length > 65536) return json({ error: "body too long" }, 413);
1838
1845
  const project = await getProject(owner, repo);
@@ -1855,11 +1862,11 @@ async function handle(req: Request, url: URL, ip: string, ctx: { authed: boolean
1855
1862
  }
1856
1863
  let closed = false;
1857
1864
  let reopened = false;
1858
- if (payload.close === true) {
1865
+ if (jsonPayload?.close === true) {
1859
1866
  await setIssueState(issue.id, "closed");
1860
1867
  closed = true;
1861
1868
  void emitIssueEvent(project.id, issue.id, "closed", url.origin);
1862
- } else if (payload.reopen === true) {
1869
+ } else if (jsonPayload?.reopen === true) {
1863
1870
  await setIssueState(issue.id, "open");
1864
1871
  reopened = true;
1865
1872
  void emitIssueEvent(project.id, issue.id, "reopened", url.origin);
@@ -1867,8 +1874,17 @@ async function handle(req: Request, url: URL, ip: string, ctx: { authed: boolean
1867
1874
  if (view) {
1868
1875
  void emitCommentEvent(project.id, issue.id, view.id, url.origin);
1869
1876
  }
1877
+ if (isFormSubmit) {
1878
+ return new Response(null, {
1879
+ status: 303,
1880
+ headers: { location: `/${owner}/${repo}/issues/${number}${view ? `#comment-${view.id}` : ""}` },
1881
+ });
1882
+ }
1870
1883
  return json({ comment: view, closed, reopened });
1871
1884
  } catch (e) {
1885
+ if (isFormSubmit) {
1886
+ return new Response(null, { status: 303, headers: { location: `/${owner}/${repo}/issues/${number}` } });
1887
+ }
1872
1888
  return json({ error: errMsg(e) }, e instanceof StoreError ? e.status : 500);
1873
1889
  }
1874
1890
  }
@@ -263,8 +263,8 @@ ${props.descriptionHtml.trim() ? `<div class="desc-wrap">
263
263
  ${props.descriptionCollapsed ? `<button type="button" class="desc-toggle" id="descToggle">显示详情 ▾</button>` : ""}
264
264
  </div>` : ""}
265
265
  ${props.writesEnabled !== false
266
- ? `<form id="composer" class="composer">
267
- <textarea id="composerInput" rows="5" placeholder="写评论…(Ctrl/⌘+Enter 发送,以 ${escapeHtml(op)} 身份;可粘贴/选择图片或任意文件上传)"></textarea>
266
+ ? `<form id="composer" class="composer" method="post" action="/api/${encodeURIComponent(repoOwner ?? "")}/${encodeURIComponent(repoName ?? "")}/issues/${props.issueNumber}/comment">
267
+ <textarea id="composerInput" name="body" rows="5" placeholder="写评论…(Ctrl/⌘+Enter 发送,以 ${escapeHtml(op)} 身份;可粘贴/选择图片或任意文件上传)"></textarea>
268
268
  <div class="submit-col">
269
269
  <button type="button" id="composerClose" class="btn-close" data-action="${toggleAction}" title="${toggleTitle}">${toggleLabel}</button>
270
270
  <label class="upload-btn" title="上传图片/附件/文件">📎<input type="file" id="composerFile" multiple></label>
package/src/static/app.js CHANGED
@@ -6,6 +6,16 @@
6
6
  const initialEl = document.getElementById("initial-data");
7
7
  const P = initialEl ? JSON.parse(initialEl.textContent) : null;
8
8
  if (!P) return;
9
+ const earlyForm = document.getElementById("composer");
10
+ if (earlyForm) {
11
+ earlyForm.addEventListener(
12
+ "submit",
13
+ (e) => {
14
+ if (!e.defaultPrevented) e.preventDefault();
15
+ },
16
+ { capture: true }
17
+ );
18
+ }
9
19
  const MAX_DOM = 300;
10
20
  const POLL_MS = 5000;
11
21
  const NEW_FADE_MS = 4500;