* Migrates from Mongo to Postgres. * Migrates from JSPM to Webpack. * Migrates from React to Vuejs. * Migrates from Bootstrap to Bulma. Also: * Fixes rendering of meta data in the document head tag.
23 lines
547 B
JavaScript
23 lines
547 B
JavaScript
import models from '../models';
|
|
|
|
const recentQuery = {
|
|
include: [
|
|
{ model: models.artist },
|
|
{ model: models.match },
|
|
],
|
|
limit: 6,
|
|
order: [
|
|
['updatedAt', 'DESC'],
|
|
],
|
|
};
|
|
|
|
export default function* () {
|
|
const recentAlbums = yield models.album.findAll(recentQuery);
|
|
const recentTracks = yield models.track.findAll(recentQuery);
|
|
|
|
this.body = {
|
|
recents: recentAlbums.map(album => album.toJSON())
|
|
.concat(recentTracks.map(track => track.toJSON()))
|
|
.sort((a, b) => a.createdAt < b.createdAt).slice(0, 6),
|
|
};
|
|
}
|