mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-15 22:26:53 +03:00
b82de74592
* Use rollup for d3tooltip * Use rollup for map2tree * Set moduleResolution * Use rollup for d3-state-visualizer * Use rollup for react-base16-styling * Use rollup for react-dock * Use rollup for react-json-tree * Use rollup for redux-devtools * Use rollup for redux-devtools-intrument * Use rollup for redux-devtools-chart-monitor * Update export * Use rollup for redux-devtools-dock-monitor * Use rollup for redux-devtools-inspector-monitor * Fix inspector demo * Fix invalid eslint config * Use rollup for inspector-monitor-test-tab * Use rollup for inspector-monitor-trace-tab * Use rollup for redux-devtools-log-monitor * Use rollup for redux-devtools-remote * Use rollup in redux-devtools-rtk-query-monitor * Use rollup for redux-devtools-serialize * Fix redux-devtools examples * Use rollup for redux-devtools-slider-monitor * Fix slider examples * Use rollup for redux-devtools-ui * Use rollup for redux-devtools-utils * Use rollup for redux-devtools-extension * Use rollup for redux-devtools-app * Fix Webpack app build * Fix extension build * Turn on minimization * Update CLI
234 lines
4.6 KiB
TypeScript
234 lines
4.6 KiB
TypeScript
import { map2tree, Node } from '../src';
|
|
import * as immutable from 'immutable';
|
|
|
|
test('# rootNodeKey', () => {
|
|
const map = {};
|
|
const options = { key: 'foo' };
|
|
|
|
expect((map2tree(map, options) as Node).name).toBe('foo');
|
|
});
|
|
|
|
describe('# shallow map', () => {
|
|
test('## null', () => {
|
|
const map = {
|
|
a: null,
|
|
};
|
|
|
|
const expected = {
|
|
name: 'state',
|
|
children: [{ name: 'a', value: null }],
|
|
};
|
|
|
|
expect(map2tree(map)).toEqual(expected);
|
|
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
|
|
});
|
|
|
|
test('## value', () => {
|
|
const map = {
|
|
a: 'foo',
|
|
b: 'bar',
|
|
};
|
|
|
|
const expected = {
|
|
name: 'state',
|
|
children: [
|
|
{ name: 'a', value: 'foo' },
|
|
{ name: 'b', value: 'bar' },
|
|
],
|
|
};
|
|
|
|
expect(map2tree(map)).toEqual(expected);
|
|
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
|
|
});
|
|
|
|
test('## object', () => {
|
|
const map = {
|
|
a: { aa: 'foo' },
|
|
};
|
|
|
|
const expected = {
|
|
name: 'state',
|
|
children: [{ name: 'a', children: [{ name: 'aa', value: 'foo' }] }],
|
|
};
|
|
|
|
expect(map2tree(map)).toEqual(expected);
|
|
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
|
|
});
|
|
|
|
test('## immutable Map', () => {
|
|
const map = {
|
|
a: immutable.fromJS({ aa: 'foo', ab: 'bar' }),
|
|
};
|
|
|
|
const expected = {
|
|
name: 'state',
|
|
children: [
|
|
{
|
|
name: 'a',
|
|
children: [
|
|
{ name: 'aa', value: 'foo' },
|
|
{ name: 'ab', value: 'bar' },
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
expect(map2tree(map)).toEqual(expected);
|
|
});
|
|
});
|
|
|
|
describe('# deep map', () => {
|
|
test('## null', () => {
|
|
const map = {
|
|
a: { aa: null },
|
|
};
|
|
|
|
const expected = {
|
|
name: 'state',
|
|
children: [
|
|
{
|
|
name: 'a',
|
|
children: [
|
|
{
|
|
name: 'aa',
|
|
value: null,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
expect(map2tree(map)).toEqual(expected);
|
|
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
|
|
});
|
|
|
|
test('## object', () => {
|
|
const map = {
|
|
a: { aa: { aaa: 'foo' } },
|
|
};
|
|
|
|
const expected = {
|
|
name: 'state',
|
|
children: [
|
|
{
|
|
name: 'a',
|
|
children: [
|
|
{
|
|
name: 'aa',
|
|
children: [{ name: 'aaa', value: 'foo' }],
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
expect(map2tree(map)).toEqual(expected);
|
|
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
|
|
});
|
|
});
|
|
|
|
describe('# array map', () => {
|
|
const map = {
|
|
a: [1, 2],
|
|
};
|
|
|
|
test('## push', () => {
|
|
const expected = {
|
|
name: 'state',
|
|
children: [
|
|
{
|
|
name: 'a',
|
|
children: [
|
|
{ name: 'a[0]', value: 1 },
|
|
{ name: 'a[1]', value: 2 },
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
expect(map2tree(map)).toEqual(expected);
|
|
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
|
|
});
|
|
|
|
test('## unshift', () => {
|
|
const options = { pushMethod: 'unshift' as const };
|
|
const expected = {
|
|
name: 'state',
|
|
children: [
|
|
{
|
|
name: 'a',
|
|
children: [
|
|
{ name: 'a[1]', value: 2 },
|
|
{ name: 'a[0]', value: 1 },
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
expect(map2tree(map, options)).toEqual(expected);
|
|
expect(map2tree(immutable.fromJS(map), options)).toEqual(expected);
|
|
});
|
|
|
|
test('## null', () => {
|
|
const map = {
|
|
a: [null],
|
|
};
|
|
|
|
const expected = {
|
|
name: 'state',
|
|
children: [
|
|
{
|
|
name: 'a',
|
|
children: [{ name: 'a[0]', value: null }],
|
|
},
|
|
],
|
|
};
|
|
|
|
expect(map2tree(map)).toEqual(expected);
|
|
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
|
|
});
|
|
});
|
|
|
|
describe('# collection map', () => {
|
|
test('## value', () => {
|
|
const map = {
|
|
a: [{ aa: 1 }, { aa: 2 }],
|
|
};
|
|
|
|
const expected = {
|
|
name: 'state',
|
|
children: [
|
|
{
|
|
name: 'a',
|
|
children: [
|
|
{ name: 'a[0]', object: { aa: 1 } },
|
|
{ name: 'a[1]', object: { aa: 2 } },
|
|
],
|
|
},
|
|
],
|
|
};
|
|
|
|
expect(map2tree(map)).toEqual(expected);
|
|
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
|
|
});
|
|
|
|
test('## object', () => {
|
|
const map = {
|
|
a: [{ aa: { aaa: 'foo' } }],
|
|
};
|
|
|
|
const expected = {
|
|
name: 'state',
|
|
children: [
|
|
{
|
|
name: 'a',
|
|
children: [{ name: 'a[0]', object: { aa: { aaa: 'foo' } } }],
|
|
},
|
|
],
|
|
};
|
|
|
|
expect(map2tree(map)).toEqual(expected);
|
|
expect(map2tree(immutable.fromJS(map))).toEqual(expected);
|
|
});
|
|
});
|