123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311 |
- import * as _ from 'lodash';
- import { LayoutTreeParser } from './LayoutTreeParser';
- import { LayoutType } from './LayoutType';
- import { Layout } from '../interfaces/Layout';
- import { OptionsSplitView } from '../interfaces/Options';
- import { UniqueIdProvider } from '../adapters/UniqueIdProvider';
- import { mock, instance, when, anything } from 'ts-mockito';
-
- describe('LayoutTreeParser', () => {
- let uut: LayoutTreeParser;
- let mockedUniqueIdProvider: UniqueIdProvider;
-
- beforeEach(() => {
- mockedUniqueIdProvider = mock(UniqueIdProvider);
- when(mockedUniqueIdProvider.generate(anything())).thenReturn('myUniqueId');
- uut = new LayoutTreeParser(instance(mockedUniqueIdProvider));
- });
-
- describe('parses into { type, data, children }', () => {
- it('unknown type', () => {
- expect(() => uut.parse({ wut: {} } as Layout)).toThrowError('unknown LayoutType "wut"');
- });
-
- it('single component', () => {
- expect(uut.parse(LayoutExamples.singleComponent)).toEqual({
- id: 'myUniqueId',
- type: LayoutType.Component,
- data: {
- name: 'MyReactComponent',
- options: LayoutExamples.options,
- passProps: LayoutExamples.passProps
- },
- children: []
- });
- });
-
- it('external component', () => {
- expect(uut.parse(LayoutExamples.externalComponent)).toEqual({
- id: 'myUniqueId',
- type: LayoutType.ExternalComponent,
- data: {
- name: 'MyReactComponent',
- options: LayoutExamples.options,
- passProps: LayoutExamples.passProps
- },
- children: []
- });
- });
-
- it('pass props', () => {
- const result = uut.parse({
- component: {
- name: 'MyScreen',
- passProps: LayoutExamples.passProps
- }
- });
- expect(result).toEqual({
- id: 'myUniqueId',
- type: LayoutType.Component,
- data: { name: 'MyScreen', passProps: LayoutExamples.passProps },
- children: []
- });
- expect(result.data.passProps).toBe(LayoutExamples.passProps);
- });
-
- it('stack of components with top bar', () => {
- expect(uut.parse(LayoutExamples.stackWithTopBar)).toEqual({
- id: 'myUniqueId',
- type: LayoutType.Stack,
- data: {
- options: LayoutExamples.options
- },
- children: [
- {
- id: 'myUniqueId',
- type: LayoutType.Component,
- data: { name: 'MyReactComponent1' },
- children: []
- },
- {
- id: 'myUniqueId',
- type: LayoutType.Component,
- data: { name: 'MyReactComponent2', options: LayoutExamples.options },
- children: []
- }
- ]
- });
- });
-
- it('bottom tabs', () => {
- const result = uut.parse(LayoutExamples.bottomTabs);
- expect(_.keys(result)).toEqual(['id', 'type', 'data', 'children']);
- expect(result.id).toEqual('myUniqueId');
- expect(result.type).toEqual(LayoutType.BottomTabs);
- expect(result.data).toEqual({});
- expect(result.children.length).toEqual(3);
- expect(result.children[0].type).toEqual(LayoutType.Stack);
- expect(result.children[1].type).toEqual(LayoutType.Stack);
- expect(result.children[2].type).toEqual(LayoutType.Component);
- });
-
- it('side menus', () => {
- const result = uut.parse(LayoutExamples.sideMenu);
- expect(_.keys(result)).toEqual(['id', 'type', 'data', 'children']);
- expect(result.id).toEqual('myUniqueId');
- expect(result.type).toEqual(LayoutType.SideMenuRoot);
- expect(result.data).toEqual({});
- expect(result.children.length).toEqual(3);
- expect(result.children[0].type).toEqual(LayoutType.SideMenuLeft);
- expect(result.children[1].type).toEqual(LayoutType.SideMenuCenter);
- expect(result.children[2].type).toEqual(LayoutType.SideMenuRight);
- expect(result.children[0].children.length).toEqual(1);
- expect(result.children[0].children[0].type).toEqual(LayoutType.Component);
- expect(result.children[1].children.length).toEqual(1);
- expect(result.children[1].children[0].type).toEqual(LayoutType.Stack);
- expect(result.children[2].children.length).toEqual(1);
- expect(result.children[2].children[0].type).toEqual(LayoutType.Component);
- });
-
- it('top tabs', () => {
- const result = uut.parse(LayoutExamples.topTabs);
- expect(_.keys(result)).toEqual(['id', 'type', 'data', 'children']);
- expect(result.id).toEqual('myUniqueId');
- expect(result.type).toEqual(LayoutType.TopTabs);
- expect(result.data).toEqual({ options: LayoutExamples.options });
- expect(result.children.length).toEqual(5);
- expect(result.children[0].type).toEqual(LayoutType.Component);
- expect(result.children[1].type).toEqual(LayoutType.Component);
- expect(result.children[2].type).toEqual(LayoutType.Component);
- expect(result.children[3].type).toEqual(LayoutType.Component);
- expect(result.children[4].type).toEqual(LayoutType.Stack);
- });
-
- it('complex layout example', () => {
- const result = uut.parse(LayoutExamples.complexLayout);
- expect(result.type).toEqual('SideMenuRoot');
- expect(result.children[1].type).toEqual('SideMenuCenter');
- expect(result.children[1].children[0].type).toEqual('BottomTabs');
- expect(result.children[1].children[0].children[2].type).toEqual('Stack');
- });
-
- it('split view', () => {
- const result = uut.parse(LayoutExamples.splitView);
- const master = uut.parse(LayoutExamples.splitView.splitView!.master!);
- const detail = uut.parse(LayoutExamples.splitView.splitView!.detail!);
-
- expect(result.type).toEqual('SplitView');
- expect(result.children[0]).toEqual(master);
- expect(result.children[1]).toEqual(detail);
- });
- });
-
- it('options for all containing types', () => {
- expect(uut.parse({ component: { name: 'lol', options } }).data.options).toBe(options);
- expect(uut.parse({ stack: { options } }).data.options).toBe(options);
- expect(uut.parse({ bottomTabs: { options } }).data.options).toBe(options);
- expect(uut.parse({ topTabs: { options } }).data.options).toBe(options);
- expect(
- uut.parse({ sideMenu: { options, center: { component: { name: 'lool' } } } }).data.options
- ).toBe(options);
- expect(uut.parse(LayoutExamples.splitView).data.options).toBe(optionsSplitView);
- });
-
- it('pass user provided id as is', () => {
- const component = { id: 'compId', name: 'loool' };
- expect(uut.parse({ component }).id).toEqual('compId');
- expect(uut.parse({ stack: { id: 'stackId' } }).id).toEqual('stackId');
- expect(uut.parse({ stack: { children: [{ component }] } }).children[0].id).toEqual('compId');
- expect(uut.parse({ bottomTabs: { id: 'myId' } }).id).toEqual('myId');
- expect(uut.parse({ bottomTabs: { children: [{ component }] } }).children[0].id).toEqual(
- 'compId'
- );
- expect(uut.parse({ topTabs: { id: 'myId' } }).id).toEqual('myId');
- expect(uut.parse({ topTabs: { children: [{ component }] } }).children[0].id).toEqual('compId');
- expect(uut.parse({ sideMenu: { id: 'myId', center: { component } } }).id).toEqual('myId');
- });
- });
-
- /* Layout Examples: */
-
- const passProps = {
- strProp: 'string prop',
- numProp: 12345,
- objProp: { inner: { foo: 'bar' } },
- fnProp: () => 'Hello from a function'
- };
-
- const options = {
- topBar: {
- title: {
- text: 'Hello1'
- }
- }
- };
-
- const optionsSplitView: OptionsSplitView = {
- displayMode: 'auto',
- primaryEdge: 'leading',
- minWidth: 150,
- maxWidth: 300
- };
-
- const singleComponent = {
- component: {
- name: 'MyReactComponent',
- options,
- passProps
- }
- };
-
- const externalComponent = {
- externalComponent: {
- name: 'MyReactComponent',
- options,
- passProps
- }
- };
-
- const stackWithTopBar = {
- stack: {
- children: [
- {
- component: {
- name: 'MyReactComponent1'
- }
- },
- {
- component: {
- name: 'MyReactComponent2',
- options
- }
- }
- ],
- options
- }
- };
-
- const bottomTabs = {
- bottomTabs: {
- children: [
- stackWithTopBar,
- stackWithTopBar,
- {
- component: {
- name: 'MyReactComponent1'
- }
- }
- ]
- }
- };
-
- const sideMenu = {
- sideMenu: {
- left: singleComponent,
- center: stackWithTopBar,
- right: singleComponent
- }
- };
-
- const topTabs = {
- topTabs: {
- children: [singleComponent, singleComponent, singleComponent, singleComponent, stackWithTopBar],
- options
- }
- };
-
- const complexLayout: Layout = {
- sideMenu: {
- left: singleComponent,
- center: {
- bottomTabs: {
- children: [
- stackWithTopBar,
- stackWithTopBar,
- {
- stack: {
- children: [singleComponent, singleComponent, singleComponent, singleComponent]
- }
- }
- ]
- }
- }
- }
- };
-
- const splitView: Layout = {
- splitView: {
- master: {
- stack: {
- children: [singleComponent],
- options
- }
- },
- detail: stackWithTopBar,
- options: optionsSplitView
- }
- };
-
- const LayoutExamples = {
- passProps,
- options,
- singleComponent,
- stackWithTopBar,
- bottomTabs,
- sideMenu,
- topTabs,
- complexLayout,
- externalComponent,
- splitView
- };
|