summaryrefslogtreecommitdiffstats
path: root/ui/src/components/comment-nodes.tsx
blob: da67bbc7f395e1bb64d3e6132b070f085ad41dde (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
39
40
41
42
import { Component } from 'inferno';
import { CommentNode as CommentNodeI, CommunityUser, UserView } from '../interfaces';
import { CommentNode } from './comment-node';

interface CommentNodesState {
}

interface CommentNodesProps {
  nodes: Array<CommentNodeI>;
  moderators?: Array<CommunityUser>;
  admins?: Array<UserView>;
  noIndent?: boolean;
  viewOnly?: boolean;
  locked?: boolean;
  markable?: boolean;
}

export class CommentNodes extends Component<CommentNodesProps, CommentNodesState> {

  constructor(props: any, context: any) {
    super(props, context);
  }

  render() {
    return (
      <div className="comments">
        {this.props.nodes.map(node =>
          <CommentNode node={node} 
            noIndent={this.props.noIndent} 
            viewOnly={this.props.viewOnly} 
            locked={this.props.locked} 
            moderators={this.props.moderators}
            admins={this.props.admins}
            markable={this.props.markable}
            />
        )}
      </div>
    )
  }

}