mirror of
https://github.com/jackwener/OpenCLI.git
synced 2026-09-14 18:25:42 +08:00
d2974a9ff6
* refactor(adapters): convert adapter layer from TypeScript to JavaScript Core framework stays TypeScript; adapter layer moves to JS-first. Adapters are essentially "executable config + browser scripts" that barely use TS features — this simplifies the build/distribution pipeline by removing the dist/clis/ intermediate compilation step. Changes: - Convert all 753 adapter files in clis/ from .ts to .js - Update tsconfig to exclude clis/ from compilation - Simplify build-manifest to scan clis/*.js directly (no dist/clis/) - Update discovery, main, fetch-adapters to load JS adapters from clis/ - Update generate-verified to output .js artifacts - Update package.json files field: dist/clis/ → clis/ - Fix all test files for the .ts → .js transition * fix(main): use findPackageRoot for BUILTIN_CLIS path The previous relative path (../../clis from __dirname) only worked for dist/src/main.js but broke dev mode (tsx src/main.ts) where __dirname is <repo>/src — resolving to /clis instead of <repo>/clis. Use findPackageRoot() which works for both dev and prod paths.
80 lines
2.9 KiB
JavaScript
80 lines
2.9 KiB
JavaScript
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
import { CliError } from '@jackwener/opencli/errors';
|
|
import { gotoOnesHome, onesFetchInPage } from './common.js';
|
|
import { enrichPeekEntriesWithDetails } from './enrich-tasks.js';
|
|
import { resolveTaskListLabels } from './resolve-labels.js';
|
|
import { defaultPeekBody, flattenPeekGroups, mapTaskEntry, parsePeekLimit } from './task-helpers.js';
|
|
function buildQuery(project, assign) {
|
|
const must = [];
|
|
if (project?.trim()) {
|
|
must.push({ in: { 'field_values.field006': [project.trim()] } });
|
|
}
|
|
if (assign?.trim()) {
|
|
must.push({ equal: { assign: assign.trim() } });
|
|
}
|
|
if (must.length === 0) {
|
|
return { must: [] };
|
|
}
|
|
return { must };
|
|
}
|
|
cli({
|
|
site: 'ones',
|
|
name: 'tasks',
|
|
description: 'ONES Project API — list work items (POST team/:team/filters/peek); use token-info -f json for team uuid',
|
|
domain: 'ones.cn',
|
|
strategy: Strategy.COOKIE,
|
|
browser: true,
|
|
navigateBefore: false,
|
|
args: [
|
|
{
|
|
name: 'team',
|
|
type: 'str',
|
|
required: false,
|
|
positional: true,
|
|
help: 'Team UUID (8 chars), or set ONES_TEAM_UUID',
|
|
},
|
|
{
|
|
name: 'project',
|
|
type: 'str',
|
|
required: false,
|
|
help: 'Filter by project UUID (field006 / 所属项目)',
|
|
},
|
|
{
|
|
name: 'assign',
|
|
type: 'str',
|
|
required: false,
|
|
help: 'Filter by assignee user UUID (负责人 assign)',
|
|
},
|
|
{
|
|
name: 'limit',
|
|
type: 'int',
|
|
default: 30,
|
|
help: 'Max rows after flattening groups (default 30)',
|
|
},
|
|
],
|
|
columns: ['title', 'status', 'project', 'uuid', 'updated', '工时'],
|
|
func: async (page, kwargs) => {
|
|
const team = kwargs.team?.trim() ||
|
|
process.env.ONES_TEAM_UUID?.trim() ||
|
|
process.env.ONES_TEAM_ID?.trim();
|
|
if (!team) {
|
|
throw new CliError('CONFIG', 'team UUID required', 'Pass team as first argument or set ONES_TEAM_UUID (see `opencli ones token-info -f json` → teams[].uuid).');
|
|
}
|
|
const project = kwargs.project?.trim();
|
|
const assign = kwargs.assign?.trim();
|
|
const limit = parsePeekLimit(kwargs.limit, 30);
|
|
await gotoOnesHome(page);
|
|
const body = defaultPeekBody(buildQuery(project, assign));
|
|
const path = `team/${team}/filters/peek`;
|
|
const parsed = (await onesFetchInPage(page, path, {
|
|
method: 'POST',
|
|
body: JSON.stringify(body),
|
|
skipGoto: true,
|
|
}));
|
|
const entries = flattenPeekGroups(parsed, limit);
|
|
const enriched = await enrichPeekEntriesWithDetails(page, team, entries, true);
|
|
const labels = await resolveTaskListLabels(page, team, enriched, true);
|
|
return enriched.map((e) => mapTaskEntry(e, labels));
|
|
},
|
|
});
|