449dc55aaa
* chore: Upgrade Prettier 1.8 -> 2.0 * chore: Upgrade Babel 6 -> 7 * chore: Upgrade eslint plugins * chore: Add eslint import/order rules * chore: Update flow-typed deps
36 lines
904 B
JavaScript
36 lines
904 B
JavaScript
// @flow
|
|
import { reduce, filter, find, orderBy } from "lodash";
|
|
import View from "models/View";
|
|
import BaseStore from "./BaseStore";
|
|
import RootStore from "./RootStore";
|
|
|
|
export default class ViewsStore extends BaseStore<View> {
|
|
actions = ["list", "create"];
|
|
|
|
constructor(rootStore: RootStore) {
|
|
super(rootStore, View);
|
|
}
|
|
|
|
inDocument(documentId: string): View[] {
|
|
return orderBy(
|
|
filter(this.orderedData, (view) => view.documentId === documentId),
|
|
"lastViewedAt",
|
|
"desc"
|
|
);
|
|
}
|
|
|
|
countForDocument(documentId: string): number {
|
|
const views = this.inDocument(documentId);
|
|
return reduce(views, (memo, view) => memo + view.count, 0);
|
|
}
|
|
|
|
touch(documentId: string, userId: string) {
|
|
const view = find(
|
|
this.orderedData,
|
|
(view) => view.documentId === documentId && view.user.id === userId
|
|
);
|
|
if (!view) return;
|
|
view.touch();
|
|
}
|
|
}
|