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

46 lines
1.3 KiB
Plaintext
Raw Normal View History

2019-12-02 02:58:14 -05:00
import AdminProduct from "discourse/plugins/discourse-subscriptions/discourse/models/admin-product";
import AdminPlan from "discourse/plugins/discourse-subscriptions/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(
2019-12-03 17:29:13 -05:00
I18n.t("discourse_subscriptions.admin.plans.operations.destroy.confirm"),
2019-10-22 04:32:36 -04:00
I18n.t("no_value"),
I18n.t("yes_value"),
confirmed => {
if (confirmed) {
2019-10-24 23:00:59 -04:00
plan
.destroy()
.then(() => {
2019-12-02 18:52:46 -05:00
this.controllerFor(
"adminPluginsDiscourseSubscriptionsProductsShow"
)
2019-10-24 23:00:59 -04:00
.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
});