summaryrefslogtreecommitdiffstats
path: root/front/odiparpack/app/containers/Tables/demos/dataTreeTable.js
blob: 2eba8abfa70d859b0e548245766796e106c4d55b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
module.exports = {
  head: [
    {
      label: 'KeyId',
    },
    {
      label: 'Dessert (100g serving)',
    },
    {
      label: 'Calories',
    },
    {
      label: 'Fat(g)',
    }
  ],
  body: [
    {
      id: '1',
      name: 'Frozen yoghurt',
      calories: 159,
      fat: 24,
      child: [
        {
          id: '1_1',
          name: 'Frozen child 1',
          calories: 159,
          fat: 24,
        },
        {
          id: '1_2',
          name: 'Frozen child 2',
          calories: 159,
          fat: 24,
          child: [
            {
              id: '1_2_1',
              name: 'Frozen grand child 1',
              calories: 159,
              fat: 24,
            },
          ]
        },
      ]
    },
    {
      id: '2',
      name: 'Eclair',
      calories: 159,
      fat: 24,
      child: [
        {
          id: '2_1',
          name: 'Eclair Child',
          calories: 159,
          fat: 24,
          child: [
            {
              id: '2_1_1',
              name: 'Eclair Grand Child 1',
              calories: 159,
              fat: 24,
            },
            {
              id: '2_1_2',
              name: 'Eclair Grand Child 2',
              calories: 159,
              fat: 24,
            }
          ]
        },
      ]
    },
    {
      id: '3',
      name: 'Cupcake',
      calories: 159,
      fat: 24,
    },
    {
      id: '4',
      name: 'Ginger Bread',
      calories: 159,
      fat: 24,
      child: [
        {
          id: '4_1',
          name: 'Ginger Bread Child',
          calories: 159,
          fat: 24,
          child: [
            {
              id: '4_1_1',
              name: 'Ginger Bread Grand Child 1',
              calories: 159,
              fat: 24,
              child: [
                {
                  id: '4_1_1_1',
                  name: 'Ginger Bread Super Grand Child 1',
                  calories: 159,
                  fat: 24,
                },
                {
                  id: '4_1_1_2',
                  name: 'Ginger Bread Super Grand Child 2',
                  calories: 159,
                  fat: 24,
                },
              ]
            },
            {
              id: '4_1_2',
              name: 'Ginger Bread Grand Child 2',
              calories: 159,
              fat: 24,
            },
            {
              id: '4_1_3',
              name: 'Ginger Bread Grand Child 3',
              calories: 159,
              fat: 24,
            }
          ]
        },
      ]
    }
  ]
};