discourse/app/assets/javascripts/admin/addon/components/admin-editable-field.js
David Taylor a433b30650
DEV: Convert admin component definitions to native class syntax (#20311)
This conversion was achieved using the ember-native-class-codemod, plus a handful of manual fixes/tweaks
2023-02-23 15:32:53 +00:00

23 lines
483 B
JavaScript

import { tagName } from "@ember-decorators/component";
import Component from "@ember/component";
import { action } from "@ember/object";
@tagName("")
export default class AdminEditableField extends Component {
buffer = "";
editing = false;
@action
edit(event) {
event?.preventDefault();
this.set("buffer", this.value);
this.toggleProperty("editing");
}
@action
save() {
// Action has to toggle 'editing' property.
this.action(this.buffer);
}
}