]> git.mxchange.org Git - friendica-addons.git/blob
3fc18dc0cf0abd4be42ccb9414a8c22f6df11c3a
[friendica-addons.git] /
1 ({
2   type: 'recycle-list',
3   attr: {
4     append: 'tree',
5     listData: [
6       { type: 'A', poster: 'xx', title: 'x' },
7       { type: 'A', poster: 'yy', title: 'y' }
8     ],
9     switch: 'type',
10     alias: 'item'
11   },
12   children: [{
13     type: 'cell-slot',
14     attr: { append: 'tree', case: 'A' },
15     children: [{
16       type: 'div',
17       attr: {
18         '@isComponentRoot': true,
19         '@componentProps': {
20           imageUrl: { '@binding': 'item.poster' },
21           title: { '@binding': 'item.title' }
22         }
23       },
24       children: [{
25         type: 'image',
26         classList: ['image'],
27         attr: {
28           src: { '@binding': 'imageUrl' }
29         }
30       }, {
31         type: 'text',
32         classList: ['title'],
33         attr: {
34           value: { '@binding': 'title' }
35         }
36       }]
37     }, {
38       type: 'text',
39       attr: {
40         value: 'content'
41       }
42     }]
43   }]
44 })