mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-01 02:00:01 +00:00
42 lines
1,019 B
TypeScript
42 lines
1,019 B
TypeScript
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>
|
|
)
|
|
}
|
|
|
|
}
|
|
|