Fix: respect parameter order when using "for ... reversed" (#231)

* fix: spelling

* fix: respect param order for reversed

* docs: add for-reversed order details

* perf: improve performance by 4x by simplified parseFile

BREAKING CHANGES:
- previously deprecated `getTemplate()` and `getTemplateSync()` not no longer supported
- `opts` no longer support dynamic set in `parseFile()`, `renderFile()` arguments

* perf: parse filenames in parse() insteadof render()

* docs: update description of LiquidJS

Co-authored-by: harttle <[email protected]>
This commit is contained in:
Steve Stedman
2021-09-30 22:15:09 +08:00
committed by Jun Yang
co-authored by harttle
parent 9012133e07
commit fb787e8847
3 changed files with 39 additions and 9 deletions
+28 -2
View File
@@ -106,7 +106,7 @@ There's a `forloop` object available inside `for` loops. It's used to indicate t
The `forloop.first`, `forloop.last` and `forloop.length` property:
Input
```
```liquid
{% for i in (1..5) %}
{%- if forloop.first == true -%} First
{%- elsif forloop.last == true -%} Last
@@ -116,7 +116,7 @@ Input
```
Output
```
```text
First
5
5
@@ -218,3 +218,29 @@ Output
```text
6 5 4 3 2 1
```
When used with additional parameters, order is important. Leading with `reversed` reverses the order of the loop before executing the other parameters.
Input
```liquid
{% for i in (1..8) reversed limit: 4 %}
{{ i }}
{% endfor %}
```
Output
```text
8 7 6 5
```
Input
```liquid
{% for i in (1..8) limit: 4 reversed %}
{{ i }}
{% endfor %}
```
Output
```text
4 3 2 1
```
+5 -2
View File
@@ -18,7 +18,7 @@ export default {
this.variable = variable.content
this.collection = collection
this.hash = new Hash(toknenizer.remaining())
this.hash = new Hash(tokenizer.remaining())
this.templates = []
this.elseTemplates = []
@@ -46,9 +46,12 @@ export default {
const hash = yield this.hash.render(ctx)
const offset = hash.offset || 0
const limit = (hash.limit === undefined) ? collection.length : hash.limit
const reversedIndex = Reflect.ownKeys(hash).indexOf('reversed')
// reverse collection before slicing if 'reversed' is 1st parameter
if (reversedIndex === 0) collection.reverse()
collection = collection.slice(offset, offset + limit)
if ('reversed' in hash) collection.reverse()
if (reversedIndex > 0) collection.reverse()
const scope = { forloop: new ForloopDrop(collection.length) }
ctx.push(scope)
+6 -5
View File
@@ -207,25 +207,26 @@ describe('tags/for', function () {
})
})
describe('reverse', function () {
describe('reversed', function () {
it('should support for reversed in the last position', async function () {
const src = '{% for i in (1..5) limit:2 reversed %}{{ i }}{% endfor %}'
const src = '{% for i in (1..8) limit:2 reversed %}{{ i }}{% endfor %}'
const html = await liquid.parseAndRender(src, scope)
return expect(html).to.equal('21')
})
it('should support for reversed in the first position', async function () {
const src = '{% for i in (1..5) reversed limit:2 %}{{ i }}{% endfor %}'
const src = '{% for i in (1..8) reversed limit:2 %}{{ i }}{% endfor %}'
const html = await liquid.parseAndRender(src, scope)
return expect(html).to.equal('21')
return expect(html).to.equal('87')
})
it('should support for reversed in the middle position', async function () {
const src = '{% for i in (1..5) offset:2 reversed limit:4 %}{{ i }}{% endfor %}'
const src = '{% for i in (1..8) offset:2 reversed limit:3 %}{{ i }}{% endfor %}'
const html = await liquid.parseAndRender(src)
return expect(html).to.equal('543')
})
})
describe('sync', function () {
it('should support sync', function () {
const src = '{% for i in (1..5) %}{{i}}{%endfor%}'