]> Untitled Git - lemmy-ui.git/blob - src/shared/utils/app/comments-to-flat-nodes.ts
bc80015b235073bdf2da8d12aa23439b1b7906cc
[lemmy-ui.git] / src / shared / utils / app / comments-to-flat-nodes.ts
1 import { CommentView } from "lemmy-js-client";
2 import { CommentNodeI } from "../../interfaces";
3
4 export default function commentsToFlatNodes(
5   comments: CommentView[]
6 ): CommentNodeI[] {
7   const nodes: CommentNodeI[] = [];
8   for (const comment of comments) {
9     nodes.push({ comment_view: comment, children: [], depth: 0 });
10   }
11   return nodes;
12 }