2021-10-04 14:01:12 +03:00
|
|
|
import Controller from '@ember/controller';
|
2021-10-06 17:29:15 +03:00
|
|
|
import {task} from 'ember-concurrency-decorators';
|
2021-10-04 14:55:17 +03:00
|
|
|
import {tracked} from '@glimmer/tracking';
|
2021-10-04 14:01:12 +03:00
|
|
|
|
2021-10-04 14:55:17 +03:00
|
|
|
export default class MembersController extends Controller {
|
2021-10-06 17:29:15 +03:00
|
|
|
@tracked offers = [];
|
|
|
|
|
|
|
|
constructor() {
|
|
|
|
super(...arguments);
|
|
|
|
}
|
|
|
|
|
|
|
|
get offersExist() {
|
|
|
|
return this.offers.length > 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@task({restartable: true})
|
|
|
|
*fetchOffersTask() {
|
|
|
|
this.offers = yield this.store.query('offer', {limit: 'all'});
|
|
|
|
}
|
|
|
|
}
|