discourse-subscriptions/assets/javascripts/discourse/routes/admin-plugins-discourse-pat...

44 lines
1.2 KiB
Plaintext
Raw Normal View History

2019-10-15 06:50:30 -04:00
import AdminProduct from "discourse/plugins/discourse-patrons/discourse/models/admin-product";
2019-10-21 00:28:45 -04:00
import AdminPlan from "discourse/plugins/discourse-patrons/discourse/models/admin-plan";
2019-10-14 18:40:49 -04:00
export default Discourse.Route.extend({
2019-10-15 23:15:01 -04:00
model(params) {
2019-10-24 23:00:59 -04:00
const product_id = params["product-id"];
2019-10-15 23:15:01 -04:00
let product;
2019-10-21 00:28:45 -04:00
let plans = [];
2019-10-15 23:15:01 -04:00
2019-10-24 23:00:59 -04:00
if (product_id === "new") {
2019-10-15 23:15:01 -04:00
product = AdminProduct.create({ active: true, isNew: true });
2019-10-24 23:00:59 -04:00
} else {
2019-10-21 00:28:45 -04:00
product = AdminProduct.find(product_id);
plans = AdminPlan.findAll({ product_id });
2019-10-15 23:15:01 -04:00
}
2019-10-22 20:50:54 -04:00
return Ember.RSVP.hash({ plans, product });
2019-10-22 00:45:51 -04:00
},
2019-10-22 04:32:36 -04:00
actions: {
destroyPlan(plan) {
bootbox.confirm(
I18n.t("discourse_patrons.admin.plans.operations.destroy.confirm"),
I18n.t("no_value"),
I18n.t("yes_value"),
confirmed => {
if (confirmed) {
2019-10-24 23:00:59 -04:00
plan
.destroy()
.then(() => {
this.controllerFor("adminPluginsDiscoursePatronsProductsShow")
.get("model.plans")
.removeObject(plan);
})
.catch(data =>
bootbox.alert(data.jqXHR.responseJSON.errors.join("\n"))
);
2019-10-22 04:32:36 -04:00
}
}
);
}
}
2019-10-14 18:40:49 -04:00
});