summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/grid.js
blob: 4a2e01ee9b14e73eeae117f98c0b365d2c438374 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/* import-globals-from common.js */

/**
 * Create grid object based on HTML table.
 */
function grid(aTableIdentifier) {
  this.getRowCount = function getRowCount() {
    return this.table.rows.length - (this.table.tHead ? 1 : 0);
  };
  this.getColsCount = function getColsCount() {
    return this.table.rows[0].cells.length;
  };

  this.getRowAtIndex = function getRowAtIndex(aIndex) {
    return this.table.rows[this.table.tHead ? aIndex + 1 : aIndex];
  };

  this.getMaxIndex = function getMaxIndex() {
    return this.getRowCount() * this.getColsCount() - 1;
  };

  this.getCellAtIndex = function getCellAtIndex(aIndex) {
    var colsCount = this.getColsCount();

    var rowIdx = Math.floor(aIndex / colsCount);
    var colIdx = aIndex % colsCount;

    var row = this.getRowAtIndex(rowIdx);
    return row.cells[colIdx];
  };

  this.getIndexByCell = function getIndexByCell(aCell) {
    var colIdx = aCell.cellIndex;

    var rowIdx = aCell.parentNode.rowIndex;
    if (this.table.tHead) {
      rowIdx -= 1;
    }

    var colsCount = this.getColsCount();
    return rowIdx * colsCount + colIdx;
  };

  this.getCurrentCell = function getCurrentCell() {
    var rowCount = this.table.rows.length;
    var colsCount = this.getColsCount();
    for (var rowIdx = 0; rowIdx < rowCount; rowIdx++) {
      for (var colIdx = 0; colIdx < colsCount; colIdx++) {
        var cell = this.table.rows[rowIdx].cells[colIdx];
        if (cell.hasAttribute("tabindex")) {
          return cell;
        }
      }
    }
    return null;
  };

  this.initGrid = function initGrid() {
    this.table.addEventListener("keypress", this);
    this.table.addEventListener("click", this);
  };

  this.handleEvent = function handleEvent(aEvent) {
    if (aEvent instanceof KeyboardEvent) {
      this.handleKeyEvent(aEvent);
    } else {
      this.handleClickEvent(aEvent);
    }
  };

  this.handleKeyEvent = function handleKeyEvent(aEvent) {
    if (aEvent.target.localName != "td") {
      return;
    }

    var cell = aEvent.target;
    switch (aEvent.keyCode) {
      case KeyboardEvent.DOM_VK_UP: {
        let colsCount = this.getColsCount();
        let idx = this.getIndexByCell(cell);
        var upidx = idx - colsCount;
        if (upidx >= 0) {
          cell.removeAttribute("tabindex");
          var upcell = this.getCellAtIndex(upidx);
          upcell.setAttribute("tabindex", "0");
          upcell.focus();
        }
        break;
      }
      case KeyboardEvent.DOM_VK_DOWN: {
        let colsCount = this.getColsCount();
        let idx = this.getIndexByCell(cell);
        var downidx = idx + colsCount;
        if (downidx <= this.getMaxIndex()) {
          cell.removeAttribute("tabindex");
          var downcell = this.getCellAtIndex(downidx);
          downcell.setAttribute("tabindex", "0");
          downcell.focus();
        }
        break;
      }
      case KeyboardEvent.DOM_VK_LEFT: {
        let idx = this.getIndexByCell(cell);
        if (idx > 0) {
          cell.removeAttribute("tabindex");
          var prevcell = this.getCellAtIndex(idx - 1);
          prevcell.setAttribute("tabindex", "0");
          prevcell.focus();
        }
        break;
      }
      case KeyboardEvent.DOM_VK_RIGHT: {
        let idx = this.getIndexByCell(cell);
        if (idx < this.getMaxIndex()) {
          cell.removeAttribute("tabindex");
          var nextcell = this.getCellAtIndex(idx + 1);
          nextcell.setAttribute("tabindex", "0");
          nextcell.focus();
        }
        break;
      }
    }
  };

  this.handleClickEvent = function handleClickEvent(aEvent) {
    if (aEvent.target.localName != "td") {
      return;
    }

    var curCell = this.getCurrentCell();
    var cell = aEvent.target;

    if (cell != curCell) {
      curCell.removeAttribute("tabindex");
      cell.setAttribute("tabindex", "0");
      cell.focus();
    }
  };

  this.table = getNode(aTableIdentifier);
  this.initGrid();
}