Skip to content

Conversation

@Simon-He95
Copy link
Collaborator

@Simon-He95 Simon-He95 commented Sep 2, 2025

Pull Request Description

Is your feature request related to a problem? Please describe.
A clear and concise description of what the problem is.
*For example: I'm always frustrated when [...] *

Describe the solution you'd like
A clear and concise description of what you want to happen.

UI/UX changes for Desktop Application
If this PR introduces UI/UX changes, please describe them in detail.

  • Include screenshots or GIFs if applicable to visually demonstrate the changes.
  • Explain the reasoning behind the UI/UX decisions and how they improve the user experience of the desktop application.

Platform Compatibility Notes
If this PR has specific platform compatibility considerations (Windows, macOS, Linux), please describe them here.

  • Are there any platform-specific behaviors or code adjustments?
  • Have you tested on all relevant platforms?

Additional context
Add any other context about the pull request here.


Pull Request Description (中文)

你的功能请求是否与某个问题有关?请描述一下。
请对问题进行清晰扼要的描述。
*例如:我增加了 [...] 的功能 *

请描述你希望的解决方案
请对你希望实现的效果进行清晰扼要的描述。

桌面应用程序的 UI/UX 更改
如果此 PR 引入了 UI/UX 更改,请详细描述它们。

  • 如果适用,请包含屏幕截图或 GIF 以直观地演示更改。
  • 解释 UI/UX 决策背后的原因,以及它们如何改善桌面应用程序的用户体验。

平台兼容性注意事项
如果此 PR 具有特定的平台兼容性考虑因素(Windows、macOS、Linux),请在此处描述。

  • 是否有任何平台特定的行为或代码调整?
  • 你是否已在所有相关平台上进行过测试?

附加背景
在此处添加关于此 Pull Request 的任何其他背景信息。

Summary by CodeRabbit

  • New Features

    • Improved code editor experience: word wrap with preserved indentation, hidden horizontal scrollbar, and capped editor height for better readability.
    • More reliable content syncing between artifacts and the editor, including automatic initialization when available.
    • Smarter, throttled language detection for faster, more stable syntax highlighting, with special handling for diagram content.
  • Chores

    • Updated dependency: vue-renderer-markdown to 0.0.36.

@coderabbitai
Copy link
Contributor

coderabbitai bot commented Sep 2, 2025

Walkthrough

Dependencies updated for vue-renderer-markdown. Monaco editor options expanded and reactive synchronization improved in ArtifactDialog and CodeArtifact, including throttled language detection, language/content watchers, and initialization on editor mount.

Changes

Cohort / File(s) Summary of changes
Dependencies
package.json
Bump vue-renderer-markdown from ^0.0.35 to ^0.0.36.
Monaco editor integration and reactivity
src/renderer/src/components/artifacts/ArtifactDialog.vue, src/renderer/src/components/artifacts/CodeArtifact.vue
Add Monaco options (word wrap, wrappingIndent, hide horizontal scrollbar). In ArtifactDialog: throttle language detection, update language from artifact/extension, sync editor via watchers on artifact content, language, and editor mount; immediate initialization paths added.

Sequence Diagram(s)

sequenceDiagram
  autonumber
  actor U as User
  participant A as ArtifactStore
  participant D as ArtifactDialog.vue
  participant M as MonacoEditor

  rect rgb(245,249,255)
    note over D: Initialization
    D->>D: watch(codeEditor) [immediate]
    alt editor element available
      D->>M: createEditor(options: wrap, hide H-scroll)
    end
  end

  rect rgb(245,255,245)
    U->>A: Change currentArtifact/content
    A-->>D: watcher fires (immediate on first run)
    D->>D: derive language from artifact/extension
    alt language unset and not mermaid
      D->>D: throttledDetectLanguage(content)
      D-->>D: set codeLanguage
    end
    D->>M: updateCode(content, codeLanguage)
  end

  rect rgb(255,250,240)
    D->>D: watch(codeLanguage)
    D->>M: updateCode(current content, new language)
  end
Loading
sequenceDiagram
  autonumber
  participant D as CodeArtifact.vue
  participant M as MonacoEditor

  note over D: Component mount
  D->>M: useMonaco({ wordWrap:'on', wrappingIndent:'same', scrollbar:{ horizontal:'hidden' }})
Loading

Estimated code review effort

🎯 2 (Simple) | ⏱️ ~10 minutes

Possibly related PRs

Poem

A rabbit taps keys in a moonlit nook,
Wraps words that once overran the book.
Languages guessed with a gentle hop,
Throttled thoughts—no jittery stop.
Scrollbars hush, code lines align—
“Ship it,” I twitch—“looks clean, looks fine.” 🐇✨

✨ Finishing Touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

CodeRabbit Commands (Invoked using PR/Issue comments)

Type @coderabbitai help to get the list of available commands.

Other keywords and placeholders

  • Add @coderabbitai ignore or @coderabbit ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Status, Documentation and Community

  • Visit our Status Page to check the current availability of CodeRabbit.
  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

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

Actionable comments posted: 0

Caution

Some comments are outside the diff and can’t be posted inline due to platform limitations.

⚠️ Outside diff range comments (5)
src/renderer/src/components/artifacts/CodeArtifact.vue (3)

114-152: User-visible language names must use i18n, not hardcoded map.

Replace the hardcoded English labels with i18n keys (e.g., languages.javascript).

-const displayLanguage = computed(() => {
-  const lang = codeLanguage.value
-  const displayNames: Record<string, string> = {
-    javascript: 'JavaScript',
-    typescript: 'TypeScript',
-    ...
-    '': 'Plain Text'
-  }
-  return displayNames[lang] || lang.charAt(0).toUpperCase() + lang.slice(1)
-})
+const { t, te } = useI18n()
+const displayLanguage = computed(() => {
+  const lang = (codeLanguage.value || '').toLowerCase()
+  const key = `languages.${lang || 'plain'}`
+  return te(key) ? t(key) : (lang ? lang[0].toUpperCase() + lang.slice(1) : t('languages.plain'))
+})

I can add the languages.* entries if you want.


171-181: Remove hardcoded fallbacks; rely on i18n keys for artifact titles.

Avoid 'HTML Preview'/'SVG Preview' literals.

-  const artifactTitle =
-    lowerLang === 'html'
-      ? t('artifacts.htmlPreviewTitle') || 'HTML Preview'
-      : t('artifacts.svgPreviewTitle') || 'SVG Preview'
+  const artifactTitle = lowerLang === 'html'
+    ? t('artifacts.htmlPreviewTitle')
+    : t('artifacts.svgPreviewTitle')

245-257: Unscoped style and CodeMirror selector in a Monaco-based component.

Scope the style and target Monaco, or remove if unnecessary. Current .cm-* rules won’t affect Monaco and may leak globally.

-<style>
-/* Ensure CodeMirror inherits the right font in the editor */
-.cm-editor .cm-content {
+<style scoped>
+/* Ensure the editor uses the monospace stack */
+:global(.monaco-editor),
+:global(.monaco-editor .view-lines),
+:global(.monaco-mouse-cursor-text) {
   font-family:
     ui-monospace,
     SFMono-Regular,
     SF Mono,
     Menlo,
     Consolas,
     Liberation Mono,
     monospace !important;
 }
 </style>

Note: Per previous learning, MarkdownRenderer.vue intentionally uses global styles; this component should still be scoped.

src/renderer/src/components/artifacts/ArtifactDialog.vue (2)

289-294: Mermaid detection mismatch: mapping returns 'mdm' but checks expect 'mermaid'.

getFileExtension maps application/vnd.ant.mermaid to 'mdm', but elsewhere you check codeLanguage === 'mermaid'. This can break the early return path.

 function getFileExtension(type: string) {
   switch (type) {
     case 'application/vnd.ant.code':
       return 'txt'
     case 'text/markdown':
       return 'md'
     case 'text/html':
       return 'html'
     case 'image/svg+xml':
       return 'svg'
     case 'application/vnd.ant.mermaid':
-      return 'mdm'
+      return 'mermaid'
     case 'application/vnd.ant.react':
       return 'jsx'
     default:
       return 'txt'
   }
 }

Optionally also normalize language values to lowercase where assigned.

Also applies to: 416-433


559-566: Scope component styles.

Use scoped styles to avoid leaking .mermaid-artifact globally.

-<style>
+<style scoped>
 .mermaid-artifact {
   width: 100%;
   height: 100%;
   display: flex;
   flex-direction: column;
 }
 </style>

Note: Prior learning about unscoped styles applies to MarkdownRenderer.vue only, not here.

🧹 Nitpick comments (8)
src/renderer/src/components/artifacts/CodeArtifact.vue (4)

76-84: Normalize detected language and drop noisy console log.

Lowercase the detected id to keep comparisons consistent and remove the debug log.

-const throttledDetectLanguage = useThrottleFn(
-  (code: string) => {
-    codeLanguage.value = detectLanguage(code)
-    console.log('Detected language:', codeLanguage.value)
-  },
+const throttledDetectLanguage = useThrottleFn(
+  (code: string) => {
+    const lang = detectLanguage(code)
+    codeLanguage.value = (lang || '').toLowerCase()
+  },
   1000,
   true
 )
 
 // Initialize language detection if needed
 if (!codeLanguage.value || codeLanguage.value === '') {
-  throttledDetectLanguage(props.block.content)
+  throttledDetectLanguage(props.block.content)
 }

Also applies to: 86-90


195-214: Potential pre-init update: guard updateCode until editor is ready.

The immediate watcher can fire before createEditor (onMounted), depending on timing.

+const isEditorReady = ref(false)
 watch(
   () => props.block.content,
   (newCode) => {
     if (!newCode) return
-    // If it's a mermaid diagram, let MermaidBlockNode handle it
+    // If it's a mermaid diagram, let MermaidBlockNode handle it
     if (codeLanguage.value === 'mermaid') {
       return
     }
     if (!codeLanguage.value || codeLanguage.value === '') {
       throttledDetectLanguage(newCode)
     }
-    updateCode(props.block.content, codeLanguage.value)
+    if (isEditorReady.value) {
+      updateCode(props.block.content, codeLanguage.value)
+    }
   },
   { immediate: true }
 )
 
 // 初始化代码编辑器
 onMounted(() => {
   if (!codeEditor.value) return
   createEditor(codeEditor.value, props.block.content, codeLanguage.value)
+  isEditorReady.value = true
 })

216-228: Comment says “recreate editor” but code only updates model.

Either remove the comment or actually recreate. Updating model is preferable; adjust comment for accuracy.

-    // If the language changes, we need to recreate the editor with the new language
+    // Language changed; update the model language via updateCode

Also applies to: 230-237


76-84: Comments should be in English per repo guidelines.

Translate Chinese comments to English for consistency.

src/renderer/src/components/artifacts/ArtifactDialog.vue (4)

283-309: Guard updateCode until the editor exists to avoid race on initial render.

Watchers can run before createEditor (codeEditor watcher). Add a readiness flag.

+const isEditorReady = ref(false)
 watch(
   () => artifactStore.currentArtifact,
   (newArtifact) => {
     if (!newArtifact) return
     codeLanguage.value = newArtifact.language || getFileExtension(newArtifact.type || '')
-    if (codeLanguage.value === 'mermaid') {
+    if ((codeLanguage.value || '').toLowerCase() === 'mermaid') {
       return
     }
     const newCode = newArtifact.content || ''
     if (!codeLanguage.value || codeLanguage.value === '') {
       throttledDetectLanguage(newCode)
     }
-    updateCode(newCode, codeLanguage.value)
+    if (isEditorReady.value) updateCode(newCode, codeLanguage.value)
   },
   { immediate: true, deep: true }
 )
 
 if (!codeLanguage.value || codeLanguage.value === '') {
   throttledDetectLanguage(artifactStore.currentArtifact?.content || '')
 }
 
 watch(
   () => codeLanguage.value,
   () => {
-    updateCode(artifactStore.currentArtifact?.content || '', codeLanguage.value)
+    if (isEditorReady.value) {
+      updateCode(artifactStore.currentArtifact?.content || '', codeLanguage.value)
+    }
   }
 )
 
 watch(
   () => artifactStore.currentArtifact?.content,
   (newContent) => {
-    if (newContent !== undefined) {
+    if (newContent !== undefined && isEditorReady.value) {
       updateCode(newContent, codeLanguage.value)
     }
   },
   { immediate: true }
 )
 
 watch(
   () => codeEditor.value,
   () => {
     if (!codeEditor.value) return
     createEditor(codeEditor.value, artifactStore.currentArtifact?.content || '', codeLanguage.value)
+    isEditorReady.value = true
   }
 )

Also applies to: 311-321, 323-334, 336-342


489-495: Log messages should be in English per guidelines.

Change the Chinese console error to English.

-      console.error('复制失败', e)
+      console.error('Copy failed', e)

248-281: Lowercase detected language for consistency.

Mirror the normalization suggested in CodeArtifact.vue.

-  (code: string) => {
-    codeLanguage.value = detectLanguage(code)
-  },
+  (code: string) => {
+    const lang = detectLanguage(code)
+    codeLanguage.value = (lang || '').toLowerCase()
+  },

396-414: Null component fallback UX (optional).

When type is unknown, consider rendering a small i18n message instead of null.

📜 Review details

Configuration used: CodeRabbit UI

Review profile: CHILL

Plan: Pro

💡 Knowledge Base configuration:

  • MCP integration is disabled by default for public repositories
  • Jira integration is disabled by default for public repositories
  • Linear integration is disabled by default for public repositories

You can enable these sources in your CodeRabbit configuration.

📥 Commits

Reviewing files that changed from the base of the PR and between 122fb2b and 42ec521.

📒 Files selected for processing (3)
  • package.json (1 hunks)
  • src/renderer/src/components/artifacts/ArtifactDialog.vue (1 hunks)
  • src/renderer/src/components/artifacts/CodeArtifact.vue (1 hunks)
🧰 Additional context used
📓 Path-based instructions (10)
src/renderer/src/**/*

📄 CodeRabbit inference engine (.cursor/rules/i18n.mdc)

src/renderer/src/**/*: All user-facing strings must use i18n keys (avoid hardcoded user-visible text in code)
Use the 'vue-i18n' framework for all internationalization in the renderer
Ensure all user-visible text in the renderer uses the translation system

Files:

  • src/renderer/src/components/artifacts/CodeArtifact.vue
  • src/renderer/src/components/artifacts/ArtifactDialog.vue
src/renderer/**/*.{vue,ts,js,tsx,jsx}

📄 CodeRabbit inference engine (.cursor/rules/project-structure.mdc)

渲染进程代码放在 src/renderer

Files:

  • src/renderer/src/components/artifacts/CodeArtifact.vue
  • src/renderer/src/components/artifacts/ArtifactDialog.vue
src/renderer/src/**/*.{vue,ts,tsx,js,jsx}

📄 CodeRabbit inference engine (.cursor/rules/vue-best-practices.mdc)

src/renderer/src/**/*.{vue,ts,tsx,js,jsx}: Use the Composition API for better code organization and reusability
Implement proper state management with Pinia
Utilize Vue Router for navigation and route management
Leverage Vue's built-in reactivity system for efficient data handling

Files:

  • src/renderer/src/components/artifacts/CodeArtifact.vue
  • src/renderer/src/components/artifacts/ArtifactDialog.vue
src/renderer/src/**/*.vue

📄 CodeRabbit inference engine (.cursor/rules/vue-best-practices.mdc)

Use scoped styles to prevent CSS conflicts between components

Files:

  • src/renderer/src/components/artifacts/CodeArtifact.vue
  • src/renderer/src/components/artifacts/ArtifactDialog.vue
src/renderer/**/*.{ts,tsx,vue}

📄 CodeRabbit inference engine (.cursor/rules/vue-shadcn.mdc)

src/renderer/**/*.{ts,tsx,vue}: Use descriptive variable names with auxiliary verbs (e.g., isLoading, hasError).
Use TypeScript for all code; prefer types over interfaces.
Avoid enums; use const objects instead.
Use arrow functions for methods and computed properties.
Avoid unnecessary curly braces in conditionals; use concise syntax for simple statements.

Files:

  • src/renderer/src/components/artifacts/CodeArtifact.vue
  • src/renderer/src/components/artifacts/ArtifactDialog.vue
src/renderer/**/*.{vue,ts}

📄 CodeRabbit inference engine (.cursor/rules/vue-shadcn.mdc)

Implement lazy loading for routes and components.

Files:

  • src/renderer/src/components/artifacts/CodeArtifact.vue
  • src/renderer/src/components/artifacts/ArtifactDialog.vue
src/renderer/**/*.{ts,vue}

📄 CodeRabbit inference engine (.cursor/rules/vue-shadcn.mdc)

src/renderer/**/*.{ts,vue}: Use useFetch and useAsyncData for data fetching.
Implement SEO best practices using Nuxt's useHead and useSeoMeta.

Use Pinia for frontend state management

Files:

  • src/renderer/src/components/artifacts/CodeArtifact.vue
  • src/renderer/src/components/artifacts/ArtifactDialog.vue
src/renderer/**/*.vue

📄 CodeRabbit inference engine (CLAUDE.md)

src/renderer/**/*.vue: Use Vue 3 Composition API for all Vue components
Use Tailwind CSS with scoped styles for component styling
When creating new UI components, use Composition API with proper TypeScript typing, ensure responsive design (Tailwind), and include error/loading states

Files:

  • src/renderer/src/components/artifacts/CodeArtifact.vue
  • src/renderer/src/components/artifacts/ArtifactDialog.vue
**/*.{ts,tsx,js,jsx,vue}

📄 CodeRabbit inference engine (CLAUDE.md)

Write logs and comments in English

Files:

  • src/renderer/src/components/artifacts/CodeArtifact.vue
  • src/renderer/src/components/artifacts/ArtifactDialog.vue
src/renderer/src/**

📄 CodeRabbit inference engine (CLAUDE.md)

Place full application UI functionality (tab content) under src/renderer/src/ organized by feature

Files:

  • src/renderer/src/components/artifacts/CodeArtifact.vue
  • src/renderer/src/components/artifacts/ArtifactDialog.vue
🧠 Learnings (6)
📓 Common learnings
Learnt from: neoragex2002
PR: ThinkInAIXYZ/deepchat#807
File: src/renderer/src/components/markdown/MarkdownRenderer.vue:58-58
Timestamp: 2025-08-28T08:07:05.122Z
Learning: In src/renderer/src/components/markdown/MarkdownRenderer.vue, the unscoped <style> tag is intentionally used for global prose styles and the anchor .markdown-renderer fix, as confirmed by user neoragex2002.
📚 Learning: 2025-07-23T00:45:57.322Z
Learnt from: CR
PR: ThinkInAIXYZ/deepchat#0
File: .cursor/rules/vue-shadcn.mdc:0-0
Timestamp: 2025-07-23T00:45:57.322Z
Learning: Applies to src/renderer/**/*.{vue} : Use Shadcn Vue, Radix Vue, and Tailwind for components and styling.

Applied to files:

  • package.json
📚 Learning: 2025-07-21T01:46:30.354Z
Learnt from: CR
PR: ThinkInAIXYZ/deepchat#0
File: .cursor/rules/i18n.mdc:0-0
Timestamp: 2025-07-21T01:46:30.354Z
Learning: Applies to src/renderer/src/**/* : Use the 'vue-i18n' framework for all internationalization in the renderer

Applied to files:

  • package.json
📚 Learning: 2025-07-23T00:45:57.322Z
Learnt from: CR
PR: ThinkInAIXYZ/deepchat#0
File: .cursor/rules/vue-shadcn.mdc:0-0
Timestamp: 2025-07-23T00:45:57.322Z
Learning: Applies to src/renderer/**/*.{vue} : Use Vue 3 with TypeScript, leveraging defineComponent and PropType.

Applied to files:

  • package.json
📚 Learning: 2025-07-21T01:47:11.608Z
Learnt from: CR
PR: ThinkInAIXYZ/deepchat#0
File: .cursor/rules/project-structure.mdc:0-0
Timestamp: 2025-07-21T01:47:11.608Z
Learning: Applies to src/renderer/**/*.{vue,ts,js,tsx,jsx} : 渲染进程代码放在 `src/renderer`

Applied to files:

  • package.json
📚 Learning: 2025-07-23T00:45:57.322Z
Learnt from: CR
PR: ThinkInAIXYZ/deepchat#0
File: .cursor/rules/vue-shadcn.mdc:0-0
Timestamp: 2025-07-23T00:45:57.322Z
Learning: Applies to src/renderer/{composables,utils}/**/*.ts : Use VueUse for common composables and utility functions.

Applied to files:

  • package.json
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
  • GitHub Check: build-check (x64)
🔇 Additional comments (3)
package.json (1)

160-160: Approve bump. Lockfile updated to v0.0.36, both getLanguageIcon and MermaidBlockNode remain exported unchanged, and no CHANGELOG or breaking‐change indicators found in this patch release.

src/renderer/src/components/artifacts/CodeArtifact.vue (1)

66-70: Monaco config to wrap and hide horizontal scroll: LGTM.

Aligns with PR goal to auto-wrap and hide horizontal scrollbar.

src/renderer/src/components/artifacts/ArtifactDialog.vue (1)

266-271: Monaco config unifying wrap and hidden horizontal scrollbar: LGTM.

Matches CodeArtifact.vue; consistent UX.

Copy link
Collaborator

@yyhhyyyyyy yyhhyyyyyy left a comment

Choose a reason for hiding this comment

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

LGTM

@yyhhyyyyyy yyhhyyyyyy merged commit 0842a78 into ThinkInAIXYZ:dev Sep 2, 2025
2 checks passed
zerob13 added a commit that referenced this pull request Sep 9, 2025
* fix: chat confg need sync to new value when change model in chat (#823)

* fix: gemini nano banana not read image from chatinput

* fix: remove file-type ,this will mark html as audio (#824)

* fix: Solve the problem of the window becoming larger when dragging floating button under Windows (#826)

* fix: improve OpenAI compatible provider compatibility with third-party services

* chore: update vue-renderer-markdown to v0.0.35 (#827)

* refactor: remove custom-prompts-server and decouple prompts from MCP lifecycle (#829)

- Remove custom-prompts-server service entirely including configuration
- Implement data source merging in MCP store to load prompts from both config and MCP
- Add upgrade migration logic for versions < 0.3.5 to clean up old configurations
- Ensure @ operations work independently of MCP state through config data source
- Update CLAUDE.md with prompt management guidelines

The @ prompt functionality now works completely independently of MCP,
loading custom prompts directly from config storage while maintaining
full compatibility with existing MCP prompt sources.

* chore: add better log for mcp tool name

* feat: ux update (#831)

* feat: ux update

* chore: format

* feat: setting provider ux update (#832)

* feat: add current datetime to system prompt

- Add current date and time information to user's system prompt when not empty
- Include complete datetime with timezone, year, month, day, hour, minute, second
- Apply to both preparePromptContent and buildContinueToolCallContext methods
- Update token calculation to use processed system prompt for accuracy
- Skip datetime addition for image generation models and empty prompts

* refactor: extract system prompt datetime enhancement to common method

- Add enhanceSystemPromptWithDateTime private method to reduce code duplication
- Update both preparePromptContent and buildContinueToolCallContext to use common method
- Improve code maintainability and ensure consistency across all system prompt processing
- Add comprehensive JSDoc documentation for the new method

* fix(markdown): auto-wrap hide scroll (#833)

* feat: add enable_thinking parameter support for siliconcloud (#835)

* chore: bump deps (#834)

* chore: bump up deps

* fix: change win arm to wasm32 sharp

* chore: revert sharp config

* feat: drop windows arm support

* fix(coderabbitai): remove action for windows arm64

* refactor: adjust scroll-to-bottom button glow effect (#837)

* feat: add mutual exclusive confirmation dialogs for DeepSeek-V3.1 (#838)

* feat: add sanitizeText utility for clipboard data handling (#843)

* feat: support canary upgrade (#840)

* feat: support canary upgrade

* feat: add update channel selection for stable/canary versions

- Add update channel configuration to config presenter
- Implement dynamic URL switching for version checks and downloads
- Add UI selector in AboutUsSettings for channel selection
- Support stable and canary update channels with different endpoints
- Add internationalization support for channel selection

* chore: change contributors charts to openomy

* refactor: improve update channel handling and network resilience

- Sanitize update channel input to prevent invalid values
- Add 10-second timeout to version check requests to prevent hanging
- Treat unknown channels as 'upgrade' (stable) for robustness
- Improve error handling for network timeouts and invalid channels

* feat: implement thinking parameter support for doubao models (#842)

* feat: implement dedicated DashScope provider with enable_thinking support (#844)

* feat: implement dedicated DashScope provider with enable_thinking support

* refactor: remove unnecessary API key status check methods from DashscopeProvider

* fix: prioritize provider.id over apiType in createProviderInstance (#846)

* feat: add qwen3 thinking budget support (#848)

* feat: add qwen3 thinking budget support

* fix: add missing gemini.onlySupported key in zh-CN locale

* refactor: merge duplicate silicon case statements in provider creation

* feat: add qwen3 thinking budget support in ChatConfig (#849)

* refactor(types): 🚀split monolithic presenter.d.ts into strict per-domain *.presenter.d.ts + typed core layer  (#847)

* docs: Add strong-typed message architecture and implementation guidelines

- Update message-architecture.md with strong-typed design, remove compatibility compromises
- Add event-to-UI mapping table and rendering checklist for contract compliance
- Create presenter-split-plan.md for type system refactoring
- Add implementation-tasks.md with phased rollout plan
- Create .cursor/rules/provider-guidelines.mdc for provider implementation guidance

This establishes a foundation for strong-typed, maintainable message architecture without legacy compatibility debt.

* types(core): add strong-typed core types and barrel exports\n\n- Add usage.ts (UsageStats, RateLimitInfo)\n- Add llm-events.ts (discriminated union + factories + guards)\n- Add agent-events.ts (LLMAgentEvent*, shared types)\n- Add chat.ts (Message/AssistantMessageBlock/UserMessageContent)\n- Add mcp.ts (MCP content/response/definition)\n- Add types/index.d.ts barrel exports\n\nNo compatibility shims included by design.

* refactor(types): move legacy presenters and add @shared/presenter stub; keep legacy exports in types/index to maintain build\n\n- Move legacy presenters to src/shared/types/presenters/legacy.presenters.d.ts\n- Add src/shared/presenter.d.ts re-export stub\n- Temporarily export only legacy presenters from types/index.d.ts to avoid type mismatches\n- Update implementation-tasks.md (Stage 2 done)\n\nNext: progressive import updates to new cores, then flip barrel to new types and delete legacy.

* refactor(types): alias legacy core message types to strong-typed core (B-plan)\n\n- legacy.presenters.d.ts now re-exports ChatMessage/ChatMessageContent/LLMAgentEvent/LLMAgentEventData/LLMCoreStreamEvent from core\n- Prepares for flipping interfaces without changing import sites

* docs(tasks): mark Phase 3 as completed\n\n- Successfully implemented B-plan approach with type aliasing\n- Unified core message types (ChatMessage, LLMAgentEvent, LLMCoreStreamEvent)\n- Created core model types and maintained build compatibility\n- All type checks passing with no breaking changes

* fix(types): revert to legacy-only exports and fix MESSAGE_ROLE\n\n- Revert types/index.d.ts to only export legacy presenters\n- Remove 'function' from MESSAGE_ROLE to match core definition\n- Maintain build stability while preserving type unification work

* feat(provider): implement factory functions for LLMCoreStreamEvent\n\n- Replace all manual event creation with createStreamEvent factory functions\n- Ensures type safety and consistent event structure\n- Updated OpenAICompatibleProvider with strong-typed events:\n  - text, reasoning, toolCallStart, toolCallChunk, toolCallEnd\n  - error, usage, stop, imageData events\n- All type checks passing\n- Phase 4.1 completed: Provider now outputs LLMCoreStreamEvent with factory construction

* feat(provider): update OllamaProvider with factory functions\n\n- Replace all manual event creation with createStreamEvent factory functions\n- Ensures consistent tool_call_start → tool_call_chunk → tool_call_end sequence\n- Updated all event types: text, reasoning, toolCall*, usage, stop, error\n- Maintains proper tool call ID aggregation and sequencing\n- Phase 4.2 completed: Tool call sequences now strictly follow start/chunk/end pattern

* docs(tasks): update Phase 4 progress\n\n- Completed Provider strong-typed event output with factory functions\n- Completed tool_call_* strict start/chunk/end sequences\n- Completed usage event sent before stop in all providers\n- Updated implementation tasks document with current progress

* feat(phase4): complete Provider strong-typed event integration\n\n- Added factory functions import to AwsBedrockProvider\n- Updated error handling to use createStreamEvent.error() + createStreamEvent.stop('error')\n- Created comprehensive unit tests for LLMCoreStreamEvent factory functions\n- Tests validate: event creation, tool call sequences, error+stop patterns, type guards\n- All 12 core event tests passing ✅\n\n## Phase 4 Completed:\n- ✅ Provider strong-typed event output (factory construction)\n- ✅ tool_call_* strict start/chunk/end sequences with ID aggregation\n- ✅ Usage events sent before stop in all providers\n- ✅ Rate limit events (handled at Presenter layer)\n- ✅ Unified error + stop event patterns\n- ✅ Comprehensive unit tests for sequences/fields/boundaries

* feat(phase5): complete Agent & UI alignment

## Phase 5 Completed: Agent & UI Alignment ✅

### 1. Agent Layer Enhancement
- ✅ Agent consumes only CoreEvent and outputs LLMAgentEvent
- ✅ Strict separation of response/error/end event types
- ✅ Added rate_limit event handling in Agent layer
- ✅ Maintained proper event transformation pipeline

### 2. UI Layer Unification
- ✅ Removed standalone tool_call_permission type
- ✅ Unified to action + action_type pattern
- ✅ Updated all UI components and thread presenter logic
- ✅ Preserved backward compatibility with conditional rendering

### 3. Renderer Mapping & Testing
- ✅ Created comprehensive renderer contract tests (17 tests)
- ✅ Added message block data structure snapshot tests (14 tests)
- ✅ Validated event-to-UI block mapping compliance
- ✅ Ensured consistent status transitions and type safety

### Key Technical Achievements:
- **Type Safety**: All event transformations now type-safe
- **Consistency**: Unified action_type handling across codebase
- **Testing**: 31 new tests covering contracts and snapshots
- **Architecture**: Clean separation between Agent/UI concerns
- **Quality**: All lint, format, and type checks passing ✅

### Files Modified:
- Agent layer: llmProviderPresenter/index.ts
- UI components: MessageItemAssistant.vue
- Thread logic: threadPresenter/index.ts
- Type definitions: shared/chat.d.ts
- Tests: rendererContract.test.ts, messageBlockSnapshot.test.ts

Ready for Phase 6: Quality & Tools 🚀

* feat(phase6): complete Quality & Tools phase

## Phase 6 Completed: Quality & Tools ✅

### 1. Table-Driven Contract Tests
- ✅ Created comprehensive event mapping contract tests (25 test cases)
- ✅ Validated all event types from architecture mapping table
- ✅ Verified status transitions and type constraints
- ✅ Added tool call ID aggregation and lifecycle validation
- ✅ Implemented error recovery pattern testing

### 2. Performance Evaluation & Stress Testing
- ✅ Large text content processing (50KB < 10ms)
- ✅ Large reasoning content handling (100KB < 15ms)
- ✅ Large image data processing (1MB < 20ms)
- ✅ Batch image processing (100 images < 50ms)
- ✅ High-frequency event processing (1000 events < 100ms)
- ✅ Mixed event type handling (500 events < 80ms)
- ✅ Memory leak prevention (5000 events < 500ms)
- ✅ Extreme parameter handling (10KB params < 5ms)
- ✅ Concurrent processing simulation (10 workers < 100ms)

### Key Technical Achievements:
- **Comprehensive Testing**: 67 tests passing across all scenarios
- **Performance Validation**: All benchmarks meet performance targets
- **Type Safety**: Full TypeScript compliance (0 errors)
- **Code Quality**: Lint and format checks passing ✅
- **Architecture Compliance**: All mapping table rules verified
- **Stress Testing**: System handles extreme loads efficiently

### Test Coverage Summary:
- Event mapping contract tests: 25 tests ✅
- Renderer contract tests: 17 tests ✅
- Performance evaluation tests: 9 tests ✅
- Core event factory tests: 12 tests ✅
- Message block snapshot tests: 14 tests ✅
- Shell integration tests: 8 tests ✅

### Files Added:
- test/renderer/message/eventMappingTable.test.ts (comprehensive mapping validation)
- test/renderer/message/performanceEvaluation.test.ts (stress & performance testing)

Ready for production deployment with full quality assurance! 🚀

* fix(providers): complete strong-typed event integration across all providers

* fix(vitest): modify test case

* fix: default settings

* chore: update doc

* fix(ci): remove duplicate check in pr ci

* feat: add pnpm cache for pr check

* fix(ci): pr check with pnpm cache

* fix(ci): change cache key to package.json

* ci: remove pnpm cache

* feat: add glow breathing effect to scroll-to-bottom button (#850)

* feat: add glow breathing effect to scroll-to-bottom button

* fix: ensure exclusive display between MessageList and ArtifactDialog

* fix: refine MessageList–ArtifactDialog interaction logic; correct z-order between dialog and ArtifactDialog

* chore: prettier .vue

* feat: add web search support with configurable options for dashscope (#851)

* feat: add web search support with configurable options for dashscope

* fix: correct qwen model parameters to match official documentation

* feat: add web search support with configurable options for dashscope (#852)

* feat: add web search support with configurable options for dashscope

* fix: correct qwen model parameters to match official documentation

* feat: add search configuration support to ChatConfig components

* fix: fix enableSearch state sync and parameter passing issues

* fix: preserve search settings during data import

* feat: add dashscope commercial models to enable_thinking support (#853)

* feat: add search capability icon for model list (#854)

* feat: add search capability icon for model list

* fix: clear search settings when creating new conversation

* feat(markdown): Thinking panel now supports LaTeX compilation for mathematical formulas & markdown performance optimization (#857)

* feat(markdown): 思考栏支持数学公式latex编译显示 & markdown 性能优化
close: #845

* chore: lint

* chore(ai): update claude code rules and agents

* fix(ui): revert Dialog z-index to z-50 to fix dropdown visibility

Reverts DialogContent z-index from z-[100] back to z-50 to resolve issue where Select and EmojiPicker dropdowns were not appearing. This maintains proper layering hierarchy without breaking other UI components.

* feat: upgrade vue-renderer-markdown & vue-use-monaco (#862)

1. ignore math-block warning
2. Compatible with the syntax issues of mermaid produced by AI, greatly reducing the probability of mermaid rendering errors

* feat(dashscope): add qwen3-max-preview model (#865)

* fix: mcp params support more types (#861)

* feat(mcp): enhance tool parameter display with enum type support

- Add enum parameter type detection and enhanced display
- Show enum parameters with distinct blue badge styling (enum(string), array[enum(string)])
- Display allowed values for both direct enum and array item enum parameters
- Add i18n support for "allowedValues" and "arrayItemValues" labels
- Maintain consistent UI design with existing parameter display patterns
- Improve developer experience when debugging MCP tools with constrained parameters

* fix: enum params support

* fix(context-menu): handle local file paths in image save functionality

- Fix URL parsing error when saving images from local file paths
- Add proper handling for http/https URLs, file:// URLs, and direct file paths
- Use fs.promises for reading local files instead of net.fetch for invalid URLs
- Prevent "Failed to parse URL from" error when saving local images

* fix(context-menu): improve URL handling robustness in image save

- Add try-catch around net.fetch to handle invalid URLs gracefully
- Implement fallback methods for file:// URLs and local file paths
- Add debug logging to track source URL values for troubleshooting
- Prevent "Failed to parse URL from" errors with comprehensive URL validation

* fix(context-menu): handle empty srcURL in image save functionality

- Add comprehensive URL detection when srcURL is empty
- Implement fallback URL sources (linkURL, pageURL) for better compatibility
- Add debug logging to track all available context menu parameters
- Prevent "Failed to parse URL from" errors caused by empty URLs
- Provide clear error message when no valid URL can be found

* chore: format code

* fix: ai review

* fix: prevent @ symbol remaining when deleting mentions (#867)

* Merge commit from fork

* feat: implement separated system and custom prompt management (#868)

* feat: implement separated system and custom prompt management

* style: code fmt

* fix: add migration for legacy default_system_prompt to system_prompts

* feat: add Moonshot model configurations (#869)

* refactor: translate all cn comments and log to en (#871)

* refactor: translate all cn comments and log to en

* fix: revert translate in params

* feat: add reasoning support for Grok thinking models (#873)

* feat: add reasoning support for Grok thinking models

* fix: code lint

* fix: escaping character issue

---------

Co-authored-by: zerob13 <zerob13@gmail.com>

---------

Co-authored-by: hllshiro <40970081+hllshiro@users.noreply.github.com>
Co-authored-by: yyhhyyyyyy <yyhhyyyyyy8@gmail.com>
Co-authored-by: xiaomo <wegi866@gmail.com>
Co-authored-by: Simon He <57086651+Simon-He95@users.noreply.github.com>
Co-authored-by: luy <12696648@qq.com>
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.

2 participants