-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathPostSelectors.js
37 lines (31 loc) · 1.14 KB
/
PostSelectors.js
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
import { createSelector } from 'reselect';
export const commentFormValuesSelector = state =>
state.form.addCommentForm && state.form.addCommentForm.values;
export const authorNameSelector = createSelector(
commentFormValuesSelector,
values => {
return values && values.authorName ? values.authorName : '';
}
);
export const commentSelector = createSelector(
commentFormValuesSelector,
values => {
return values && values.comment ? values.comment : '';
}
);
export const isCommentFormVisibleSelector = state => {
// render on server error ".addCommentForm is undefined"
return !!state.posts.addCommentForm && state.posts.addCommentForm.isVisible;
};
export const isCommentFormVisiblePostIdSelector = (state, props) => {
// render on server error ".addCommentForm is undefined"
return !!state.posts.addCommentForm
&&
props.post._id === state.posts.addCommentForm.postId;
};
export const isVommentFormVisibleInPostSelector = createSelector(
isCommentFormVisibleSelector,
isCommentFormVisiblePostIdSelector,
(isCommentFormVisible, isCommentFormVisiblePostId) =>
isCommentFormVisible && isCommentFormVisiblePostId
);