mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +03:00
8d01fb5556
no issue - ran [ember-native-class-codemod](https://github.com/ember-codemods/ember-native-class-codemod) to convert the majority of remaining EmberObject based controllers and components to native class syntax using the `@classic` decorator - skipped older style modal components (`components/modal-*.js`) due to observed incompatibilities in some cases
46 lines
1.1 KiB
JavaScript
46 lines
1.1 KiB
JavaScript
import Component from '@ember/component';
|
|
import classic from 'ember-classic-decorator';
|
|
import {action, computed} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
const VISIBILITIES = [
|
|
{label: 'Public', name: 'public'},
|
|
{label: 'Members only', name: 'members'},
|
|
{label: 'Paid-members only', name: 'paid'}
|
|
];
|
|
|
|
@classic
|
|
export default class GhPsmVisibilityInput extends Component {
|
|
@service
|
|
settings;
|
|
|
|
@service
|
|
feature;
|
|
|
|
// public attrs
|
|
post = null;
|
|
|
|
@computed('post.visibility')
|
|
get selectedVisibility() {
|
|
return this.get('post.visibility') || this.settings.get('defaultContentVisibility');
|
|
}
|
|
|
|
init() {
|
|
super.init(...arguments);
|
|
this.availableVisibilities = [...VISIBILITIES];
|
|
if (this.feature.get('multipleProducts')) {
|
|
this.availableVisibilities.push(
|
|
{label: 'Specific tier(s)', name: 'tiers'}
|
|
);
|
|
}
|
|
}
|
|
|
|
@action
|
|
updateVisibility(newVisibility) {
|
|
this.post.set('visibility', newVisibility);
|
|
if (newVisibility !== 'tiers') {
|
|
this.post.set('tiers', []);
|
|
}
|
|
}
|
|
}
|