This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/assets/javascripts/discourse/controllers/request-group-membership-form.js.es6
2019-05-27 10:15:39 +02:00

40 lines
1.1 KiB
JavaScript

import computed from "ember-addons/ember-computed-decorators";
import { popupAjaxError } from "discourse/lib/ajax-error";
import DiscourseURL from "discourse/lib/url";
import ModalFunctionality from "discourse/mixins/modal-functionality";
export default Ember.Controller.extend(ModalFunctionality, {
loading: false,
reason: Ember.computed.alias("model.membership_request_template"),
@computed("model.name")
title(groupName) {
return I18n.t("groups.membership_request.title", { group_name: groupName });
},
@computed("loading", "reason")
disableSubmit(loading, reason) {
return loading || Ember.isEmpty(reason);
},
actions: {
requestMember() {
if (this.currentUser) {
this.set("loading", true);
this.model
.requestMembership(this.reason)
.then(result => {
DiscourseURL.routeTo(result.relative_url);
})
.catch(popupAjaxError)
.finally(() => {
this.set("loading", false);
});
} else {
this._showLoginModal();
}
}
}
});