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
31 lines
1.1 KiB
JavaScript
31 lines
1.1 KiB
JavaScript
import { cli, Strategy } from '@jackwener/opencli/registry';
|
|
import { conversationSelectionArgs, setConversationPinned } from './_actions.js';
|
|
|
|
function defineToggle(name, desiredPinned) {
|
|
cli({
|
|
site: 'codex',
|
|
name,
|
|
access: 'write',
|
|
description: `${name === 'pin' ? 'Pin' : 'Unpin'} the selected Codex conversation via the Chat actions header menu.`,
|
|
domain: 'localhost',
|
|
strategy: Strategy.UI,
|
|
browser: true,
|
|
args: [...conversationSelectionArgs],
|
|
columns: ['status', 'thread_id', 'project', 'conversation'],
|
|
func: async (page, kwargs) => {
|
|
const result = await setConversationPinned(page, kwargs, desiredPinned);
|
|
return [{
|
|
status: result.status,
|
|
thread_id: result.selected.threadId,
|
|
project: result.selected.project,
|
|
conversation: result.selected.conversation,
|
|
}];
|
|
},
|
|
});
|
|
}
|
|
|
|
// The Chat actions menu only shows the CURRENT state's label (Pin chat OR
|
|
// Unpin chat, never both). Each command binds to its matching label.
|
|
defineToggle('pin', true);
|
|
defineToggle('unpin', false);
|