Ghost/ghost/admin/app/components/gh-membership-tiers-alpha.js
Kevin Ansfield 90a080e0b8 Update dependency eslint-plugin-ghost to v2.14.0 (#2441)
no issue

- bumped dependency
- fixed all new lint failures
- removed deprecated `ember-cli-eslint`
  - it was tying us to an old version of `eslint` resulting in missing rule definition errors when linting was run as part of `yarn dev` and `ember test`
  - we run linting separately in CI so we don't need linting to run _again_ on each of our ember test runs
2022-08-03 12:21:16 +01:00

89 lines
1.8 KiB
JavaScript

import Component from '@glimmer/component';
import {action} from '@ember/object';
import {inject as service} from '@ember/service';
import {tracked} from '@glimmer/tracking';
const TYPES = [{
name: 'Active',
value: 'active'
},{
name: 'Archived',
value: 'archived'
}];
export default class extends Component {
@service membersUtils;
@service ghostPaths;
@service ajax;
@service store;
@service config;
@tracked showTierModal = false;
@tracked tierModel = null;
@tracked type = 'active';
get tiers() {
return this.args.tiers.filter((tier) => {
if (this.type === 'active') {
return !!tier.active;
} else if (this.type === 'archived') {
return !tier.active;
}
return true;
});
}
get availableTypes() {
return TYPES;
}
get selectedType() {
return this.type ? TYPES.find((d) => {
return this.type === d.value;
}) : TYPES[0];
}
get isEmptyList() {
return this.tiers.length === 0;
}
@action
onTypeChange(type) {
this.type = type.value;
}
@action
async openEditTier(tier) {
this.tierModel = tier;
this.showTierModal = true;
}
@action
async onUnarchive() {
this.type = 'active';
this.args.updatePortalPreview();
}
@action
async onArchive() {
this.args.updatePortalPreview();
}
@action
async openNewTier() {
this.tierModel = this.store.createRecord('tier');
this.showTierModal = true;
}
@action
closeTierModal() {
this.showTierModal = false;
}
@action
confirmTierSave() {
this.args.confirmTierSave();
}
}