Files
jackwener__opencli/clis/jike/create.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

106 lines
3.6 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, Strategy } from '@jackwener/opencli/registry';
/**
* 发布即刻动态
*
* 即刻首页 /following 顶部有内联发帖框("分享你的想法..."),
* 直接在其中输入文本,点击"发送"按钮即可发布。
*/
cli({
site: 'jike',
name: 'create',
description: '发布即刻动态',
domain: 'web.okjike.com',
strategy: Strategy.UI,
browser: true,
args: [
{ name: 'text', type: 'string', required: true, positional: true, help: '动态正文内容' },
],
columns: ['status', 'message'],
func: async (page, kwargs) => {
// 1. 导航到首页(有内联发帖框)
await page.goto('https://web.okjike.com');
// 2. 在发帖框中输入文本
const textResult = await page.evaluate(`(async () => {
try {
const textToInsert = ${JSON.stringify(kwargs.text)};
// 首页发帖框在 _postForm_ 容器内,查找其中的 contenteditable
const form = document.querySelector('[class*="_postForm_"]');
const editor = form
? form.querySelector('[contenteditable="true"]')
: document.querySelector('[contenteditable="true"]');
if (editor) {
editor.focus();
// 用 ClipboardEvent paste 触发 React 状态更新
const dt = new DataTransfer();
dt.setData('text/plain', textToInsert);
editor.dispatchEvent(new ClipboardEvent('paste', {
clipboardData: dt, bubbles: true, cancelable: true,
}));
await new Promise(r => setTimeout(r, 800));
// 检查是否成功插入
const inserted = editor.textContent || '';
if (inserted.length > 0) {
return { ok: true, message: 'contenteditable' };
}
}
// 回退:textarea
const textarea = form
? form.querySelector('textarea')
: document.querySelector('textarea');
if (textarea) {
textarea.focus();
const setter = Object.getOwnPropertyDescriptor(
HTMLTextAreaElement.prototype, 'value'
)?.set;
setter?.call(textarea, textToInsert);
textarea.dispatchEvent(new Event('input', { bubbles: true }));
await new Promise(r => setTimeout(r, 500));
return { ok: true, message: 'textarea' };
}
return { ok: false, message: '未找到发帖输入框' };
} catch (e) {
return { ok: false, message: e.toString() };
}
})()`);
if (!textResult.ok) {
return [{ status: 'failed', message: textResult.message }];
}
// 3. 点击"发送"按钮
const submitResult = await page.evaluate(`(async () => {
try {
await new Promise(r => setTimeout(r, 500));
// 即刻首页发帖框的按钮文字为"发送"
const candidates = [
...Array.from(document.querySelectorAll('button')).filter(btn => {
const text = btn.textContent?.trim() || '';
return text === '发送' || text === '发布';
}),
].filter(el => el && !el.disabled);
if (candidates.length === 0) {
return { ok: false, message: '未找到可用的发送按钮(按钮可能因内容为空而禁用)' };
}
candidates[0].click();
return { ok: true, message: '动态发布成功' };
} catch (e) {
return { ok: false, message: e.toString() };
}
})()`);
if (submitResult.ok) {
await page.wait(3);
}
return [{
status: submitResult.ok ? 'success' : 'failed',
message: submitResult.message,
}];
},
});