import { Component } from 'inferno'; import { CommentNode as CommentNodeI } from '../interfaces'; import { CommunityModeratorView, UserViewSafe } from 'lemmy-js-client'; import { CommentNode } from './comment-node'; interface CommentNodesProps { nodes: CommentNodeI[]; moderators?: CommunityModeratorView[]; admins?: UserViewSafe[]; postCreatorId?: number; noBorder?: boolean; noIndent?: boolean; viewOnly?: boolean; locked?: boolean; markable?: boolean; showContext?: boolean; showCommunity?: boolean; enableDownvotes: boolean; } export class CommentNodes extends Component< CommentNodesProps, any > { constructor(props: any, context: any) { super(props, context); } render() { return (
{this.props.nodes.map(node => ( ))}
); } }