. // }}} namespace Plugin\TreeNotes; use App\Core\Modules\Plugin; use App\Entity\Note; use Plugin\Reply\Entity\NoteReply; class TreeNotes extends Plugin { /** * Format the given $notes_in_trees_out in a list of reply trees */ public function onFormatNoteList(array $notes_in, ?array &$notes_out) { $roots = array_filter($notes_in, fn (Note $note) => NoteReply::getReplyToNote($note) == null); $notes_out = $this->build_tree($roots, $notes_in); } private function build_tree(array $parents, array $notes) { $subtree = []; foreach ($parents as $p) { $subtree[] = $this->build_subtree($p, $notes); } return $subtree; } private function build_subtree(Note $parent, array $notes) { $children = array_filter($notes, fn (Note $note) => $parent->getId() == NoteReply::getReplyToNote($note)); return ['note' => $parent, 'replies' => $this->build_tree($children, $notes)]; } }