mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 02:11:08 -06:00
DEV: Add outlet and changes to support AI proofread (#24909)
This commit is contained in:
parent
9f00c16a7a
commit
46eec95719
@ -1,8 +1,10 @@
|
||||
import Component from "@glimmer/component";
|
||||
import { tracked } from "@glimmer/tracking";
|
||||
import { hash } from "@ember/helper";
|
||||
import { on } from "@ember/modifier";
|
||||
import { action } from "@ember/object";
|
||||
import DButton from "discourse/components/d-button";
|
||||
import PluginOutlet from "discourse/components/plugin-outlet";
|
||||
import { fixQuotes } from "discourse/components/post-text-selection";
|
||||
import { ajax } from "discourse/lib/ajax";
|
||||
import { popupAjaxError } from "discourse/lib/ajax-error";
|
||||
@ -11,8 +13,8 @@ import autoFocus from "discourse/modifiers/auto-focus";
|
||||
import I18n from "discourse-i18n";
|
||||
|
||||
export default class FastEdit extends Component {
|
||||
@tracked value = this.args.initialValue;
|
||||
@tracked isSaving = false;
|
||||
@tracked value = this.args.newValue || this.args.initialValue;
|
||||
|
||||
buttonTitle = I18n.t("composer.title", {
|
||||
modifier: translateModKey("Meta+"),
|
||||
@ -39,6 +41,11 @@ export default class FastEdit extends Component {
|
||||
this.value = event.target.value;
|
||||
}
|
||||
|
||||
@action
|
||||
updateValueProperty(value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
@action
|
||||
async save() {
|
||||
this.isSaving = true;
|
||||
@ -67,17 +74,29 @@ export default class FastEdit extends Component {
|
||||
{{on "input" this.updateValue}}
|
||||
id="fast-edit-input"
|
||||
{{autoFocus}}
|
||||
>{{@initialValue}}</textarea>
|
||||
>{{this.value}}</textarea>
|
||||
|
||||
<DButton
|
||||
class="btn-small btn-primary save-fast-edit"
|
||||
@action={{this.save}}
|
||||
@icon="pencil-alt"
|
||||
@label="composer.save_edit"
|
||||
@translatedTitle={{this.buttonTitle}}
|
||||
@isLoading={{this.isSaving}}
|
||||
@disabled={{this.disabled}}
|
||||
/>
|
||||
<div class="fast-edit-container__footer">
|
||||
<DButton
|
||||
class="btn-small btn-primary save-fast-edit"
|
||||
@action={{this.save}}
|
||||
@icon="pencil-alt"
|
||||
@label="composer.save_edit"
|
||||
@translatedTitle={{this.buttonTitle}}
|
||||
@isLoading={{this.isSaving}}
|
||||
@disabled={{this.disabled}}
|
||||
/>
|
||||
|
||||
<PluginOutlet
|
||||
@name="fast-edit-footer-after"
|
||||
@defaultGlimmer={{true}}
|
||||
@outletArgs={{hash
|
||||
initialValue=@initialValue
|
||||
newValue=@newValue
|
||||
updateValue=this.updateValueProperty
|
||||
}}
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
}
|
||||
|
@ -1,5 +1,6 @@
|
||||
<DModal @title={{i18n "post.quote_edit"}} @closeModal={{@closeModal}}>
|
||||
<FastEdit
|
||||
@newValue={{@model.newValue}}
|
||||
@initialValue={{@model.initialValue}}
|
||||
@post={{@model.post}}
|
||||
@close={{@closeModal}}
|
||||
|
@ -190,7 +190,7 @@ export default class PostTextSelectionToolbar extends Component {
|
||||
<PluginOutlet
|
||||
@name="post-text-buttons"
|
||||
@defaultGlimmer={{true}}
|
||||
@outletArgs={{hash data=@data}}
|
||||
@outletArgs={{hash data=@data post=this.post}}
|
||||
>
|
||||
{{#if this.embedQuoteButton}}
|
||||
<DButton
|
||||
|
Loading…
Reference in New Issue
Block a user