mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
8502ebb96a
refs: https://github.com/TryGhost/Team/issues/1631 Co-authored-by: James Morris <moreofmorris@users.noreply.github.com>
77 lines
2.3 KiB
JavaScript
77 lines
2.3 KiB
JavaScript
import Component from '@glimmer/component';
|
|
import fetch from 'fetch';
|
|
import {action} from '@ember/object';
|
|
import {inject as service} from '@ember/service';
|
|
import {task} from 'ember-concurrency';
|
|
import {tracked} from '@glimmer/tracking';
|
|
|
|
const API_URL = 'https://resources.ghost.io/resources';
|
|
const API_KEY = 'b30afc1721f5d8d021ec3450ef';
|
|
const RESOURCE_COUNT = 1;
|
|
|
|
export default class Resources extends Component {
|
|
@service dashboardStats;
|
|
@tracked loading = null;
|
|
@tracked error = null;
|
|
@tracked resources = null;
|
|
@tracked resource = null;
|
|
|
|
@action
|
|
load() {
|
|
this.loading = true;
|
|
this.fetch.perform().then(() => {
|
|
this.loading = false;
|
|
}).catch((error) => {
|
|
this.error = error;
|
|
this.loading = false;
|
|
});
|
|
}
|
|
|
|
get tag() {
|
|
// Depending on the state of the site, we might want to show resources from different tags.
|
|
if (this.areMembersEnabled && this.hasPaidTiers) {
|
|
return 'business';
|
|
}
|
|
|
|
if (this.areMembersEnabled) {
|
|
return 'growth';
|
|
}
|
|
return 'building';
|
|
}
|
|
|
|
@task
|
|
*fetch() {
|
|
const order = encodeURIComponent('published_at DESC');
|
|
const key = encodeURIComponent(API_KEY);
|
|
const limit = encodeURIComponent(RESOURCE_COUNT);
|
|
const filter = encodeURIComponent('tag:' + this.tag);
|
|
let response = yield fetch(`${API_URL}/ghost/api/content/posts/?limit=${limit}&order=${order}&key=${key}&include=none&filter=${filter}`);
|
|
if (!response.ok) {
|
|
// eslint-disable-next-line
|
|
console.error('Failed to fetch resources', {response});
|
|
this.error = 'Failed to fetch';
|
|
return;
|
|
}
|
|
|
|
let result = yield response.json();
|
|
this.resources = result.posts || [];
|
|
this.resource = this.resources[0]; // just get the first
|
|
}
|
|
|
|
get hasPaidTiers() {
|
|
return this.dashboardStats.siteStatus?.hasPaidTiers;
|
|
}
|
|
|
|
get areNewslettersEnabled() {
|
|
return this.dashboardStats.siteStatus?.newslettersEnabled;
|
|
}
|
|
|
|
get areMembersEnabled() {
|
|
return this.dashboardStats.siteStatus?.membersEnabled;
|
|
}
|
|
|
|
get hasNothingEnabled() {
|
|
return (!this.areMembersEnabled && !this.areNewslettersEnabled && !this.hasPaidTiers);
|
|
}
|
|
}
|