Group array of object nesting some of the keys with specific names

前端 未结 2 1950
北海茫月
北海茫月 2020-11-22 03:32

I have this array of objects, that I need to modify to make it easier the rendering.

const items = [
  {
    tab: \'Results\',
    section: \'2017\',
    ti         


        
2条回答
  •  情深已故
    2020-11-22 03:53

    You could use an object without additional libraries.

    The object contains a property _ which keeps the nested arrays of the given nested group.

    var items = [{ tab: 'Results', section: '2017', title: 'Full year Results', description: 'Something here' }, { tab: 'Results', section: '2017', title: 'Half year Results', description: 'Something here' }, { tab: 'Reports', section: 'Marketing', title: 'First Report', description: 'Something here' }],
        keys = { tab: 'sections', section: 'items' }, // or more if required
        result = [],
        temp = { _: result };
    
    items.forEach(function (object) {
        Object.keys(keys).reduce(function (level, key) {
            if (!level[object[key]]) {
                level[object[key]] = { _: [] };
                level._.push({ [key]: object[key], [keys[key]]: level[object[key]]._ });
            }
            return level[object[key]];
        }, temp)._.push({ title: object.title, description: object.description });
    });
    
    console.log(result);
    .as-console-wrapper { max-height: 100% !important; top: 0; }

提交回复
热议问题