* Display who has viewed a document in the header * Add overflow, display of WHEN last viewed Cleanup old document attributes Add firstViewedAt, lastViewedAt to API response * Cleanup * Added: API documentation for views endpoints * Include views for deleted users
66 lines
1.7 KiB
JavaScript
66 lines
1.7 KiB
JavaScript
// @flow
|
|
import { takeRight } from 'lodash';
|
|
import { User, Document } from '../models';
|
|
import presentUser from './user';
|
|
import presentCollection from './collection';
|
|
|
|
type Options = {
|
|
isPublic?: boolean,
|
|
};
|
|
|
|
async function present(ctx: Object, document: Document, options: ?Options) {
|
|
options = {
|
|
isPublic: false,
|
|
...options,
|
|
};
|
|
ctx.cache.set(document.id, document);
|
|
|
|
// For empty document content, return the title
|
|
if (!document.text.trim()) {
|
|
document.text = `# ${document.title}`;
|
|
}
|
|
|
|
const data = {
|
|
id: document.id,
|
|
url: document.url,
|
|
urlId: document.urlId,
|
|
title: document.title,
|
|
text: document.text,
|
|
emoji: document.emoji,
|
|
createdAt: document.createdAt,
|
|
createdBy: undefined,
|
|
updatedAt: document.updatedAt,
|
|
updatedBy: undefined,
|
|
publishedAt: document.publishedAt,
|
|
team: document.teamId,
|
|
collaborators: [],
|
|
starred: !!(document.starred && document.starred.length),
|
|
revision: document.revisionCount,
|
|
pinned: undefined,
|
|
collectionId: undefined,
|
|
collection: undefined,
|
|
};
|
|
|
|
if (!options.isPublic) {
|
|
data.pinned = !!document.pinnedById;
|
|
data.collectionId = document.collectionId;
|
|
data.createdBy = presentUser(ctx, document.createdBy);
|
|
data.updatedBy = presentUser(ctx, document.updatedBy);
|
|
|
|
if (document.collection) {
|
|
data.collection = await presentCollection(ctx, document.collection);
|
|
}
|
|
|
|
// This could be further optimized by using ctx.cache
|
|
data.collaborators = await User.findAll({
|
|
where: {
|
|
id: takeRight(document.collaboratorIds, 10) || [],
|
|
},
|
|
}).map(user => presentUser(ctx, user));
|
|
}
|
|
|
|
return data;
|
|
}
|
|
|
|
export default present;
|