Files
jackwener__opencli/clis/facebook/groups.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

47 lines
1.4 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { cli } from '@jackwener/opencli/registry';
cli({
site: 'facebook',
name: 'groups',
description: 'List your Facebook groups',
domain: 'www.facebook.com',
args: [
{ name: 'limit', type: 'int', default: 20, help: 'Number of groups' },
],
columns: ['index', 'name', 'last_post', 'url'],
pipeline: [
{ navigate: { url: 'https://www.facebook.com/groups/feed/', settleMs: 3000 } },
{ evaluate: `(() => {
const limit = \${{ args.limit }};
const links = Array.from(document.querySelectorAll('a'))
.filter(a => {
const href = a.href || '';
return href.includes('/groups/') &&
!href.includes('/feed') &&
!href.includes('/discover') &&
!href.includes('/joins') &&
!href.includes('category=create') &&
a.textContent.trim().length > 2;
});
// Deduplicate by href
const seen = new Set();
const groups = [];
for (const a of links) {
const href = a.href.split('?')[0];
if (seen.has(href)) continue;
seen.add(href);
const raw = a.textContent.trim().replace(/\\s+/g, ' ');
// Split name from "上次发帖" info
const parts = raw.split(/上次发帖|Last post/);
groups.push({
name: (parts[0] || '').trim().substring(0, 60),
last_post: parts[1] ? parts[1].replace(/^[::]/, '').trim() : '-',
url: href,
});
}
return groups.slice(0, limit).map((g, i) => ({ index: i + 1, ...g }));
})()
` },
],
});