Ghost/ghost/admin/app/components/dashboard/resources/whats-new.js
Simon Backx 8502ebb96a Moving over the new Dashboard to replace the old (#2389)
refs: https://github.com/TryGhost/Team/issues/1631

Co-authored-by: James Morris <moreofmorris@users.noreply.github.com>
2022-05-17 09:34:34 +02:00

25 lines
653 B
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 WhatsNew extends Component {
@service whatsNew;
@tracked entries = null;
@tracked loading = null;
@tracked error = null;
@action
load() {
this.loading = true;
this.whatsNew.fetchLatest.perform().then(() => {
this.loading = false;
this.entries = this.whatsNew.entries.slice(0, 3);
}, (error) => {
this.error = error;
this.loading = false;
});
}
}