⌈⌋ ⎇ branch:  Bitrhythm


Artifact Content

Artifact 9a9f2d8709b338713f4561abc3081848d171a8b7a67358e8f51e4d4628d219be:


<loop-bug-2205>
  <ul>
    <li ref={ refAttr } each="{ items }">{ name }</li>
  </ul>

  <script>
    function generateString() {
        var text = ''
        var possible = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'

      for(var i=0; i < 4; i++ )
        text += possible.charAt(Math.floor(Math.random() * possible.length))

      return text
    }

    generateInitial() {
      var i;
      var list = [];
      for (i = 0; i < this.itemsAmount; i++)
        list.push({ name: i + generateString() });
      return list;
    }

    addEditList() {
      this.items.splice(2, 1);
      this.items.splice(4, 1);

      this.items.push({ name: 'new' + generateString() });
      this.items.push({ name: 'new' + generateString() });

      this.items.sort(function(a, b) {
        if (a.name < b.name) {
          return -1
        } else if (a.name > b.name) {
          return 1
        }
        return 0
      })
    }

    this.itemsAmount = 10
    this.refAttr = 'items'
    this.items = this.generateInitial()

  </script>
</loop-bug-2205>