c614a652cb
Closes #2423 - Created the apps route to fetch apps from server - Created controller for a single app - Modified the template of the apps page to use this controller - Created the Apps model - Created AppAdapter to use the FixtureAdapter for Ember Data
69 lines
2.2 KiB
JavaScript
69 lines
2.2 KiB
JavaScript
import postFixtures from 'ghost/fixtures/posts';
|
|
import userFixtures from 'ghost/fixtures/users';
|
|
import settingsFixtures from 'ghost/fixtures/settings';
|
|
import appFixtures from 'ghost/fixtures/apps';
|
|
|
|
var response = function (responseBody, status) {
|
|
status = status || 200;
|
|
var textStatus = (status === 200) ? 'success' : 'error';
|
|
|
|
return {
|
|
response: responseBody,
|
|
jqXHR: { status: status },
|
|
textStatus: textStatus
|
|
};
|
|
};
|
|
|
|
var user = function (status) {
|
|
return response(userFixtures.findBy('id', 1), status);
|
|
};
|
|
|
|
var post = function (id, status) {
|
|
return response(postFixtures.findBy('id', id), status);
|
|
};
|
|
|
|
var posts = function (status) {
|
|
return response({
|
|
'posts': postFixtures,
|
|
'page': 1,
|
|
'limit': 15,
|
|
'pages': 1,
|
|
'total': 2
|
|
}, status);
|
|
};
|
|
|
|
var settings = function (status) {
|
|
return response(settingsFixtures, status);
|
|
};
|
|
|
|
var apps = function (status) {
|
|
return response(appFixtures, status);
|
|
};
|
|
|
|
var defineFixtures = function (status) {
|
|
ic.ajax.defineFixture('/ghost/api/v0.1/posts', posts(status));
|
|
ic.ajax.defineFixture('/ghost/api/v0.1/posts/1', post(1, status));
|
|
ic.ajax.defineFixture('/ghost/api/v0.1/posts/2', post(2, status));
|
|
ic.ajax.defineFixture('/ghost/api/v0.1/posts/3', post(3, status));
|
|
ic.ajax.defineFixture('/ghost/api/v0.1/posts/4', post(4, status));
|
|
ic.ajax.defineFixture('/ghost/api/v0.1/slugs/post/test%20title/', response('generated-slug', status));
|
|
|
|
ic.ajax.defineFixture('/ghost/api/v0.1/users/me/', user(status));
|
|
ic.ajax.defineFixture('/ghost/changepw/', response({
|
|
msg: 'Password changed successfully'
|
|
}));
|
|
ic.ajax.defineFixture('/ghost/api/v0.1/forgotten/', response({
|
|
redirect: '/ghost/signin/'
|
|
}));
|
|
ic.ajax.defineFixture('/ghost/api/v0.1/reset/', response({
|
|
msg: 'Password changed successfully'
|
|
}));
|
|
ic.ajax.defineFixture('/ghost/api/v0.1/settings/?type=blog,theme,app', settings(status));
|
|
ic.ajax.defineFixture('/ghost/api/v0.1/apps', apps(status));
|
|
ic.ajax.defineFixture('/ghost/api/v0.1/apps/1', response({
|
|
response: 'success'
|
|
}));
|
|
};
|
|
|
|
export default defineFixtures;
|