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