-
Notifications
You must be signed in to change notification settings - Fork 409
/
Copy pathinline-input-widget.tsx
138 lines (116 loc) · 4.46 KB
/
inline-input-widget.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
import React, { ReactNode, useCallback, useEffect, useMemo, useState } from 'react';
import { Injectable } from '@opensumi/di';
import { AINativeConfigService, useInjectable } from '@opensumi/ide-core-browser';
import { AIAction, InteractiveInput } from '@opensumi/ide-core-browser/lib/components/ai-native/index';
import { AIInlineInputChatContentWidgetId, Disposable, Emitter, Event, localize } from '@opensumi/ide-core-common';
import { ContentWidgetPositionPreference } from '@opensumi/ide-monaco/lib/browser/monaco-exports/editor';
import { InlineResultAction } from '../inline-actions/result-items/index';
import { EInlineChatStatus, EResultKind } from '../inline-chat/inline-chat.service';
import { AIInlineContentWidget } from '../inline-chat/inline-content-widget';
import styles from './inline-input.module.less';
import type { ICodeEditor as IMonacoCodeEditor } from '@opensumi/ide-monaco';
interface IInlineInputWidgetRenderProps {
defaultValue?: string;
onLayoutChange: (height: number) => void;
onClose?: () => void;
onInteractiveInputSend?: (value: string) => void;
onChatStatus: Event<EInlineChatStatus>;
onResultClick: (k: EResultKind) => void;
onValueChange?: (value: string) => void;
}
const InlineInputWidgetRender = (props: IInlineInputWidgetRenderProps) => {
const { defaultValue, onClose, onInteractiveInputSend, onLayoutChange, onChatStatus, onResultClick, onValueChange } =
props;
const [status, setStatus] = useState<EInlineChatStatus>(EInlineChatStatus.READY);
const aiNativeConfigService = useInjectable<AINativeConfigService>(AINativeConfigService);
useEffect(() => {
const dis = new Disposable();
dis.addDispose(onChatStatus((s) => setStatus(s)));
return () => {
dis.dispose();
};
}, [onChatStatus]);
const isLoading = useMemo(() => status === EInlineChatStatus.THINKING, [status]);
const isDone = useMemo(() => status === EInlineChatStatus.DONE, [status]);
const isError = useMemo(() => status === EInlineChatStatus.ERROR, [status]);
const handleClose = useCallback(() => {
onClose?.();
}, [onClose]);
const handleInteractiveInputSend = useCallback(
(value: string) => {
onInteractiveInputSend?.(value);
},
[onInteractiveInputSend],
);
if (isError) {
return null;
}
if (isDone) {
return <InlineResultAction onResultClick={onResultClick} />;
}
return (
<AIAction
loadingShowOperation
onClose={handleClose}
loading={isLoading}
customOperationRender={
<InteractiveInput
autoFocus
defaultValue={defaultValue}
onValueChange={onValueChange}
onHeightChange={(height) => onLayoutChange(height)}
size='small'
placeholder={localize('aiNative.inline.chat.input.placeholder.default')}
width={aiNativeConfigService.inlineChat.inputWidth}
disabled={isLoading}
onSend={handleInteractiveInputSend}
/>
}
/>
);
};
@Injectable({ multiple: true })
export class InlineInputWidget extends AIInlineContentWidget {
allowEditorOverflow = true;
positionPreference = [ContentWidgetPositionPreference.ABOVE];
protected readonly _onSend = new Emitter<string>();
public readonly onSend = this._onSend.event;
protected readonly _onClose = new Emitter<void>();
public readonly onClose = this._onClose.event;
protected readonly _onValueChange = new Emitter<string>();
public readonly onValueChange = this._onValueChange.event;
constructor(protected readonly editor: IMonacoCodeEditor, protected readonly defaultValue?: string) {
super(editor);
}
override dispose(): void {
super.dispose();
this.inlineInputService.hide();
}
override id(): string {
return AIInlineInputChatContentWidgetId;
}
override renderView(): ReactNode {
return (
<div className={styles.input_wrapper}>
<InlineInputWidgetRender
defaultValue={this.defaultValue}
onClose={() => this._onClose.fire()}
onChatStatus={this.onStatusChange.bind(this)}
onLayoutChange={() => {
this.editor.layoutContentWidget(this);
}}
onValueChange={(value) => {
this._onValueChange.fire(value);
}}
onInteractiveInputSend={(value) => {
this.launchChatStatus(EInlineChatStatus.THINKING);
this._onSend.fire(value);
}}
onResultClick={(k: EResultKind) => {
this._onResultClick.fire(k);
}}
/>
</div>
);
}
}