9b395f5cc3
Build Chrome Extension / build (push) Waiting to run
Trigger Website Rebuild (Docs Updated) / dispatch (push) Waiting to run
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
39 lines
1.3 KiB
JavaScript
39 lines
1.3 KiB
JavaScript
import { cli } from '@jackwener/opencli/registry';
|
|
|
|
cli({
|
|
site: 'nowcoder',
|
|
name: 'practice',
|
|
access: 'read',
|
|
description: 'Categorized practice questions with progress',
|
|
domain: 'www.nowcoder.com',
|
|
args: [
|
|
{ name: 'job', type: 'str', default: '11226', help: 'Career ID (11226=Software, 11227=Hardware, 11229=Product, 11230=Finance)' },
|
|
{ name: 'limit', type: 'int', default: 20, help: 'Number of items' },
|
|
],
|
|
columns: ['category', 'subject', 'total', 'done', 'remaining'],
|
|
pipeline: [
|
|
{ navigate: 'https://www.nowcoder.com' },
|
|
{ evaluate: `(async () => {
|
|
const jobId = \${{ args.job | json }};
|
|
const limit = \${{ args.limit }};
|
|
const r = await fetch('https://gw-c.nowcoder.com/api/sparta/intelligent/getPCIntelligentList?jobId=' + jobId, {credentials: 'include'});
|
|
const d = await r.json();
|
|
if (!d.success) throw new Error(d.msg || 'API failed');
|
|
const all = [];
|
|
for (const tag of (d.data?.tags || [])) {
|
|
for (const item of (tag.items || [])) {
|
|
all.push({
|
|
category: tag.title || 'recommended',
|
|
subject: item.title,
|
|
total: item.tcount,
|
|
done: item.rcount,
|
|
remaining: item.leftCount,
|
|
});
|
|
}
|
|
}
|
|
return all.slice(0, limit);
|
|
})()
|
|
` },
|
|
],
|
|
});
|