mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 10:24:49 +08:00
5835d4e5ed
... rather than just the category id. In order for the user to have selected a category, the category must have been loaded and it's useful for the category chooser to provide this fetched category so that it doesn't need to be refetched. In the future, it would be better to store the categories that the chooser knows about in local component state, so that the category doesn't need to be fetched from the id map, but this, at least, puts the API in place.
90 lines
2.0 KiB
JavaScript
90 lines
2.0 KiB
JavaScript
import Component from "@ember/component";
|
|
import { action } from "@ember/object";
|
|
import { or } from "@ember/object/computed";
|
|
import { service } from "@ember/service";
|
|
import { isEmpty } from "@ember/utils";
|
|
import { tagName } from "@ember-decorators/component";
|
|
import { popupAjaxError } from "discourse/lib/ajax-error";
|
|
import { bufferedProperty } from "discourse/mixins/buffered-content";
|
|
import Category from "discourse/models/category";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
import I18n from "discourse-i18n";
|
|
|
|
@tagName("tr")
|
|
export default class EmbeddableHost extends Component.extend(
|
|
bufferedProperty("host")
|
|
) {
|
|
@service dialog;
|
|
editToggled = false;
|
|
categoryId = null;
|
|
category = null;
|
|
|
|
@or("host.isNew", "editToggled") editing;
|
|
|
|
init() {
|
|
super.init(...arguments);
|
|
|
|
const host = this.host;
|
|
const categoryId = host.category_id || this.site.uncategorized_category_id;
|
|
const category = Category.findById(categoryId);
|
|
|
|
this.set("category", category);
|
|
}
|
|
|
|
@discourseComputed("buffered.host", "host.isSaving")
|
|
cantSave(host, isSaving) {
|
|
return isSaving || isEmpty(host);
|
|
}
|
|
|
|
@action
|
|
edit() {
|
|
this.set("editToggled", true);
|
|
}
|
|
|
|
@action
|
|
save() {
|
|
if (this.cantSave) {
|
|
return;
|
|
}
|
|
|
|
const props = this.buffered.getProperties(
|
|
"host",
|
|
"allowed_paths",
|
|
"class_name"
|
|
);
|
|
props.category_id = this.category.id;
|
|
|
|
const host = this.host;
|
|
|
|
host
|
|
.save(props)
|
|
.then(() => {
|
|
this.set("editToggled", false);
|
|
})
|
|
.catch(popupAjaxError);
|
|
}
|
|
|
|
@action
|
|
delete() {
|
|
return this.dialog.confirm({
|
|
message: I18n.t("admin.embedding.confirm_delete"),
|
|
didConfirm: () => {
|
|
return this.host.destroyRecord().then(() => {
|
|
this.deleteHost(this.host);
|
|
});
|
|
},
|
|
});
|
|
}
|
|
|
|
@action
|
|
cancel() {
|
|
const host = this.host;
|
|
if (host.get("isNew")) {
|
|
this.deleteHost(host);
|
|
} else {
|
|
this.rollbackBuffer();
|
|
this.set("editToggled", false);
|
|
}
|
|
}
|
|
}
|