mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 02:11:44 +03:00
58daafdef4
* Subtle tweaks to the recent posts refs: https://github.com/TryGhost/Team/issues/1531 * Combining Recent Posts and Members Activity together and other layout tweaks refs: https://github.com/TryGhost/Team/issues/1531 - attempting to combine recent posts and members activity together - various layout tweaks to make this work better - tons of tiny style tweaks
54 lines
1.2 KiB
JavaScript
54 lines
1.2 KiB
JavaScript
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 Recents extends Component {
|
|
@service store;
|
|
@service feature;
|
|
@service session;
|
|
@service settings;
|
|
|
|
@tracked selected = 'posts';
|
|
|
|
@tracked posts = [];
|
|
|
|
@action
|
|
async loadPosts() {
|
|
this.posts = await this.store.query('post', {limit: 5, filter: 'status:published', order: 'published_at desc'});
|
|
}
|
|
|
|
@action
|
|
changeTabToPosts() {
|
|
this.selected = 'posts';
|
|
}
|
|
|
|
@action
|
|
changeTabToActivity() {
|
|
this.selected = 'activity';
|
|
}
|
|
|
|
get postsTabSelected() {
|
|
return (this.selected === 'posts');
|
|
}
|
|
|
|
get activityTabSelected() {
|
|
return (this.selected === 'activity');
|
|
}
|
|
|
|
get shouldDisplay() {
|
|
if (this.feature.improvedOnboarding) {
|
|
return true;
|
|
}
|
|
|
|
const isOwner = this.session.user?.isOwnerOnly;
|
|
const hasCompletedLaunchWizard = this.settings.get('editorIsLaunchComplete');
|
|
|
|
if (isOwner && !hasCompletedLaunchWizard) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|