* feat: display provider logos for favorite/recent models Show provider logo next to model name in favorites and recents Render provider logos in ModelControls, ModelMultiSelect, and ModelSelector lists Maintain zero-logo state for other sections to avoid clutter * feat: render user message as markdown instead of plain text Render agent mentions as markdown links in user text Apply inside list style for chat content to fix list rendering Rely on SimpleMarkdownRenderer for consistent rendering * fix(openchamber): adjust layout and overscroll behavior Enable overscroll-auto on overlay containers for smoother scrolling Move page content to full-width wrapper and preserve section borders Show AboutSettings inside its own bordered block when visible * feat: integrate GitHub auth status store and UI Introduce GitHubAuthStore to track connection status and polling Show GitHub avatar in header when connected Guard issue/pr dialogs behind GitHub auth status and show notices * feat: add GitHub multi-account support Add API and UI flow to activate a GitHub account Show and switch between multiple GitHub accounts in header Persist and normalize accounts list with current selection
59 lines
2.8 KiB
TypeScript
59 lines
2.8 KiB
TypeScript
import type {
|
|
GitHubAPI,
|
|
GitHubAuthStatus,
|
|
GitHubIssueCommentsResult,
|
|
GitHubIssueGetResult,
|
|
GitHubIssuesListResult,
|
|
GitHubPullRequestContextResult,
|
|
GitHubPullRequestsListResult,
|
|
GitHubPullRequest,
|
|
GitHubPullRequestCreateInput,
|
|
GitHubPullRequestMergeInput,
|
|
GitHubPullRequestMergeResult,
|
|
GitHubPullRequestReadyInput,
|
|
GitHubPullRequestReadyResult,
|
|
GitHubPullRequestStatus,
|
|
GitHubDeviceFlowComplete,
|
|
GitHubDeviceFlowStart,
|
|
GitHubUserSummary,
|
|
} from '@openchamber/ui/lib/api/types';
|
|
|
|
import { sendBridgeMessage } from './bridge';
|
|
|
|
export const createVSCodeGitHubAPI = (): GitHubAPI => ({
|
|
authStatus: async () => sendBridgeMessage<GitHubAuthStatus>('api:github/auth:status'),
|
|
authStart: async () => sendBridgeMessage<GitHubDeviceFlowStart>('api:github/auth:start'),
|
|
authComplete: async (deviceCode: string) =>
|
|
sendBridgeMessage<GitHubDeviceFlowComplete>('api:github/auth:complete', { deviceCode }),
|
|
authDisconnect: async () => sendBridgeMessage<{ removed: boolean }>('api:github/auth:disconnect'),
|
|
authActivate: async (accountId: string) =>
|
|
sendBridgeMessage<GitHubAuthStatus>('api:github/auth:activate', { accountId }),
|
|
me: async () => sendBridgeMessage<GitHubUserSummary>('api:github/me'),
|
|
|
|
prStatus: async (directory: string, branch: string) =>
|
|
sendBridgeMessage<GitHubPullRequestStatus>('api:github/pr:status', { directory, branch }),
|
|
prCreate: async (payload: GitHubPullRequestCreateInput) =>
|
|
sendBridgeMessage<GitHubPullRequest>('api:github/pr:create', payload),
|
|
prMerge: async (payload: GitHubPullRequestMergeInput) =>
|
|
sendBridgeMessage<GitHubPullRequestMergeResult>('api:github/pr:merge', payload),
|
|
prReady: async (payload: GitHubPullRequestReadyInput) =>
|
|
sendBridgeMessage<GitHubPullRequestReadyResult>('api:github/pr:ready', payload),
|
|
|
|
issuesList: async (directory: string, options?: { page?: number }) =>
|
|
sendBridgeMessage<GitHubIssuesListResult>('api:github/issues:list', { directory, page: options?.page ?? 1 }),
|
|
issueGet: async (directory: string, number: number) =>
|
|
sendBridgeMessage<GitHubIssueGetResult>('api:github/issues:get', { directory, number }),
|
|
issueComments: async (directory: string, number: number) =>
|
|
sendBridgeMessage<GitHubIssueCommentsResult>('api:github/issues:comments', { directory, number }),
|
|
|
|
prsList: async (directory: string, options?: { page?: number }) =>
|
|
sendBridgeMessage<GitHubPullRequestsListResult>('api:github/pulls:list', { directory, page: options?.page ?? 1 }),
|
|
prContext: async (directory: string, number: number, options?: { includeDiff?: boolean; includeCheckDetails?: boolean }) =>
|
|
sendBridgeMessage<GitHubPullRequestContextResult>('api:github/pulls:context', {
|
|
directory,
|
|
number,
|
|
includeDiff: Boolean(options?.includeDiff),
|
|
includeCheckDetails: Boolean(options?.includeCheckDetails),
|
|
}),
|
|
});
|