9b395f5cc3
E2E Headed Chrome / e2e-headed (macos-15) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (ubuntu-latest) (push) Has been cancelled
E2E Headed Chrome / e2e-headed (windows-latest) (push) Has been cancelled
CI / build (macos-latest) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
CI / unit-test (push) Has been cancelled
CI / bun-test (push) Has been cancelled
CI / adapter-test (push) Has been cancelled
CI / smoke-test (macos-latest) (push) Has been cancelled
CI / smoke-test (ubuntu-latest) (push) Has been cancelled
Security Audit / audit (push) Has been cancelled
Build Chrome Extension / build (push) Has been cancelled
Trigger Website Rebuild (Docs Updated) / dispatch (push) Has been cancelled
38 lines
1.3 KiB
JavaScript
38 lines
1.3 KiB
JavaScript
/**
|
||
* peek 列表只有轻量字段,用 batch tasks/info 补全 summary 等(ONES 文档 #7)
|
||
*/
|
||
import { onesFetchInPage } from './common.js';
|
||
const BATCH_SIZE = 40;
|
||
export async function enrichPeekEntriesWithDetails(page, team, entries, skipGoto) {
|
||
const ids = [...new Set(entries.map((e) => String(e.uuid ?? '').trim()).filter(Boolean))];
|
||
if (ids.length === 0)
|
||
return entries;
|
||
const byId = new Map();
|
||
try {
|
||
for (let i = 0; i < ids.length; i += BATCH_SIZE) {
|
||
const slice = ids.slice(i, i + BATCH_SIZE);
|
||
const parsed = (await onesFetchInPage(page, `team/${team}/tasks/info`, {
|
||
method: 'POST',
|
||
body: JSON.stringify({ ids: slice }),
|
||
skipGoto,
|
||
}));
|
||
const tasks = Array.isArray(parsed.tasks) ? parsed.tasks : [];
|
||
for (const t of tasks) {
|
||
const id = String(t.uuid ?? '');
|
||
if (id)
|
||
byId.set(id, t);
|
||
}
|
||
}
|
||
}
|
||
catch {
|
||
return entries;
|
||
}
|
||
if (byId.size === 0)
|
||
return entries;
|
||
return entries.map((e) => {
|
||
const id = String(e.uuid ?? '');
|
||
const full = id ? byId.get(id) : undefined;
|
||
return full ? { ...e, ...full } : e;
|
||
});
|
||
}
|