blob: ff6a83f15c01bec1bef4972e9562cc2c9deb5491 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
import { HookContext } from '@feathersjs/feathers';
import bluebird from 'bluebird';
import _ from 'lodash';
import { PollSchema } from '../../models/polls/poll.schema';
import { UserSchema } from '../../models/users/user.schema';
import UserModel from '../../models/users/user.model';
interface Poll extends Omit<PollSchema, 'authorId'> {
author: UserSchema;
}
const expandAuthor = async (poll: PollSchema): Promise<Poll | null> => {
return UserModel.findById(poll.authorId).then((author: UserSchema | null): Poll | null => {
if (author) return _.merge(_.omit(poll, 'authorId'), { author });
return null;
});
};
const expandAuthorHook = async (context: HookContext): Promise<HookContext> => {
context.result = await expandAuthor(context.result);
return context;
};
const expandAuthorManyHook = async (context: HookContext): Promise<HookContext> => {
context.result = await bluebird.map(context.result, (poll: any) => expandAuthor(poll));
console.log(context.result);
return context;
};
export default {
after: {
get: [expandAuthorHook],
find: [expandAuthorManyHook]
}
}
|