mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 13:54:35 +03:00
45 lines
1.4 KiB
JavaScript
45 lines
1.4 KiB
JavaScript
import Component from '@glimmer/component';
|
|
import {action} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default class SettingsMembersDefaultPostAccess extends Component {
|
|
@service settings;
|
|
|
|
get options() {
|
|
return [{
|
|
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',
|
|
description: 'Only logged-in members with an active Stripe subscription',
|
|
value: 'paid',
|
|
icon: 'members-paid',
|
|
icon_color: 'pink'
|
|
}];
|
|
}
|
|
|
|
get selectedOption() {
|
|
if (this.settings.get('membersSignupAccess') === 'none') {
|
|
return this.options.find(o => o.value === 'public');
|
|
}
|
|
|
|
return this.options.find(o => o.value === this.settings.get('defaultContentVisibility'));
|
|
}
|
|
|
|
@action
|
|
setDefaultContentVisibility(option) {
|
|
if (this.settings.get('membersSignupAccess') !== 'none') {
|
|
this.settings.set('defaultContentVisibility', option.value);
|
|
}
|
|
}
|
|
}
|