17 lines
466 B
TypeScript
17 lines
466 B
TypeScript
import { Comment } from '@app/common/types';
|
|
import { StaticStore } from '@app/common/static_store';
|
|
|
|
import { StoreState } from '../index';
|
|
|
|
export const getThreadIsCollapsed = (comment: Comment) => (state: StoreState): boolean => {
|
|
const collapsed = state.collapsedThreads[comment.id];
|
|
|
|
if (collapsed !== null && collapsed !== undefined) {
|
|
return collapsed;
|
|
}
|
|
|
|
const score = comment.score || 0;
|
|
|
|
return score <= StaticStore.config.critical_score;
|
|
};
|