mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-02 02:29:59 +00:00
c5fd084577
* Using auto-generated types from ts-rs. - Fixes #998 - Added support for new `GetFederatedInstances` - Fixed a few bugs in the process. * Update imports to use SleeplessOne1917's fix.
58 lines
1.8 KiB
TypeScript
58 lines
1.8 KiB
TypeScript
import { Component } from "inferno";
|
|
import { CommunityModeratorView, Language, PersonView } from "lemmy-js-client";
|
|
import { CommentNodeI, CommentViewType } from "../../interfaces";
|
|
import { CommentNode } from "./comment-node";
|
|
|
|
interface CommentNodesProps {
|
|
nodes: CommentNodeI[];
|
|
moderators?: CommunityModeratorView[];
|
|
admins?: PersonView[];
|
|
maxCommentsShown?: number;
|
|
noBorder?: boolean;
|
|
noIndent?: boolean;
|
|
viewOnly?: boolean;
|
|
locked?: boolean;
|
|
markable?: boolean;
|
|
showContext?: boolean;
|
|
showCommunity?: boolean;
|
|
enableDownvotes?: boolean;
|
|
viewType: CommentViewType;
|
|
allLanguages: Language[];
|
|
siteLanguages: number[];
|
|
hideImages?: boolean;
|
|
}
|
|
|
|
export class CommentNodes extends Component<CommentNodesProps, any> {
|
|
constructor(props: CommentNodesProps, context: any) {
|
|
super(props, context);
|
|
}
|
|
|
|
render() {
|
|
let maxComments = this.props.maxCommentsShown ?? this.props.nodes.length;
|
|
|
|
return (
|
|
<div className="comments">
|
|
{this.props.nodes.slice(0, maxComments).map(node => (
|
|
<CommentNode
|
|
key={node.comment_view.comment.id}
|
|
node={node}
|
|
noBorder={this.props.noBorder}
|
|
noIndent={this.props.noIndent}
|
|
viewOnly={this.props.viewOnly}
|
|
locked={this.props.locked}
|
|
moderators={this.props.moderators}
|
|
admins={this.props.admins}
|
|
markable={this.props.markable}
|
|
showContext={this.props.showContext}
|
|
showCommunity={this.props.showCommunity}
|
|
enableDownvotes={this.props.enableDownvotes}
|
|
viewType={this.props.viewType}
|
|
allLanguages={this.props.allLanguages}
|
|
siteLanguages={this.props.siteLanguages}
|
|
hideImages={this.props.hideImages}
|
|
/>
|
|
))}
|
|
</div>
|
|
);
|
|
}
|
|
}
|