50 lines
1.4 KiB
JavaScript
50 lines
1.4 KiB
JavaScript
import Route from "@ember/routing/route";
|
|
import AdminProduct from "discourse/plugins/discourse-subscriptions/discourse/models/admin-product";
|
|
import AdminPlan from "discourse/plugins/discourse-subscriptions/discourse/models/admin-plan";
|
|
import I18n from "I18n";
|
|
|
|
export default Route.extend({
|
|
model(params) {
|
|
const product_id = params["product-id"];
|
|
let product;
|
|
let plans = [];
|
|
|
|
if (product_id === "new") {
|
|
product = AdminProduct.create({ active: false, isNew: true });
|
|
} else {
|
|
product = AdminProduct.find(product_id);
|
|
plans = AdminPlan.findAll({ product_id });
|
|
}
|
|
|
|
return Ember.RSVP.hash({ plans, product });
|
|
},
|
|
|
|
actions: {
|
|
destroyPlan(plan) {
|
|
bootbox.confirm(
|
|
I18n.t(
|
|
"discourse_subscriptions.admin.plans.operations.destroy.confirm"
|
|
),
|
|
I18n.t("no_value"),
|
|
I18n.t("yes_value"),
|
|
confirmed => {
|
|
if (confirmed) {
|
|
plan
|
|
.destroy()
|
|
.then(() => {
|
|
this.controllerFor(
|
|
"adminPluginsDiscourseSubscriptionsProductsShow"
|
|
)
|
|
.get("model.plans")
|
|
.removeObject(plan);
|
|
})
|
|
.catch(data =>
|
|
bootbox.alert(data.jqXHR.responseJSON.errors.join("\n"))
|
|
);
|
|
}
|
|
}
|
|
);
|
|
}
|
|
}
|
|
});
|