import Component from "@glimmer/component"; import { tracked } from "@glimmer/tracking"; import { action } from "@ember/object"; import { inject as service } from "@ember/service"; import { htmlSafe } from "@ember/template"; import CookText from "discourse/components/cook-text"; import DButton from "discourse/components/d-button"; import DModal from "discourse/components/d-modal"; import { ajax } from "discourse/lib/ajax"; import { popupAjaxError } from "discourse/lib/ajax-error"; import i18n from "discourse-common/helpers/i18n"; import AiIndicatorWave from "../ai-indicator-wave"; export default class ModalDiffModal extends Component { @service currentUser; @tracked loading = false; @tracked diff; @tracked suggestion = ""; constructor() { super(...arguments); this.suggestChanges(); } @action async suggestChanges() { this.loading = true; try { const suggestion = await ajax("/discourse-ai/ai-helper/suggest", { method: "POST", data: { mode: this.args.model.mode, text: this.args.model.selectedText, custom_prompt: this.args.model.customPromptValue, force_default_locale: true, }, }); this.diff = suggestion.diff; this.suggestion = suggestion.suggestions[0]; } catch (e) { popupAjaxError(e); } finally { this.loading = false; } } @action triggerConfirmChanges() { this.args.closeModal(); if (this.suggestion) { this.args.model.toolbarEvent.replaceText( this.args.model.selectedText, this.suggestion ); } } }