redux-devtools/packages/map2tree
renovate[bot] 34ffeb60b4
fix(deps): update all non-major dependencies (#967)
* fix(deps): update all non-major dependencies

* Changes

* Downgrade msw for now

* Move into own group

* Ignore no-unused-vars

* Disable both

* Just the one

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Nathan Bierema <nbierema@gmail.com>
2021-12-04 19:04:59 +00:00
..
src chore(deps): update all non-major dependencies (#758) 2021-08-26 09:52:23 -04:00
test feat(d3-state-visualizer): convert to TypeScript (#640) 2020-09-20 19:05:37 -04:00
.babelrc chore(*): clean up babel configs (#816) 2021-08-29 23:25:48 +00:00
.eslintignore feat(map2tree): convert to TypeScript (#638) 2020-09-19 19:56:40 -04:00
.eslintrc.js chore(*): move devDependencies back to packages (#870) 2021-09-18 23:47:03 +00:00
CHANGELOG.md chore(*): run prettier 2021-03-06 10:17:55 -05:00
jest.config.js feat(map2tree): convert to TypeScript (#638) 2020-09-19 19:56:40 -04:00
LICENSE.md Merge map2tree package (#426) 2018-12-19 16:50:39 +02:00
package.json fix(deps): update all non-major dependencies (#967) 2021-12-04 19:04:59 +00:00
README.md chore(*): make more packages scoped (#692) 2020-12-21 15:46:28 -05:00
tsconfig.json feat(map2tree): convert to TypeScript (#638) 2020-09-19 19:56:40 -04:00
tsconfig.webpack.json feat(map2tree): convert to TypeScript (#638) 2020-09-19 19:56:40 -04:00
webpack.config.umd.ts feat(d3-state-visualizer): convert to TypeScript (#640) 2020-09-20 19:05:37 -04:00

A pure function to convert a map into a tree structure. Created by @romseguy and merged from romseguy/map2tree.

The following opinions must be taken into account since the primary use case of this library is redux-devtools-chart-monitor:

  • Objects and arrays deeply nested within collections are not converted into a tree structure. See someNestedObject and someNestedArray in the output below, or the corresponding test.
  • Provides support for Immutable.js data structures (only List and Map though).

Usage

map2tree(
  someMap,
  (options = {
    key: 'state', // the name you want for as the root node of the output tree
    pushMethod: 'push', // use 'unshift' to change the order children nodes are added
  })
);

Input

const someMap = {
  someReducer: {
    todos: [
      { title: 'map', someNestedObject: { foo: 'bar' } },
      { title: 'to', someNestedArray: ['foo', 'bar'] },
      { title: 'tree' },
      { title: 'map2tree' },
    ],
    completedCount: 1,
  },
  otherReducer: {
    foo: 0,
    bar: { key: 'value' },
  },
};

Output

{
  name: `${options.key}`,
  children: [
    {
      name: 'someReducer',
      children: [
        {
          name: 'todos',
          children: [
            {
              name: 'todo[0]',
              object: {
                title: 'map',
                someNestedObject: {foo: 'bar'}
              }
            },
            {
              name: 'todo[1]',
              object: {
                title: 'to',
                someNestedArray: ['foo', 'bar']
              }
            },
            // ...
          ]
        },
        // ...
      ]
    },
    {
      name: 'otherReducer',
      children: [
        {
          name: 'foo',
          value: 0
        },
        {
          name: 'bar',
          object: {
            key: 'value'
          }
        }
      ]
    }
  ]
}