I'm creating a drill-down menu for a tech support contact form. I've therefore created a large JSON object that holds the content of this drill-down menu in the correct hierarchical order. I'm wondering if there is a better or easier way to create this. The first 2/3 of the code below just create pieces of the final object so that I can reuse them easily in the creation of that final object. The final 1/3 of the code is where the actual drillDownOptions object that holds the correct hierarchical data is created.

FYI, the various keys do the following: title: The text of the option the user can select category: The text that will be shown to the user for categorizing the various options the user currently sees. content: The next set of drill-down options the user will be presented with should they click on the option in question.

var drillDown = {};
drillDown.apps = [
    {title:'Fluenz DVD Software'},
    {title:'Fluenz Flashcards'},
    {title:'Fluenz Commons'},
    {title:'Other'}
];
drillDown.windows = [
    {title:'Windows 7'},
    {title:'Windows Vista'},
    {title:'Windows XP'}
];
drillDown.mac = [
    {title:'Mac OS X - Lion'},
    {title:'Mac OS X - Snow Leopard'},
    {title:'Mac OS X - Leopard'}
];
drillDown.OS = drillDown.windows.concat(drillDown.mac);
drillDown.dvdVersion = [
    {title:'My DVD says version f<sup class="f2">2.5</sup> on it.', category:'Operating system', content:drillDown.OS},
    {title:'My DVD says version f<sup class="f2">2.7</sup> on it.', category:'Operating system', content:drillDown.OS},
    {title:'Neither of the above.', category:'Operating system', content:drillDown.OS}
];
drillDown.level1 = {title:'Level 1', category:'DVD Version', content:drillDown.dvdVersion};
drillDown.level2 = {title:'Level 2', category:'DVD Version', content:drillDown.dvdVersion};
drillDown.level3 = {title:'Level 3', category:'DVD Version', content:drillDown.dvdVersion};
drillDown.level4 = {title:'Level 4', category:'DVD Version', content:drillDown.dvdVersion};
drillDown.level5 = {title:'Level 5', category:'DVD Version', content:drillDown.dvdVersion};
drillDown.level12 = {title:'Level 1+2', category:'DVD Version', content:drillDown.dvdVersion};
drillDown.levels15 = [drillDown.level1, drillDown.level2, drillDown.level3, drillDown.level4, drillDown.level5];
drillDown.levels13 = [drillDown.level1, drillDown.level2, drillDown.level3];
drillDown.levels123 = [drillDown.level12, drillDown.level3];
drillDown.browsers = [
    {title:'Internet Explorer 9', category:'Operating System', content:drillDown.windows},
    {title:'Internet Explorer 8', category:'Operating System', content:drillDown.windows},
    {title:'Safari', category:'Operating System', content:drillDown.OS},
    {title:'Firefox', category:'Operating System', content:drillDown.OS},
    {title:'Chrome', category:'Operating System', content:drillDown.OS},
    {title:'Other', category:'Operating System', content:drillDown.OS}
];

//******* CREATE THE ACTUAL CONTENT OBJECT *********
var drillDownOptions = {
    content: [
            {title:'Feature Request', category:'App', content:drillDown.apps},
            {title:'Tech Issue', category:'App', content:[
                {title:'Fluenz DVD Software', category:'Language', content:[
                    {title:'Algebra', category:'Level', content:drillDown.levels15},
                    {title:'Geometry', category:'Level', content:drillDown.levels15},
                    {title:'Precalculus', category:'Level', content:drillDown.levels13},
                    {title:'Calculus I', category:'Level', content:drillDown.levels13},
                    {title:'Calculus II', category:'Level', content:drillDown.levels123}
                ]},
                {title:'Fluenz Flashcards', category:'Browser', content:drillDown.browsers},
                {title:'Fluenz Commons', category:'Browser', content:drillDown.browsers},
                {title:'Other'}
            ]},
            {title:'Other Feedback', category:'App', content:drillDown.apps}
    ],
    levels:7
};
link|improve this question

I would write an offline tool that emits this structure in its final form. – akonsu Feb 9 at 16:00
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.