Files
wehub-resource-sync 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
chore: import upstream snapshot with attribution
2026-07-13 12:39:48 +08:00

65 lines
2.2 KiB
JavaScript

/**
* 把 status / project 的 uuid 解析为中文名(团队级接口各查一次或按批)
*/
import { onesFetchInPage } from './common.js';
import { getTaskProjectRawId } from './task-helpers.js';
export async function loadTaskStatusLabels(page, team, skipGoto) {
const map = new Map();
try {
const parsed = (await onesFetchInPage(page, `team/${team}/task_statuses`, {
method: 'GET',
skipGoto,
}));
const list = Array.isArray(parsed.task_statuses)
? parsed.task_statuses
: [];
for (const s of list) {
const id = String(s.uuid ?? '');
const name = String(s.name ?? '');
if (id && name)
map.set(id, name);
}
}
catch {
/* 降级为仅显示 uuid */
}
return map;
}
const PROJECT_INFO_CHUNK = 25;
export async function loadProjectLabels(page, team, projectUuids, skipGoto) {
const map = new Map();
const ids = [...new Set(projectUuids.filter(Boolean))];
if (ids.length === 0)
return map;
try {
for (let i = 0; i < ids.length; i += PROJECT_INFO_CHUNK) {
const slice = ids.slice(i, i + PROJECT_INFO_CHUNK);
const q = slice.map(encodeURIComponent).join(',');
const path = `team/${team}/projects/info?ids=${q}`;
const parsed = (await onesFetchInPage(page, path, {
method: 'GET',
skipGoto,
}));
const projects = Array.isArray(parsed.projects) ? parsed.projects : [];
for (const p of projects) {
const id = String(p.uuid ?? '');
const name = String(p.name ?? '');
if (id && name)
map.set(id, name);
}
}
}
catch {
/* 降级 */
}
return map;
}
export async function resolveTaskListLabels(page, team, entries, skipGoto) {
const projectUuids = entries.map((e) => getTaskProjectRawId(e)).filter(Boolean);
const [statusByUuid, projectByUuid] = await Promise.all([
loadTaskStatusLabels(page, team, skipGoto),
loadProjectLabels(page, team, projectUuids, skipGoto),
]);
return { statusByUuid, projectByUuid };
}