I am creating a brainstorming program (see attachment). A user starts with a main idea (middle dot) and can add new ideas and then sub-ideas to the chart. The user often will add them in no particular order, but when they are done I need to have a list that looks like this:
Main idea
+Idea
—Sub Idea
===Sub Sub Idea
—Sub Idea
+Idea
+Idea
–Sub Idea
I currently have an array that has two keys ‘ID’ and ‘parent’.
I am confused as to how I can sort this array so that it traces similar to my above formatting.
using sortOn(parent) disregards the children, so I’m thinking I need to add some sort of check but I’m lost.