discourse/app/assets/javascripts/admin/addon/components/permalink-form.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

89 lines
2.4 KiB
JavaScript
Raw Normal View History

import Component from "@ember/component";
import I18n from "I18n";
2017-07-05 16:47:01 -04:00
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";
2022-09-27 14:47:13 -04:00
import { inject as service } from "@ember/service";
2017-07-05 16:47:01 -04:00
export default Component.extend({
tagName: "",
2022-09-27 14:47:13 -04:00
dialog: service(),
2015-07-15 08:54:28 -04:00
formSubmitted: false,
permalinkType: "topic_id",
permalinkTypePlaceholder: fmt("permalinkType", "admin.permalink.%@"),
action: null,
permalinkTypeValue: null,
2015-07-15 08:54:28 -04:00
@discourseComputed
permalinkTypes() {
2015-07-15 08:54:28 -04:00
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") },
2020-05-25 05:48:54 -04:00
{ id: "tag_name", name: I18n.t("admin.permalink.tag_name") },
2015-07-15 08:54:28 -04:00
{ id: "external_url", name: I18n.t("admin.permalink.external_url") },
];
},
2015-07-15 08:54:28 -04:00
@bind
focusPermalink() {
schedule("afterRender", () =>
2022-09-27 14:47:13 -04:00
document.querySelector(".permalink-url")?.focus()
);
},
2015-07-15 08:54:28 -04:00
@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");
2018-06-15 11:03:24 -04:00
}
2022-09-27 14:47:13 -04:00
this.dialog.alert({
message: error,
didConfirm: () => this.focusPermalink(),
didCancel: () => this.focusPermalink(),
});
}
);
}
2015-07-15 08:54:28 -04:00
},
});