summaryrefslogtreecommitdiff
path: root/web-ui/public/js/mail_view/ui/recipients/recipients_iterator.js
blob: 624ac4f5545f574cff75e50738226fc1facb32d2 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
 * Copyright (c) 2014 ThoughtWorks, Inc.
 *
 * Pixelated is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Affero General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Pixelated is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Affero General Public License for more details.
 *
 * You should have received a copy of the GNU Affero General Public License
 * along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
 */

define(['helpers/iterator'], function (Iterator) {
  'use strict';

  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().doUnselect();
        this.iterator.previous().doSelect();
      }
    };

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

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

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

});