Ghost/ghost/admin/app/components/dashboard/resources/explore-feed.js
Aileen Nowak beaf7464c6 Replaced Staff Picks with Explore feed
no issue

- Deleted staff picks
- Added Explore Feed Dashboard resource
- Added styles and svgs
- Moved "What's New" resource into a split box with community box
2022-09-06 13:46:38 +00:00

39 lines
1010 B
JavaScript

import Component from '@glimmer/component';
import fetch from 'fetch';
import {action} from '@ember/object';
import {task} from 'ember-concurrency';
import {tracked} from '@glimmer/tracking';
const API_URL = 'https://ghost.org';
export default class ExploreFeed extends Component {
@tracked loading = null;
@tracked error = null;
@tracked sites = null;
@action
load() {
this.loading = true;
this.fetch.perform().then(() => {
this.loading = false;
}).catch((error) => {
this.error = error;
this.loading = false;
});
}
@task
*fetch() {
const response = yield fetch(`${API_URL}/explore/api/feed/`);
if (!response.ok) {
// eslint-disable-next-line
console.error('Failed to fetch sites', {response});
this.error = 'Failed to fetch';
return;
}
const result = yield response.json();
this.sites = result.sites || [];
}
}