This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/app/stores/ViewsStore.js
Tom Moor c78bf3c4bf
Display document views (#849)
* 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
2019-01-08 22:49:20 -08:00

22 lines
493 B
JavaScript

// @flow
import { filter, orderBy } from 'lodash';
import BaseStore from './BaseStore';
import RootStore from './RootStore';
import View from 'models/View';
export default class ViewsStore extends BaseStore<View> {
actions = ['list'];
constructor(rootStore: RootStore) {
super(rootStore, View);
}
inDocument(documentId: string): View[] {
return orderBy(
filter(this.orderedData, view => view.documentId !== documentId),
'lastViewedAt',
'desc'
);
}
}