feat: add discuss mode and quick actions

- Implement discuss mode toggle and UI in chat box
- Add quick action buttons for file, message, implement and link actions
- Extend markdown parser to handle quick action elements
- Update message components to support discuss mode and quick actions
- Add discuss prompt for technical consulting responses
- Refactor chat components to support new functionality

The changes introduce a new discuss mode that allows users to switch between code implementation and technical discussion modes. Quick action buttons provide immediate interaction options like opening files, sending messages, or switching modes.
This commit is contained in:
KevIsDev
2025-05-26 16:05:51 +01:00
parent cfc2fc75d8
commit 2e7b626b00
13 changed files with 922 additions and 408 deletions

View File

@@ -7,6 +7,8 @@ const ARTIFACT_TAG_OPEN = '<boltArtifact';
const ARTIFACT_TAG_CLOSE = '</boltArtifact>';
const ARTIFACT_ACTION_TAG_OPEN = '<boltAction';
const ARTIFACT_ACTION_TAG_CLOSE = '</boltAction>';
const BOLT_QUICK_ACTIONS_OPEN = '<bolt-quick-actions>';
const BOLT_QUICK_ACTIONS_CLOSE = '</bolt-quick-actions>';
const logger = createScopedLogger('MessageParser');
@@ -93,6 +95,39 @@ export class StreamingMessageParser {
let earlyBreak = false;
while (i < input.length) {
if (input.startsWith(BOLT_QUICK_ACTIONS_OPEN, i)) {
console.log('input:', input.slice(i));
const actionsBlockEnd = input.indexOf(BOLT_QUICK_ACTIONS_CLOSE, i);
if (actionsBlockEnd !== -1) {
const actionsBlockContent = input.slice(i + BOLT_QUICK_ACTIONS_OPEN.length, actionsBlockEnd);
// Find all <bolt-quick-action ...>label</bolt-quick-action> inside
const quickActionRegex = /<bolt-quick-action([^>]*)>([\s\S]*?)<\/bolt-quick-action>/g;
let match;
const buttons = [];
while ((match = quickActionRegex.exec(actionsBlockContent)) !== null) {
const tagAttrs = match[1];
const label = match[2];
const type = this.#extractAttribute(tagAttrs, 'type');
const message = this.#extractAttribute(tagAttrs, 'message');
const path = this.#extractAttribute(tagAttrs, 'path');
const href = this.#extractAttribute(tagAttrs, 'href');
buttons.push(
createQuickActionElement(
{ type: type || '', message: message || '', path: path || '', href: href || '' },
label,
),
);
}
output += createQuickActionGroup(buttons);
i = actionsBlockEnd + BOLT_QUICK_ACTIONS_CLOSE.length;
continue;
}
}
if (state.insideArtifact) {
const currentArtifact = state.currentArtifact;
@@ -348,3 +383,19 @@ const createArtifactElement: ElementFactory = (props) => {
function camelToDashCase(input: string) {
return input.replace(/([a-z])([A-Z])/g, '$1-$2').toLowerCase();
}
function createQuickActionElement(props: Record<string, string>, label: string) {
const elementProps = [
'class="__boltQuickAction__"',
'data-bolt-quick-action="true"',
...Object.entries(props).map(([key, value]) => `data-${camelToDashCase(key)}=${JSON.stringify(value)}`),
];
console.log('elementProps', `<button ${elementProps.join(' ')}>${label}</button>`);
return `<button ${elementProps.join(' ')}>${label}</button>`;
}
function createQuickActionGroup(buttons: string[]) {
return `<div class=\"__boltQuickAction__\" data-bolt-quick-action=\"true\">${buttons.join('')}</div>`;
}