tpl/collections: Add Pages support to Intersect and Union
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 3 Jul 2017 08:32:10 +0000 (10:32 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 3 Jul 2017 19:48:03 +0000 (21:48 +0200)
commitccdd08d57ab64441e93d6861ae126b5faacdb92f
tree0fa04e433617ee1f9b6de2569000b1352d4c5c9d
parentd12cf5a25df00fa16c59f0b2ae282187a398214c
tpl/collections: Add Pages support to Intersect and Union

This enables `AND` (`intersect`)  and `OR` (`union`)  filters when combined with `where`.

Example:

```go
{{ $pages := where .Site.RegularPages "Type" "not in" (slice "page" "about") }}
{{ $pages := $pages | union (where .Site.RegularPages "Params.pinned" true) }}
{{ $pages := $pages | intersect (where .Site.RegularPages "Params.images" "!=" nil) }}
```

The above fetches regular pages not of `page` or `about` type unless they are pinned. And finally, we exclude all pages with no `images` set in Page params.

Fixes #3174
tpl/collections/apply.go
tpl/collections/collections.go
tpl/collections/collections_test.go
tpl/collections/reflect_helpers.go
tpl/collections/where.go