dimaip/groupby
最新稳定版本:6.0
Composer 安装命令:
composer require dimaip/groupby
包简介
FlowQuery groupBy operation to group arrays by EEL discriminator
README 文档
README
FlowQuery groupBy operation to group arrays by EEL discriminator
Once upon a time I had a list of persons nodes, and I needed to group them by first letter. So I decided there should be a generic way to group array of nodes into subgroups, based on an EEL expression... And here it is!
TL;DR
Install: composer require dimaip/groupby
Use:
groupedNodesByFirstLetterOfLastName = ${q(nodes).groupBy('String.substring(node.properties.lastName, 0, 1)')}
Full example
Once you have grouped the nodes, you can render them any way you like: with Fluid (yikes!) or with Fusion (yay!).
prototype(Name.Space:GroupedList) < prototype(TYPO3.TypoScript:Collection) {
@process.tmpl = ${'<div class="grouped-list">' + value + '</div>'}
@context.nodes = ${q(site).find('[instanceof Name.Space:Person]')}
collection = ${nodes.groupBy('String.substring(node.properties.lastName, 0, 1)')}
itemName = 'nodes'
itemKey = 'firstLetter'
itemRenderer = TYPO3.TypoScript:Collection {
@process.tmpl = ${'<div><h2>' + firstLetter + '</h2><ul>' + value + '</ul></div>'}
collection = ${nodes}
itemName = 'node'
itemRenderer = ${'<li>' + node.properties.firstName + ' ' + node.properties.lastName + '</li>'}
}
}
In a similar way you can group nodes based on a very complex EEL expressions, let your imagination fly!
Credit
Initial development sponsored by Stefan Johänntgen
统计信息
- 总下载量: 6.88k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 6
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-3.0
- 更新时间: 2016-09-27