Files
jackwener__opencli/clis/ones/task.js
jakevin d2974a9ff6 refactor(adapters): convert adapter layer from TypeScript to JavaScript (#928)
* 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.
2026-04-10 14:52:18 +08:00

67 lines
2.7 KiB
JavaScript

import { cli, Strategy } from '@jackwener/opencli/registry';
import { CliError } from '@jackwener/opencli/errors';
import { onesFetchInPage } from './common.js';
import { formatStamp } from './task-helpers.js';
/**
* 工作项详情 — 对应前端路由 …/team/<team>/filter/view/…/task/<uuid>
* API: GET team/:teamUUID/task/:taskUUIDOrNumber/info
* @see https://docs.ones.cn/project/open-api-doc/project/task.html
*/
cli({
site: 'ones',
name: 'task',
description: 'ONES — work item detail (GET team/:team/task/:id/info); id is URL segment after …/task/',
domain: 'ones.cn',
strategy: Strategy.COOKIE,
browser: true,
navigateBefore: false,
args: [
{
name: 'id',
type: 'str',
required: true,
positional: true,
help: 'Work item UUID (often 16 chars) from …/task/<id>',
},
{
name: 'team',
type: 'str',
required: false,
help: 'Team UUID (8 chars from …/team/<team>/…), or set ONES_TEAM_UUID',
},
],
columns: ['uuid', 'summary', 'number', 'status_uuid', 'assign', 'owner', 'project_uuid', 'updated'],
func: async (page, kwargs) => {
const id = String(kwargs.id ?? '').trim();
if (!id) {
throw new CliError('CONFIG', 'task id required', 'Pass the work item uuid from the URL path …/task/<id>');
}
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', 'Use --team <teamUUID> or set ONES_TEAM_UUID (from …/team/<team>/…).');
}
const path = `team/${team}/task/${encodeURIComponent(id)}/info`;
const data = (await onesFetchInPage(page, path, { method: 'GET' }));
if (typeof data.uuid !== 'string') {
const hint = typeof data.reason === 'string'
? data.reason
: 'Use -f json to inspect response; check id length (often 16) and team.';
throw new CliError('FETCH_ERROR', `ONES task info: ${hint}`, 'Confirm task uuid and team match the browser URL.');
}
return [
{
uuid: String(data.uuid),
summary: String(data.summary ?? ''),
number: data.number != null ? String(data.number) : '',
status_uuid: String(data.status_uuid ?? ''),
assign: String(data.assign ?? ''),
owner: String(data.owner ?? ''),
project_uuid: String(data.project_uuid ?? ''),
updated: formatStamp(data.server_update_stamp),
},
];
},
});