0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-09-20 07:41:11 +02:00
discourse-custom-wizard/assets/javascripts/discourse/components/wizard-subscription-authorize.js

51 Zeilen
1,4 KiB
JavaScript

2023-09-04 15:55:51 +02:00
import { action, set } from "@ember/object";
import { inject as service } from "@ember/service";
import Component from "@glimmer/component";
import { tracked } from "@glimmer/tracking";
2023-09-08 11:54:41 +02:00
import { ajax } from "discourse/lib/ajax";
import { popupAjaxError } from "discourse/lib/ajax-error";
2023-09-04 15:55:51 +02:00
export default class WizardSubscriptionAuthorize extends Component {
basePath = "/admin/plugins/subscription-client/suppliers";
2023-09-04 15:55:51 +02:00
@service siteSettings;
2023-09-08 11:54:41 +02:00
@tracked supplierId = null;
2023-09-08 20:14:36 +02:00
@tracked authorized = false;
@tracked unauthorizing = false;
2023-09-04 15:55:51 +02:00
constructor() {
super(...arguments);
ajax("/admin/plugins/subscription-client/suppliers?final_landing_path%3D%2Fadmin%2Fwizards%2Fwizard").then((result) => {
2023-09-08 20:14:36 +02:00
this.supplierId = result.suppliers[0].id;
this.authorized = result.suppliers[0].authorized;
})
2023-09-04 15:55:51 +02:00
}
@action
authorize() {
window.location.href = `${this.basePath}/authorize?supplier_id=${this.supplierId}`;
2023-09-04 15:55:51 +02:00
}
@action
deauthorize() {
this.unauthorizing = true;
ajax(`${this.basePath}/authorize`, {
type: "DELETE",
data: {
supplier_id: this.supplierId,
},
})
.then((result) => {
2023-09-22 11:20:22 +02:00
console.log(result);
this.supplierId = result.suppliers[0].id;
this.authorized = result.suppliers[0].authorized;
})
.finally(() => {
this.unauthorizing = false;
})
.catch(popupAjaxError);
};
2023-09-04 15:55:51 +02:00
}