Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(copilot): integrate Copilot UI and controller, enhance editor in global display #1511

Open
wants to merge 5 commits into
base: dev
Choose a base branch
from

Conversation

go-wyvern
Copy link
Member

@go-wyvern go-wyvern commented Mar 26, 2025

No description provided.

@qiniu-ci
Copy link

This PR has been deployed to the preview environment. You can explore it using the preview URL.

Warning

Please note that deployments in the preview environment are temporary and will be automatically cleaned up after a certain period. Make sure to explore it before it is removed. For any questions, contact the Go+ Builder team.


const { t } = useI18n()
import { Copilot } from '@/components/copilot/copilot'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这里的事情(构造 CopilotCopilotController 实例,provide controller、跟 isCopilotActive 交互等),甚至包括 MCP 相关(因为 MCP 完全是为 Copilot 服务的),是不是都可以挪进 Copilot 模块里边去,而不需要做在 App 里?

// Close the debugger panel
function closeMcpDebugger() {
isMcpDebuggerVisible.value = false // Update the state
}

function closeCopilot() {
console.log("closeCopilot")
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

mark

@@ -0,0 +1,37 @@
<!-- eslint-disable vue/no-v-html -->
<template>
<UITooltip placement="bottom">
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

没有跑 prettier?缩进不太对

@@ -33,6 +33,10 @@ export function useSpxVersion(): ShallowRef<'v1' | 'v2'> {
return localStorageRef<'v1' | 'v2'>('spx-gui-runner', 'v1')
}

export function useCopilotStore() {
return localStorageRef('global-copilot', false)
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这个不需要持久化到 localStorage 中?似乎只需要作为内存中的状态管理就好了

import { client } from '@/mcp/client'
import type { CopilotController } from '@/components/copilot'

const copilotController = inject('copilotController', null) as CopilotController | null
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

可以参考 src/components/editor/EditorContextProvider.vueeditorCtxKey 的定义方式,来定义类型安全的、无命名冲突的 injection key

@@ -2,7 +2,7 @@
export type CodeEditorUICtx = {
ui: CodeEditorUI
}
const codeEditorUICtxInjectionKey: InjectionKey<CodeEditorUICtx> = Symbol('code-editor-ui-ctx')
export const codeEditorUICtxInjectionKey: InjectionKey<CodeEditorUICtx> = Symbol('code-editor-ui-ctx')
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

同上,这个应该不需要 export?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

既然 copilot 的内容拷出来了,code-editor/ 下的改动应该都可以干掉了?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

嗯,准备还原,原来准备在这个上面改,但后面放弃了

@@ -6,9 +6,11 @@ import type { MarkdownStringFlag } from '../../common'
import DefinitionItem from '../definition/DefinitionItem.vue'
import CodeLink from './CodeLink'
import CodeBlock from './CodeBlock.vue'
import CodeBlockEx from './CodeBlockEx.vue'
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这个 MarkdownView 是在 components/common/markdown-vue/MarkdownView 的基础上增加了这俩逻辑:

  1. basicComponents & advancedComponents
  2. 适用于 code editor 环境的 markdown 渲染样式

理论上这俩你这次的 copilot 都不需要,所以建议在 components/common/markdown-vue/MarkdownView 基础上类似地封装另一个 MarkdownView 组件用于你这次的 copilot,把

  1. mcp components
  2. markdown 渲染样式(可以直接从这里拷,视具体需求调整)

做进去就好

@@ -0,0 +1,323 @@
<!-- filepath: /home/wuxinyi/go/src/github.com/goplus/builder/spx-gui/src/components/editor/code-editor/ui/markdown/UseMcpTool.vue -->
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

这个是?

@@ -5,6 +5,7 @@
<NavbarLogo />
<slot name="left"></slot>
<NavbarLang />
<NavbarCopilot />
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

如之前晨会提到的,我们需要做到:这个 feature(涉及到的 UI 元素或行为)对普通用户来说是感知不到的;这里 navbar 的入口也应当是默认隐藏的,需要通过一些非常规的方式才会启用

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants