mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:27:30 +08:00
a433b30650
This conversion was achieved using the ember-native-class-codemod, plus a handful of manual fixes/tweaks
93 lines
2.4 KiB
JavaScript
93 lines
2.4 KiB
JavaScript
import { tagName } from "@ember-decorators/component";
|
|
import { inject as service } from "@ember/service";
|
|
import Component from "@ember/component";
|
|
import I18n from "I18n";
|
|
import Permalink from "admin/models/permalink";
|
|
import discourseComputed, { bind } from "discourse-common/utils/decorators";
|
|
import { fmt } from "discourse/lib/computed";
|
|
import { schedule } from "@ember/runloop";
|
|
import { action } from "@ember/object";
|
|
|
|
@tagName("")
|
|
export default class PermalinkForm extends Component {
|
|
@service dialog;
|
|
|
|
formSubmitted = false;
|
|
permalinkType = "topic_id";
|
|
|
|
@fmt("permalinkType", "admin.permalink.%@") permalinkTypePlaceholder;
|
|
|
|
action = null;
|
|
permalinkTypeValue = null;
|
|
|
|
@discourseComputed
|
|
permalinkTypes() {
|
|
return [
|
|
{ id: "topic_id", name: I18n.t("admin.permalink.topic_id") },
|
|
{ id: "post_id", name: I18n.t("admin.permalink.post_id") },
|
|
{ id: "category_id", name: I18n.t("admin.permalink.category_id") },
|
|
{ id: "tag_name", name: I18n.t("admin.permalink.tag_name") },
|
|
{ id: "external_url", name: I18n.t("admin.permalink.external_url") },
|
|
];
|
|
}
|
|
|
|
@bind
|
|
focusPermalink() {
|
|
schedule("afterRender", () =>
|
|
document.querySelector(".permalink-url")?.focus()
|
|
);
|
|
}
|
|
|
|
@action
|
|
submitFormOnEnter(event) {
|
|
if (event.key === "Enter") {
|
|
this.onSubmit();
|
|
}
|
|
}
|
|
|
|
@action
|
|
onSubmit() {
|
|
if (!this.formSubmitted) {
|
|
this.set("formSubmitted", true);
|
|
|
|
Permalink.create({
|
|
url: this.url,
|
|
permalink_type: this.permalinkType,
|
|
permalink_type_value: this.permalinkTypeValue,
|
|
})
|
|
.save()
|
|
.then(
|
|
(result) => {
|
|
this.setProperties({
|
|
url: "",
|
|
permalinkTypeValue: "",
|
|
formSubmitted: false,
|
|
});
|
|
|
|
this.action(Permalink.create(result.permalink));
|
|
|
|
this.focusPermalink();
|
|
},
|
|
(e) => {
|
|
this.set("formSubmitted", false);
|
|
|
|
let error;
|
|
if (e?.jqXHR?.responseJSON?.errors) {
|
|
error = I18n.t("generic_error_with_reason", {
|
|
error: e.jqXHR.responseJSON.errors.join(". "),
|
|
});
|
|
} else {
|
|
error = I18n.t("generic_error");
|
|
}
|
|
|
|
this.dialog.alert({
|
|
message: error,
|
|
didConfirm: () => this.focusPermalink(),
|
|
didCancel: () => this.focusPermalink(),
|
|
});
|
|
}
|
|
);
|
|
}
|
|
}
|
|
}
|