2021-10-04 14:01:12 +03:00
|
|
|
import Controller from '@ember/controller';
|
2022-03-14 13:52:04 +03:00
|
|
|
import LinkOfferModal from '../components/modals/offers/link';
|
2021-10-08 06:58:17 +03:00
|
|
|
import {action} from '@ember/object';
|
|
|
|
import {inject as service} from '@ember/service';
|
2022-02-09 13:49:38 +03:00
|
|
|
import {task} from 'ember-concurrency';
|
2021-10-04 14:55:17 +03:00
|
|
|
import {tracked} from '@glimmer/tracking';
|
2021-10-04 14:01:12 +03:00
|
|
|
|
2021-10-13 18:53:21 +03:00
|
|
|
const TYPES = [{
|
|
|
|
name: 'Active',
|
|
|
|
value: 'active'
|
|
|
|
},{
|
|
|
|
name: 'Archived',
|
|
|
|
value: 'archived'
|
|
|
|
}];
|
|
|
|
|
2021-10-04 14:55:17 +03:00
|
|
|
export default class MembersController extends Controller {
|
2021-10-08 06:58:17 +03:00
|
|
|
@service modals;
|
2021-10-13 18:53:21 +03:00
|
|
|
@service router;
|
|
|
|
|
|
|
|
@tracked offers = [];
|
2021-10-20 14:49:16 +03:00
|
|
|
@tracked products = [];
|
2021-10-13 18:53:21 +03:00
|
|
|
@tracked type = 'active';
|
|
|
|
|
|
|
|
queryParams = [
|
|
|
|
'type'
|
|
|
|
];
|
2021-10-06 17:29:15 +03:00
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super(...arguments);
|
2021-10-13 18:53:21 +03:00
|
|
|
this.availableTypes = TYPES;
|
|
|
|
}
|
|
|
|
|
|
|
|
get filteredOffers() {
|
|
|
|
return this.offers.filter((offer) => {
|
2022-02-02 13:52:44 +03:00
|
|
|
const product = this.products.find((p) => {
|
|
|
|
return p.id === offer.tier.id;
|
|
|
|
});
|
|
|
|
const price = offer.cadence === 'month' ? product.monthlyPrice : product.yearlyPrice;
|
|
|
|
return offer.status === this.type && !!price;
|
2021-10-20 14:49:16 +03:00
|
|
|
}).map((offer) => {
|
|
|
|
const product = this.products.find((p) => {
|
|
|
|
return p.id === offer.tier.id;
|
|
|
|
});
|
|
|
|
const price = offer.cadence === 'month' ? product.monthlyPrice : product.yearlyPrice;
|
|
|
|
offer.finalCurrency = offer.currency || price.currency;
|
|
|
|
offer.originalPrice = price.amount;
|
|
|
|
offer.updatedPrice = offer.type === 'fixed' ? (price.amount - offer.amount) : (price.amount - ((price.amount * offer.amount) / 100));
|
|
|
|
return offer;
|
2021-10-13 18:53:21 +03:00
|
|
|
});
|
2021-10-06 17:29:15 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
get offersExist() {
|
|
|
|
return this.offers.length > 0;
|
|
|
|
}
|
|
|
|
|
2021-10-13 18:53:21 +03:00
|
|
|
get selectedType() {
|
|
|
|
return this.type ? TYPES.find((d) => {
|
|
|
|
return this.type === d.value;
|
|
|
|
}) : TYPES[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
@action
|
|
|
|
onTypeChange(type) {
|
|
|
|
this.type = type.value;
|
|
|
|
}
|
|
|
|
|
2021-10-08 06:58:17 +03:00
|
|
|
@action
|
|
|
|
openLinkDialog(offer) {
|
2022-03-14 13:52:04 +03:00
|
|
|
this.advancedModal = this.modals.open(LinkOfferModal, {
|
2021-10-08 06:58:17 +03:00
|
|
|
offer: offer
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-10-06 17:29:15 +03:00
|
|
|
@task({restartable: true})
|
|
|
|
*fetchOffersTask() {
|
2022-01-17 21:53:43 +03:00
|
|
|
this.products = yield this.store.query('product', {
|
|
|
|
filter: 'type:paid', include: 'monthly_price,yearly_price'
|
|
|
|
});
|
2021-10-06 17:29:15 +03:00
|
|
|
this.offers = yield this.store.query('offer', {limit: 'all'});
|
2021-10-20 14:49:16 +03:00
|
|
|
return this.offers;
|
2021-10-06 17:29:15 +03:00
|
|
|
}
|
|
|
|
}
|