summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mail_view/ui/recipients/recipients_iterator.js
blob: 73aefc7986f8342d592980f4bd30a4e1bbbdabe8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
define(['helpers/iterator'], function (Iterator) {

  return RecipientsIterator;

  function RecipientsIterator(options) {

    this.iterator = new Iterator(options.elements, options.elements.length - 1);
    this.input = options.exitInput;

    this.current = function () {
      return this.iterator.current();
    };

    this.moveLeft = function () {
      if (this.iterator.hasPrevious()) {
        this.iterator.current().unselect();
        this.iterator.previous().select();
      }
    };

    this.moveRight = function () {
      this.iterator.current().unselect();
      if (this.iterator.hasNext()) {
        this.iterator.next().select();
      } else {
        this.input.focus();
      }
    };

    this.deleteCurrent = function () {
      this.iterator.removeCurrent().destroy();

      if (this.iterator.hasElements()) {
        this.iterator.current().select()
      } else {
        this.input.focus();
      }
    };
  }

});