Ghost/ghost/admin/app/components/settings/members-default-post-access.js

79 lines
2.6 KiB
JavaScript
Raw Normal View History

import Component from '@glimmer/component';
import {action} from '@ember/object';
import {inject as service} from '@ember/service';
import {tracked} from '@glimmer/tracking';
export default class SettingsMembersDefaultPostAccess extends Component {
@service settings;
@service feature;
@tracked showSegmentError;
get options() {
const defaultOptions = [{
name: 'Public',
description: 'All site visitors to your site, no login required',
value: 'public',
icon: 'globe',
icon_color: 'green'
}, {
name: 'Members only',
description: 'All logged-in members',
value: 'members',
icon: 'members-all',
icon_color: 'blue'
}, {
name: 'Paid-members only',
2021-05-17 20:36:36 +03:00
description: 'Only logged-in members with an active Stripe subscription',
value: 'paid',
icon: 'members-paid',
icon_color: 'pink'
}];
if (this.feature.get('multipleProducts')) {
defaultOptions.push({
name: 'Specific tier(s)',
description: 'Members with any of the selected tiers',
value: 'filter',
icon: 'members-segment',
icon_color: 'yellow'
});
}
return defaultOptions;
}
get hasVisibilityFilter() {
return this.feature.get('multipleProducts') && !['public', 'members', 'paid'].includes(this.settings.get('defaultContentVisibility'));
}
get selectedOption() {
if (this.settings.get('membersSignupAccess') === 'none') {
return this.options.find(o => o.value === 'public');
}
if (!['public', 'members', 'paid'].includes(this.settings.get('defaultContentVisibility'))) {
return this.options.find(o => o.value === 'filter');
}
return this.options.find(o => o.value === this.settings.get('defaultContentVisibility'));
}
@action
setVisibility(segment) {
if (segment) {
this.settings.set('defaultContentVisibility', segment);
this.showSegmentError = false;
} else {
this.settings.set('defaultContentVisibility', '');
this.showSegmentError = true;
}
}
@action
setDefaultContentVisibility(option) {
if (this.settings.get('membersSignupAccess') !== 'none') {
if (option.value === 'filter') {
this.settings.set('defaultContentVisibility', '');
} else {
this.settings.set('defaultContentVisibility', option.value);
}
}
}
}