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: support inline input restore #4345

Merged
merged 1 commit into from
Feb 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -151,13 +151,6 @@ export class AIInlineContentWidget extends ReactInlineContentWidget {
super(editor);

this.aiNativeContextKey = this.injector.get(AINativeContextKey, [this.editor.contextKeyService]);
this.addDispose(
this.editor.onDidLayoutChange(() => {
if (this.isOutOfArea()) {
this.dispose();
}
}),
);
}

public launchChatStatus(status: EInlineChatStatus) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,12 @@ interface IInlineInputWidgetRenderProps {
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 } = props;
const { defaultValue, onClose, onInteractiveInputSend, onLayoutChange, onChatStatus, onResultClick, onValueChange } =
props;
const [status, setStatus] = useState<EInlineChatStatus>(EInlineChatStatus.READY);
const aiNativeConfigService = useInjectable<AINativeConfigService>(AINativeConfigService);

Expand Down Expand Up @@ -69,6 +71,7 @@ const InlineInputWidgetRender = (props: IInlineInputWidgetRenderProps) => {
<InteractiveInput
autoFocus
defaultValue={defaultValue}
onValueChange={onValueChange}
onHeightChange={(height) => onLayoutChange(height)}
size='small'
placeholder={localize('aiNative.inline.chat.input.placeholder.default')}
Expand All @@ -82,16 +85,19 @@ const InlineInputWidgetRender = (props: IInlineInputWidgetRenderProps) => {
};

@Injectable({ multiple: true })
export class InlineInputChatWidget extends AIInlineContentWidget {
export class InlineInputWidget extends AIInlineContentWidget {
allowEditorOverflow = true;
positionPreference = [ContentWidgetPositionPreference.ABOVE];

protected readonly _onInteractiveInputValue = new Emitter<string>();
public readonly onInteractiveInputValue = this._onInteractiveInputValue.event;
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);
}
Expand All @@ -115,9 +121,12 @@ export class InlineInputChatWidget extends AIInlineContentWidget {
onLayoutChange={() => {
this.editor.layoutContentWidget(this);
}}
onValueChange={(value) => {
this._onValueChange.fire(value);
}}
onInteractiveInputSend={(value) => {
this.launchChatStatus(EInlineChatStatus.THINKING);
this._onInteractiveInputValue.fire(value);
this._onSend.fire(value);
}}
onResultClick={(k: EResultKind) => {
this._onResultClick.fire(k);
Expand Down
Loading
Loading