Projet

Général

Profil

Paste
Télécharger (41,4 ko) Statistiques
| Branche: | Révision:

root / drupal7 / misc / tabledrag.js @ b0dc3a2e

1
(function ($) {
2

    
3
/**
4
 * Drag and drop table rows with field manipulation.
5
 *
6
 * Using the drupal_add_tabledrag() function, any table with weights or parent
7
 * relationships may be made into draggable tables. Columns containing a field
8
 * may optionally be hidden, providing a better user experience.
9
 *
10
 * Created tableDrag instances may be modified with custom behaviors by
11
 * overriding the .onDrag, .onDrop, .row.onSwap, and .row.onIndent methods.
12
 * See blocks.js for an example of adding additional functionality to tableDrag.
13
 */
14
Drupal.behaviors.tableDrag = {
15
  attach: function (context, settings) {
16
    for (var base in settings.tableDrag) {
17
      $('#' + base, context).once('tabledrag', function () {
18
        // Create the new tableDrag instance. Save in the Drupal variable
19
        // to allow other scripts access to the object.
20
        Drupal.tableDrag[base] = new Drupal.tableDrag(this, settings.tableDrag[base]);
21
      });
22
    }
23
  }
24
};
25

    
26
/**
27
 * Constructor for the tableDrag object. Provides table and field manipulation.
28
 *
29
 * @param table
30
 *   DOM object for the table to be made draggable.
31
 * @param tableSettings
32
 *   Settings for the table added via drupal_add_dragtable().
33
 */
34
Drupal.tableDrag = function (table, tableSettings) {
35
  var self = this;
36

    
37
  // Required object variables.
38
  this.table = table;
39
  this.tableSettings = tableSettings;
40
  this.dragObject = null; // Used to hold information about a current drag operation.
41
  this.rowObject = null; // Provides operations for row manipulation.
42
  this.oldRowElement = null; // Remember the previous element.
43
  this.oldY = 0; // Used to determine up or down direction from last mouse move.
44
  this.changed = false; // Whether anything in the entire table has changed.
45
  this.maxDepth = 0; // Maximum amount of allowed parenting.
46
  this.rtl = $(this.table).css('direction') == 'rtl' ? -1 : 1; // Direction of the table.
47

    
48
  // Configure the scroll settings.
49
  this.scrollSettings = { amount: 4, interval: 50, trigger: 70 };
50
  this.scrollInterval = null;
51
  this.scrollY = 0;
52
  this.windowHeight = 0;
53

    
54
  // Check this table's settings to see if there are parent relationships in
55
  // this table. For efficiency, large sections of code can be skipped if we
56
  // don't need to track horizontal movement and indentations.
57
  this.indentEnabled = false;
58
  for (var group in tableSettings) {
59
    for (var n in tableSettings[group]) {
60
      if (tableSettings[group][n].relationship == 'parent') {
61
        this.indentEnabled = true;
62
      }
63
      if (tableSettings[group][n].limit > 0) {
64
        this.maxDepth = tableSettings[group][n].limit;
65
      }
66
    }
67
  }
68
  if (this.indentEnabled) {
69
    this.indentCount = 1; // Total width of indents, set in makeDraggable.
70
    // Find the width of indentations to measure mouse movements against.
71
    // Because the table doesn't need to start with any indentations, we
72
    // manually append 2 indentations in the first draggable row, measure
73
    // the offset, then remove.
74
    var indent = Drupal.theme('tableDragIndentation');
75
    var testRow = $('<tr/>').addClass('draggable').appendTo(table);
76
    var testCell = $('<td/>').appendTo(testRow).prepend(indent).prepend(indent);
77
    this.indentAmount = $('.indentation', testCell).get(1).offsetLeft - $('.indentation', testCell).get(0).offsetLeft;
78
    testRow.remove();
79
  }
80

    
81
  // Make each applicable row draggable.
82
  // Match immediate children of the parent element to allow nesting.
83
  $('> tr.draggable, > tbody > tr.draggable', table).each(function () { self.makeDraggable(this); });
84

    
85
  // Add a link before the table for users to show or hide weight columns.
86
  $(table).before($('<a href="#" class="tabledrag-toggle-weight"></a>')
87
    .attr('title', Drupal.t('Re-order rows by numerical weight instead of dragging.'))
88
    .click(function () {
89
      if ($.cookie('Drupal.tableDrag.showWeight') == 1) {
90
        self.hideColumns();
91
      }
92
      else {
93
        self.showColumns();
94
      }
95
      return false;
96
    })
97
    .wrap('<div class="tabledrag-toggle-weight-wrapper"></div>')
98
    .parent()
99
  );
100

    
101
  // Initialize the specified columns (for example, weight or parent columns)
102
  // to show or hide according to user preference. This aids accessibility
103
  // so that, e.g., screen reader users can choose to enter weight values and
104
  // manipulate form elements directly, rather than using drag-and-drop..
105
  self.initColumns();
106

    
107
  // Add mouse bindings to the document. The self variable is passed along
108
  // as event handlers do not have direct access to the tableDrag object.
109
  $(document).bind('mousemove pointermove', function (event) { return self.dragRow(event, self); });
110
  $(document).bind('mouseup pointerup', function (event) { return self.dropRow(event, self); });
111
  $(document).bind('touchmove', function (event) { return self.dragRow(event.originalEvent.touches[0], self); });
112
  $(document).bind('touchend', function (event) { return self.dropRow(event.originalEvent.touches[0], self); });
113
};
114

    
115
/**
116
 * Initialize columns containing form elements to be hidden by default,
117
 * according to the settings for this tableDrag instance.
118
 *
119
 * Identify and mark each cell with a CSS class so we can easily toggle
120
 * show/hide it. Finally, hide columns if user does not have a
121
 * 'Drupal.tableDrag.showWeight' cookie.
122
 */
123
Drupal.tableDrag.prototype.initColumns = function () {
124
  for (var group in this.tableSettings) {
125
    // Find the first field in this group.
126
    for (var d in this.tableSettings[group]) {
127
      var field = $('.' + this.tableSettings[group][d].target + ':first', this.table);
128
      if (field.length && this.tableSettings[group][d].hidden) {
129
        var hidden = this.tableSettings[group][d].hidden;
130
        var cell = field.closest('td');
131
        break;
132
      }
133
    }
134

    
135
    // Mark the column containing this field so it can be hidden.
136
    if (hidden && cell[0]) {
137
      // Add 1 to our indexes. The nth-child selector is 1 based, not 0 based.
138
      // Match immediate children of the parent element to allow nesting.
139
      var columnIndex = $('> td', cell.parent()).index(cell.get(0)) + 1;
140
      $('> thead > tr, > tbody > tr, > tr', this.table).each(function () {
141
        // Get the columnIndex and adjust for any colspans in this row.
142
        var index = columnIndex;
143
        var cells = $(this).children();
144
        cells.each(function (n) {
145
          if (n < index && this.colSpan && this.colSpan > 1) {
146
            index -= this.colSpan - 1;
147
          }
148
        });
149
        if (index > 0) {
150
          cell = cells.filter(':nth-child(' + index + ')');
151
          if (cell[0].colSpan && cell[0].colSpan > 1) {
152
            // If this cell has a colspan, mark it so we can reduce the colspan.
153
            cell.addClass('tabledrag-has-colspan');
154
          }
155
          else {
156
            // Mark this cell so we can hide it.
157
            cell.addClass('tabledrag-hide');
158
          }
159
        }
160
      });
161
    }
162
  }
163

    
164
  // Now hide cells and reduce colspans unless cookie indicates previous choice.
165
  // Set a cookie if it is not already present.
166
  if ($.cookie('Drupal.tableDrag.showWeight') === null) {
167
    $.cookie('Drupal.tableDrag.showWeight', 0, {
168
      path: Drupal.settings.basePath,
169
      // The cookie expires in one year.
170
      expires: 365
171
    });
172
    this.hideColumns();
173
  }
174
  // Check cookie value and show/hide weight columns accordingly.
175
  else {
176
    if ($.cookie('Drupal.tableDrag.showWeight') == 1) {
177
      this.showColumns();
178
    }
179
    else {
180
      this.hideColumns();
181
    }
182
  }
183
};
184

    
185
/**
186
 * Hide the columns containing weight/parent form elements.
187
 * Undo showColumns().
188
 */
189
Drupal.tableDrag.prototype.hideColumns = function () {
190
  // Hide weight/parent cells and headers.
191
  $('.tabledrag-hide', 'table.tabledrag-processed').css('display', 'none');
192
  // Show TableDrag handles.
193
  $('.tabledrag-handle', 'table.tabledrag-processed').css('display', '');
194
  // Reduce the colspan of any effected multi-span columns.
195
  $('.tabledrag-has-colspan', 'table.tabledrag-processed').each(function () {
196
    this.colSpan = this.colSpan - 1;
197
  });
198
  // Change link text.
199
  $('.tabledrag-toggle-weight').text(Drupal.t('Show row weights'));
200
  // Change cookie.
201
  $.cookie('Drupal.tableDrag.showWeight', 0, {
202
    path: Drupal.settings.basePath,
203
    // The cookie expires in one year.
204
    expires: 365
205
  });
206
  // Trigger an event to allow other scripts to react to this display change.
207
  $('table.tabledrag-processed').trigger('columnschange', 'hide');
208
};
209

    
210
/**
211
 * Show the columns containing weight/parent form elements
212
 * Undo hideColumns().
213
 */
214
Drupal.tableDrag.prototype.showColumns = function () {
215
  // Show weight/parent cells and headers.
216
  $('.tabledrag-hide', 'table.tabledrag-processed').css('display', '');
217
  // Hide TableDrag handles.
218
  $('.tabledrag-handle', 'table.tabledrag-processed').css('display', 'none');
219
  // Increase the colspan for any columns where it was previously reduced.
220
  $('.tabledrag-has-colspan', 'table.tabledrag-processed').each(function () {
221
    this.colSpan = this.colSpan + 1;
222
  });
223
  // Change link text.
224
  $('.tabledrag-toggle-weight').text(Drupal.t('Hide row weights'));
225
  // Change cookie.
226
  $.cookie('Drupal.tableDrag.showWeight', 1, {
227
    path: Drupal.settings.basePath,
228
    // The cookie expires in one year.
229
    expires: 365
230
  });
231
  // Trigger an event to allow other scripts to react to this display change.
232
  $('table.tabledrag-processed').trigger('columnschange', 'show');
233
};
234

    
235
/**
236
 * Find the target used within a particular row and group.
237
 */
238
Drupal.tableDrag.prototype.rowSettings = function (group, row) {
239
  var field = $('.' + group, row);
240
  for (var delta in this.tableSettings[group]) {
241
    var targetClass = this.tableSettings[group][delta].target;
242
    if (field.is('.' + targetClass)) {
243
      // Return a copy of the row settings.
244
      var rowSettings = {};
245
      for (var n in this.tableSettings[group][delta]) {
246
        rowSettings[n] = this.tableSettings[group][delta][n];
247
      }
248
      return rowSettings;
249
    }
250
  }
251
};
252

    
253
/**
254
 * Take an item and add event handlers to make it become draggable.
255
 */
256
Drupal.tableDrag.prototype.makeDraggable = function (item) {
257
  var self = this;
258

    
259
  // Create the handle.
260
  var handle = $('<a href="#" class="tabledrag-handle"><div class="handle">&nbsp;</div></a>').attr('title', Drupal.t('Drag to re-order'));
261
  // Insert the handle after indentations (if any).
262
  if ($('td:first .indentation:last', item).length) {
263
    $('td:first .indentation:last', item).after(handle);
264
    // Update the total width of indentation in this entire table.
265
    self.indentCount = Math.max($('.indentation', item).length, self.indentCount);
266
  }
267
  else {
268
    $('td:first', item).prepend(handle);
269
  }
270

    
271
  // Add hover action for the handle.
272
  handle.hover(function () {
273
    self.dragObject == null ? $(this).addClass('tabledrag-handle-hover') : null;
274
  }, function () {
275
    self.dragObject == null ? $(this).removeClass('tabledrag-handle-hover') : null;
276
  });
277

    
278
  // Add the mousedown action for the handle.
279
  handle.bind('mousedown touchstart pointerdown', function (event) {
280
    if (event.originalEvent.type == "touchstart") {
281
      event = event.originalEvent.touches[0];
282
    }
283
    // Create a new dragObject recording the event information.
284
    self.dragObject = {};
285
    self.dragObject.initMouseOffset = self.getMouseOffset(item, event);
286
    self.dragObject.initMouseCoords = self.mouseCoords(event);
287
    if (self.indentEnabled) {
288
      self.dragObject.indentMousePos = self.dragObject.initMouseCoords;
289
    }
290

    
291
    // If there's a lingering row object from the keyboard, remove its focus.
292
    if (self.rowObject) {
293
      $('a.tabledrag-handle', self.rowObject.element).blur();
294
    }
295

    
296
    // Create a new rowObject for manipulation of this row.
297
    self.rowObject = new self.row(item, 'mouse', self.indentEnabled, self.maxDepth, true);
298

    
299
    // Save the position of the table.
300
    self.table.topY = $(self.table).offset().top;
301
    self.table.bottomY = self.table.topY + self.table.offsetHeight;
302

    
303
    // Add classes to the handle and row.
304
    $(this).addClass('tabledrag-handle-hover');
305
    $(item).addClass('drag');
306

    
307
    // Set the document to use the move cursor during drag.
308
    $('body').addClass('drag');
309
    if (self.oldRowElement) {
310
      $(self.oldRowElement).removeClass('drag-previous');
311
    }
312

    
313
    // Hack for IE6 that flickers uncontrollably if select lists are moved.
314
    if (navigator.userAgent.indexOf('MSIE 6.') != -1) {
315
      $('select', this.table).css('display', 'none');
316
    }
317

    
318
    // Hack for Konqueror, prevent the blur handler from firing.
319
    // Konqueror always gives links focus, even after returning false on mousedown.
320
    self.safeBlur = false;
321

    
322
    // Call optional placeholder function.
323
    self.onDrag();
324
    return false;
325
  });
326

    
327
  // Prevent the anchor tag from jumping us to the top of the page.
328
  handle.click(function () {
329
    return false;
330
  });
331

    
332
  // Similar to the hover event, add a class when the handle is focused.
333
  handle.focus(function () {
334
    $(this).addClass('tabledrag-handle-hover');
335
    self.safeBlur = true;
336
  });
337

    
338
  // Remove the handle class on blur and fire the same function as a mouseup.
339
  handle.blur(function (event) {
340
    $(this).removeClass('tabledrag-handle-hover');
341
    if (self.rowObject && self.safeBlur) {
342
      self.dropRow(event, self);
343
    }
344
  });
345

    
346
  // Add arrow-key support to the handle.
347
  handle.keydown(function (event) {
348
    // If a rowObject doesn't yet exist and this isn't the tab key.
349
    if (event.keyCode != 9 && !self.rowObject) {
350
      self.rowObject = new self.row(item, 'keyboard', self.indentEnabled, self.maxDepth, true);
351
    }
352

    
353
    var keyChange = false;
354
    switch (event.keyCode) {
355
      case 37: // Left arrow.
356
      case 63234: // Safari left arrow.
357
        keyChange = true;
358
        self.rowObject.indent(-1 * self.rtl);
359
        break;
360
      case 38: // Up arrow.
361
      case 63232: // Safari up arrow.
362
        var previousRow = $(self.rowObject.element).prev('tr').get(0);
363
        while (previousRow && $(previousRow).is(':hidden')) {
364
          previousRow = $(previousRow).prev('tr').get(0);
365
        }
366
        if (previousRow) {
367
          self.safeBlur = false; // Do not allow the onBlur cleanup.
368
          self.rowObject.direction = 'up';
369
          keyChange = true;
370

    
371
          if ($(item).is('.tabledrag-root')) {
372
            // Swap with the previous top-level row.
373
            var groupHeight = 0;
374
            while (previousRow && $('.indentation', previousRow).length) {
375
              previousRow = $(previousRow).prev('tr').get(0);
376
              groupHeight += $(previousRow).is(':hidden') ? 0 : previousRow.offsetHeight;
377
            }
378
            if (previousRow) {
379
              self.rowObject.swap('before', previousRow);
380
              // No need to check for indentation, 0 is the only valid one.
381
              window.scrollBy(0, -groupHeight);
382
            }
383
          }
384
          else if (self.table.tBodies[0].rows[0] != previousRow || $(previousRow).is('.draggable')) {
385
            // Swap with the previous row (unless previous row is the first one
386
            // and undraggable).
387
            self.rowObject.swap('before', previousRow);
388
            self.rowObject.interval = null;
389
            self.rowObject.indent(0);
390
            window.scrollBy(0, -parseInt(item.offsetHeight, 10));
391
          }
392
          handle.get(0).focus(); // Regain focus after the DOM manipulation.
393
        }
394
        break;
395
      case 39: // Right arrow.
396
      case 63235: // Safari right arrow.
397
        keyChange = true;
398
        self.rowObject.indent(1 * self.rtl);
399
        break;
400
      case 40: // Down arrow.
401
      case 63233: // Safari down arrow.
402
        var nextRow = $(self.rowObject.group).filter(':last').next('tr').get(0);
403
        while (nextRow && $(nextRow).is(':hidden')) {
404
          nextRow = $(nextRow).next('tr').get(0);
405
        }
406
        if (nextRow) {
407
          self.safeBlur = false; // Do not allow the onBlur cleanup.
408
          self.rowObject.direction = 'down';
409
          keyChange = true;
410

    
411
          if ($(item).is('.tabledrag-root')) {
412
            // Swap with the next group (necessarily a top-level one).
413
            var groupHeight = 0;
414
            var nextGroup = new self.row(nextRow, 'keyboard', self.indentEnabled, self.maxDepth, false);
415
            if (nextGroup) {
416
              $(nextGroup.group).each(function () {
417
                groupHeight += $(this).is(':hidden') ? 0 : this.offsetHeight;
418
              });
419
              var nextGroupRow = $(nextGroup.group).filter(':last').get(0);
420
              self.rowObject.swap('after', nextGroupRow);
421
              // No need to check for indentation, 0 is the only valid one.
422
              window.scrollBy(0, parseInt(groupHeight, 10));
423
            }
424
          }
425
          else {
426
            // Swap with the next row.
427
            self.rowObject.swap('after', nextRow);
428
            self.rowObject.interval = null;
429
            self.rowObject.indent(0);
430
            window.scrollBy(0, parseInt(item.offsetHeight, 10));
431
          }
432
          handle.get(0).focus(); // Regain focus after the DOM manipulation.
433
        }
434
        break;
435
    }
436

    
437
    if (self.rowObject && self.rowObject.changed == true) {
438
      $(item).addClass('drag');
439
      if (self.oldRowElement) {
440
        $(self.oldRowElement).removeClass('drag-previous');
441
      }
442
      self.oldRowElement = item;
443
      self.restripeTable();
444
      self.onDrag();
445
    }
446

    
447
    // Returning false if we have an arrow key to prevent scrolling.
448
    if (keyChange) {
449
      return false;
450
    }
451
  });
452

    
453
  // Compatibility addition, return false on keypress to prevent unwanted scrolling.
454
  // IE and Safari will suppress scrolling on keydown, but all other browsers
455
  // need to return false on keypress. http://www.quirksmode.org/js/keys.html
456
  handle.keypress(function (event) {
457
    switch (event.keyCode) {
458
      case 37: // Left arrow.
459
      case 38: // Up arrow.
460
      case 39: // Right arrow.
461
      case 40: // Down arrow.
462
        return false;
463
    }
464
  });
465
};
466

    
467
/**
468
 * Mousemove event handler, bound to document.
469
 */
470
Drupal.tableDrag.prototype.dragRow = function (event, self) {
471
  if (self.dragObject) {
472
    self.currentMouseCoords = self.mouseCoords(event);
473

    
474
    var y = self.currentMouseCoords.y - self.dragObject.initMouseOffset.y;
475
    var x = self.currentMouseCoords.x - self.dragObject.initMouseOffset.x;
476

    
477
    // Check for row swapping and vertical scrolling.
478
    if (y != self.oldY) {
479
      self.rowObject.direction = y > self.oldY ? 'down' : 'up';
480
      self.oldY = y; // Update the old value.
481

    
482
      // Check if the window should be scrolled (and how fast).
483
      var scrollAmount = self.checkScroll(self.currentMouseCoords.y);
484
      // Stop any current scrolling.
485
      clearInterval(self.scrollInterval);
486
      // Continue scrolling if the mouse has moved in the scroll direction.
487
      if (scrollAmount > 0 && self.rowObject.direction == 'down' || scrollAmount < 0 && self.rowObject.direction == 'up') {
488
        self.setScroll(scrollAmount);
489
      }
490

    
491
      // If we have a valid target, perform the swap and restripe the table.
492
      var currentRow = self.findDropTargetRow(x, y);
493
      if (currentRow) {
494
        if (self.rowObject.direction == 'down') {
495
          self.rowObject.swap('after', currentRow, self);
496
        }
497
        else {
498
          self.rowObject.swap('before', currentRow, self);
499
        }
500
        self.restripeTable();
501
      }
502
    }
503

    
504
    // Similar to row swapping, handle indentations.
505
    if (self.indentEnabled) {
506
      var xDiff = self.currentMouseCoords.x - self.dragObject.indentMousePos.x;
507
      // Set the number of indentations the mouse has been moved left or right.
508
      var indentDiff = Math.round(xDiff / self.indentAmount);
509
      // Indent the row with our estimated diff, which may be further
510
      // restricted according to the rows around this row.
511
      var indentChange = self.rowObject.indent(indentDiff);
512
      // Update table and mouse indentations.
513
      self.dragObject.indentMousePos.x += self.indentAmount * indentChange * self.rtl;
514
      self.indentCount = Math.max(self.indentCount, self.rowObject.indents);
515
    }
516

    
517
    return false;
518
  }
519
};
520

    
521
/**
522
 * Mouseup event handler, bound to document.
523
 * Blur event handler, bound to drag handle for keyboard support.
524
 */
525
Drupal.tableDrag.prototype.dropRow = function (event, self) {
526
  // Drop row functionality shared between mouseup and blur events.
527
  if (self.rowObject != null) {
528
    var droppedRow = self.rowObject.element;
529
    // The row is already in the right place so we just release it.
530
    if (self.rowObject.changed == true) {
531
      // Update the fields in the dropped row.
532
      self.updateFields(droppedRow);
533

    
534
      // If a setting exists for affecting the entire group, update all the
535
      // fields in the entire dragged group.
536
      for (var group in self.tableSettings) {
537
        var rowSettings = self.rowSettings(group, droppedRow);
538
        if (rowSettings.relationship == 'group') {
539
          for (var n in self.rowObject.children) {
540
            self.updateField(self.rowObject.children[n], group);
541
          }
542
        }
543
      }
544

    
545
      self.rowObject.markChanged();
546
      if (self.changed == false) {
547
        $(Drupal.theme('tableDragChangedWarning')).insertBefore(self.table).hide().fadeIn('slow');
548
        self.changed = true;
549
      }
550
    }
551

    
552
    if (self.indentEnabled) {
553
      self.rowObject.removeIndentClasses();
554
    }
555
    if (self.oldRowElement) {
556
      $(self.oldRowElement).removeClass('drag-previous');
557
    }
558
    $(droppedRow).removeClass('drag').addClass('drag-previous');
559
    self.oldRowElement = droppedRow;
560
    self.onDrop();
561
    self.rowObject = null;
562
  }
563

    
564
  // Functionality specific only to mouseup event.
565
  if (self.dragObject != null) {
566
    $('.tabledrag-handle', droppedRow).removeClass('tabledrag-handle-hover');
567

    
568
    self.dragObject = null;
569
    $('body').removeClass('drag');
570
    clearInterval(self.scrollInterval);
571

    
572
    // Hack for IE6 that flickers uncontrollably if select lists are moved.
573
    if (navigator.userAgent.indexOf('MSIE 6.') != -1) {
574
      $('select', this.table).css('display', 'block');
575
    }
576
  }
577
};
578

    
579
/**
580
 * Get the mouse coordinates from the event (allowing for browser differences).
581
 */
582
Drupal.tableDrag.prototype.mouseCoords = function (event) {
583
  if (event.pageX || event.pageY) {
584
    return { x: event.pageX, y: event.pageY };
585
  }
586
  return {
587
    x: event.clientX + document.body.scrollLeft - document.body.clientLeft,
588
    y: event.clientY + document.body.scrollTop  - document.body.clientTop
589
  };
590
};
591

    
592
/**
593
 * Given a target element and a mouse event, get the mouse offset from that
594
 * element. To do this we need the element's position and the mouse position.
595
 */
596
Drupal.tableDrag.prototype.getMouseOffset = function (target, event) {
597
  var docPos   = $(target).offset();
598
  var mousePos = this.mouseCoords(event);
599
  return { x: mousePos.x - docPos.left, y: mousePos.y - docPos.top };
600
};
601

    
602
/**
603
 * Find the row the mouse is currently over. This row is then taken and swapped
604
 * with the one being dragged.
605
 *
606
 * @param x
607
 *   The x coordinate of the mouse on the page (not the screen).
608
 * @param y
609
 *   The y coordinate of the mouse on the page (not the screen).
610
 */
611
Drupal.tableDrag.prototype.findDropTargetRow = function (x, y) {
612
  var rows = $(this.table.tBodies[0].rows).not(':hidden');
613
  for (var n = 0; n < rows.length; n++) {
614
    var row = rows[n];
615
    var indentDiff = 0;
616
    var rowY = $(row).offset().top;
617
    // Because Safari does not report offsetHeight on table rows, but does on
618
    // table cells, grab the firstChild of the row and use that instead.
619
    // http://jacob.peargrove.com/blog/2006/technical/table-row-offsettop-bug-in-safari.
620
    if (row.offsetHeight == 0) {
621
      var rowHeight = parseInt(row.firstChild.offsetHeight, 10) / 2;
622
    }
623
    // Other browsers.
624
    else {
625
      var rowHeight = parseInt(row.offsetHeight, 10) / 2;
626
    }
627

    
628
    // Because we always insert before, we need to offset the height a bit.
629
    if ((y > (rowY - rowHeight)) && (y < (rowY + rowHeight))) {
630
      if (this.indentEnabled) {
631
        // Check that this row is not a child of the row being dragged.
632
        for (var n in this.rowObject.group) {
633
          if (this.rowObject.group[n] == row) {
634
            return null;
635
          }
636
        }
637
      }
638
      else {
639
        // Do not allow a row to be swapped with itself.
640
        if (row == this.rowObject.element) {
641
          return null;
642
        }
643
      }
644

    
645
      // Check that swapping with this row is allowed.
646
      if (!this.rowObject.isValidSwap(row)) {
647
        return null;
648
      }
649

    
650
      // We may have found the row the mouse just passed over, but it doesn't
651
      // take into account hidden rows. Skip backwards until we find a draggable
652
      // row.
653
      while ($(row).is(':hidden') && $(row).prev('tr').is(':hidden')) {
654
        row = $(row).prev('tr').get(0);
655
      }
656
      return row;
657
    }
658
  }
659
  return null;
660
};
661

    
662
/**
663
 * After the row is dropped, update the table fields according to the settings
664
 * set for this table.
665
 *
666
 * @param changedRow
667
 *   DOM object for the row that was just dropped.
668
 */
669
Drupal.tableDrag.prototype.updateFields = function (changedRow) {
670
  for (var group in this.tableSettings) {
671
    // Each group may have a different setting for relationship, so we find
672
    // the source rows for each separately.
673
    this.updateField(changedRow, group);
674
  }
675
};
676

    
677
/**
678
 * After the row is dropped, update a single table field according to specific
679
 * settings.
680
 *
681
 * @param changedRow
682
 *   DOM object for the row that was just dropped.
683
 * @param group
684
 *   The settings group on which field updates will occur.
685
 */
686
Drupal.tableDrag.prototype.updateField = function (changedRow, group) {
687
  var rowSettings = this.rowSettings(group, changedRow);
688

    
689
  // Set the row as its own target.
690
  if (rowSettings.relationship == 'self' || rowSettings.relationship == 'group') {
691
    var sourceRow = changedRow;
692
  }
693
  // Siblings are easy, check previous and next rows.
694
  else if (rowSettings.relationship == 'sibling') {
695
    var previousRow = $(changedRow).prev('tr').get(0);
696
    var nextRow = $(changedRow).next('tr').get(0);
697
    var sourceRow = changedRow;
698
    if ($(previousRow).is('.draggable') && $('.' + group, previousRow).length) {
699
      if (this.indentEnabled) {
700
        if ($('.indentations', previousRow).length == $('.indentations', changedRow)) {
701
          sourceRow = previousRow;
702
        }
703
      }
704
      else {
705
        sourceRow = previousRow;
706
      }
707
    }
708
    else if ($(nextRow).is('.draggable') && $('.' + group, nextRow).length) {
709
      if (this.indentEnabled) {
710
        if ($('.indentations', nextRow).length == $('.indentations', changedRow)) {
711
          sourceRow = nextRow;
712
        }
713
      }
714
      else {
715
        sourceRow = nextRow;
716
      }
717
    }
718
  }
719
  // Parents, look up the tree until we find a field not in this group.
720
  // Go up as many parents as indentations in the changed row.
721
  else if (rowSettings.relationship == 'parent') {
722
    var previousRow = $(changedRow).prev('tr');
723
    while (previousRow.length && $('.indentation', previousRow).length >= this.rowObject.indents) {
724
      previousRow = previousRow.prev('tr');
725
    }
726
    // If we found a row.
727
    if (previousRow.length) {
728
      sourceRow = previousRow[0];
729
    }
730
    // Otherwise we went all the way to the left of the table without finding
731
    // a parent, meaning this item has been placed at the root level.
732
    else {
733
      // Use the first row in the table as source, because it's guaranteed to
734
      // be at the root level. Find the first item, then compare this row
735
      // against it as a sibling.
736
      sourceRow = $(this.table).find('tr.draggable:first').get(0);
737
      if (sourceRow == this.rowObject.element) {
738
        sourceRow = $(this.rowObject.group[this.rowObject.group.length - 1]).next('tr.draggable').get(0);
739
      }
740
      var useSibling = true;
741
    }
742
  }
743

    
744
  // Because we may have moved the row from one category to another,
745
  // take a look at our sibling and borrow its sources and targets.
746
  this.copyDragClasses(sourceRow, changedRow, group);
747
  rowSettings = this.rowSettings(group, changedRow);
748

    
749
  // In the case that we're looking for a parent, but the row is at the top
750
  // of the tree, copy our sibling's values.
751
  if (useSibling) {
752
    rowSettings.relationship = 'sibling';
753
    rowSettings.source = rowSettings.target;
754
  }
755

    
756
  var targetClass = '.' + rowSettings.target;
757
  var targetElement = $(targetClass, changedRow).get(0);
758

    
759
  // Check if a target element exists in this row.
760
  if (targetElement) {
761
    var sourceClass = '.' + rowSettings.source;
762
    var sourceElement = $(sourceClass, sourceRow).get(0);
763
    switch (rowSettings.action) {
764
      case 'depth':
765
        // Get the depth of the target row.
766
        targetElement.value = $('.indentation', $(sourceElement).closest('tr')).length;
767
        break;
768
      case 'match':
769
        // Update the value.
770
        targetElement.value = sourceElement.value;
771
        break;
772
      case 'order':
773
        var siblings = this.rowObject.findSiblings(rowSettings);
774
        if ($(targetElement).is('select')) {
775
          // Get a list of acceptable values.
776
          var values = [];
777
          $('option', targetElement).each(function () {
778
            values.push(this.value);
779
          });
780
          var maxVal = values[values.length - 1];
781
          // Populate the values in the siblings.
782
          $(targetClass, siblings).each(function () {
783
            // If there are more items than possible values, assign the maximum value to the row.
784
            if (values.length > 0) {
785
              this.value = values.shift();
786
            }
787
            else {
788
              this.value = maxVal;
789
            }
790
          });
791
        }
792
        else {
793
          // Assume a numeric input field.
794
          var weight = parseInt($(targetClass, siblings[0]).val(), 10) || 0;
795
          $(targetClass, siblings).each(function () {
796
            this.value = weight;
797
            weight++;
798
          });
799
        }
800
        break;
801
    }
802
  }
803
};
804

    
805
/**
806
 * Copy all special tableDrag classes from one row's form elements to a
807
 * different one, removing any special classes that the destination row
808
 * may have had.
809
 */
810
Drupal.tableDrag.prototype.copyDragClasses = function (sourceRow, targetRow, group) {
811
  var sourceElement = $('.' + group, sourceRow);
812
  var targetElement = $('.' + group, targetRow);
813
  if (sourceElement.length && targetElement.length) {
814
    targetElement[0].className = sourceElement[0].className;
815
  }
816
};
817

    
818
Drupal.tableDrag.prototype.checkScroll = function (cursorY) {
819
  var de  = document.documentElement;
820
  var b  = document.body;
821

    
822
  var windowHeight = this.windowHeight = window.innerHeight || (de.clientHeight && de.clientWidth != 0 ? de.clientHeight : b.offsetHeight);
823
  var scrollY = this.scrollY = (document.all ? (!de.scrollTop ? b.scrollTop : de.scrollTop) : (window.pageYOffset ? window.pageYOffset : window.scrollY));
824
  var trigger = this.scrollSettings.trigger;
825
  var delta = 0;
826

    
827
  // Return a scroll speed relative to the edge of the screen.
828
  if (cursorY - scrollY > windowHeight - trigger) {
829
    delta = trigger / (windowHeight + scrollY - cursorY);
830
    delta = (delta > 0 && delta < trigger) ? delta : trigger;
831
    return delta * this.scrollSettings.amount;
832
  }
833
  else if (cursorY - scrollY < trigger) {
834
    delta = trigger / (cursorY - scrollY);
835
    delta = (delta > 0 && delta < trigger) ? delta : trigger;
836
    return -delta * this.scrollSettings.amount;
837
  }
838
};
839

    
840
Drupal.tableDrag.prototype.setScroll = function (scrollAmount) {
841
  var self = this;
842

    
843
  this.scrollInterval = setInterval(function () {
844
    // Update the scroll values stored in the object.
845
    self.checkScroll(self.currentMouseCoords.y);
846
    var aboveTable = self.scrollY > self.table.topY;
847
    var belowTable = self.scrollY + self.windowHeight < self.table.bottomY;
848
    if (scrollAmount > 0 && belowTable || scrollAmount < 0 && aboveTable) {
849
      window.scrollBy(0, scrollAmount);
850
    }
851
  }, this.scrollSettings.interval);
852
};
853

    
854
Drupal.tableDrag.prototype.restripeTable = function () {
855
  // :even and :odd are reversed because jQuery counts from 0 and
856
  // we count from 1, so we're out of sync.
857
  // Match immediate children of the parent element to allow nesting.
858
  $('> tbody > tr.draggable:visible, > tr.draggable:visible', this.table)
859
    .removeClass('odd even')
860
    .filter(':odd').addClass('even').end()
861
    .filter(':even').addClass('odd');
862
};
863

    
864
/**
865
 * Stub function. Allows a custom handler when a row begins dragging.
866
 */
867
Drupal.tableDrag.prototype.onDrag = function () {
868
  return null;
869
};
870

    
871
/**
872
 * Stub function. Allows a custom handler when a row is dropped.
873
 */
874
Drupal.tableDrag.prototype.onDrop = function () {
875
  return null;
876
};
877

    
878
/**
879
 * Constructor to make a new object to manipulate a table row.
880
 *
881
 * @param tableRow
882
 *   The DOM element for the table row we will be manipulating.
883
 * @param method
884
 *   The method in which this row is being moved. Either 'keyboard' or 'mouse'.
885
 * @param indentEnabled
886
 *   Whether the containing table uses indentations. Used for optimizations.
887
 * @param maxDepth
888
 *   The maximum amount of indentations this row may contain.
889
 * @param addClasses
890
 *   Whether we want to add classes to this row to indicate child relationships.
891
 */
892
Drupal.tableDrag.prototype.row = function (tableRow, method, indentEnabled, maxDepth, addClasses) {
893
  this.element = tableRow;
894
  this.method = method;
895
  this.group = [tableRow];
896
  this.groupDepth = $('.indentation', tableRow).length;
897
  this.changed = false;
898
  this.table = $(tableRow).closest('table').get(0);
899
  this.indentEnabled = indentEnabled;
900
  this.maxDepth = maxDepth;
901
  this.direction = ''; // Direction the row is being moved.
902

    
903
  if (this.indentEnabled) {
904
    this.indents = $('.indentation', tableRow).length;
905
    this.children = this.findChildren(addClasses);
906
    this.group = $.merge(this.group, this.children);
907
    // Find the depth of this entire group.
908
    for (var n = 0; n < this.group.length; n++) {
909
      this.groupDepth = Math.max($('.indentation', this.group[n]).length, this.groupDepth);
910
    }
911
  }
912
};
913

    
914
/**
915
 * Find all children of rowObject by indentation.
916
 *
917
 * @param addClasses
918
 *   Whether we want to add classes to this row to indicate child relationships.
919
 */
920
Drupal.tableDrag.prototype.row.prototype.findChildren = function (addClasses) {
921
  var parentIndentation = this.indents;
922
  var currentRow = $(this.element, this.table).next('tr.draggable');
923
  var rows = [];
924
  var child = 0;
925
  while (currentRow.length) {
926
    var rowIndentation = $('.indentation', currentRow).length;
927
    // A greater indentation indicates this is a child.
928
    if (rowIndentation > parentIndentation) {
929
      child++;
930
      rows.push(currentRow[0]);
931
      if (addClasses) {
932
        $('.indentation', currentRow).each(function (indentNum) {
933
          if (child == 1 && (indentNum == parentIndentation)) {
934
            $(this).addClass('tree-child-first');
935
          }
936
          if (indentNum == parentIndentation) {
937
            $(this).addClass('tree-child');
938
          }
939
          else if (indentNum > parentIndentation) {
940
            $(this).addClass('tree-child-horizontal');
941
          }
942
        });
943
      }
944
    }
945
    else {
946
      break;
947
    }
948
    currentRow = currentRow.next('tr.draggable');
949
  }
950
  if (addClasses && rows.length) {
951
    $('.indentation:nth-child(' + (parentIndentation + 1) + ')', rows[rows.length - 1]).addClass('tree-child-last');
952
  }
953
  return rows;
954
};
955

    
956
/**
957
 * Ensure that two rows are allowed to be swapped.
958
 *
959
 * @param row
960
 *   DOM object for the row being considered for swapping.
961
 */
962
Drupal.tableDrag.prototype.row.prototype.isValidSwap = function (row) {
963
  if (this.indentEnabled) {
964
    var prevRow, nextRow;
965
    if (this.direction == 'down') {
966
      prevRow = row;
967
      nextRow = $(row).next('tr').get(0);
968
    }
969
    else {
970
      prevRow = $(row).prev('tr').get(0);
971
      nextRow = row;
972
    }
973
    this.interval = this.validIndentInterval(prevRow, nextRow);
974

    
975
    // We have an invalid swap if the valid indentations interval is empty.
976
    if (this.interval.min > this.interval.max) {
977
      return false;
978
    }
979
  }
980

    
981
  // Do not let an un-draggable first row have anything put before it.
982
  if (this.table.tBodies[0].rows[0] == row && $(row).is(':not(.draggable)')) {
983
    return false;
984
  }
985

    
986
  return true;
987
};
988

    
989
/**
990
 * Perform the swap between two rows.
991
 *
992
 * @param position
993
 *   Whether the swap will occur 'before' or 'after' the given row.
994
 * @param row
995
 *   DOM element what will be swapped with the row group.
996
 */
997
Drupal.tableDrag.prototype.row.prototype.swap = function (position, row) {
998
  Drupal.detachBehaviors(this.group, Drupal.settings, 'move');
999
  $(row)[position](this.group);
1000
  Drupal.attachBehaviors(this.group, Drupal.settings);
1001
  this.changed = true;
1002
  this.onSwap(row);
1003
};
1004

    
1005
/**
1006
 * Determine the valid indentations interval for the row at a given position
1007
 * in the table.
1008
 *
1009
 * @param prevRow
1010
 *   DOM object for the row before the tested position
1011
 *   (or null for first position in the table).
1012
 * @param nextRow
1013
 *   DOM object for the row after the tested position
1014
 *   (or null for last position in the table).
1015
 */
1016
Drupal.tableDrag.prototype.row.prototype.validIndentInterval = function (prevRow, nextRow) {
1017
  var minIndent, maxIndent;
1018

    
1019
  // Minimum indentation:
1020
  // Do not orphan the next row.
1021
  minIndent = nextRow ? $('.indentation', nextRow).length : 0;
1022

    
1023
  // Maximum indentation:
1024
  if (!prevRow || $(prevRow).is(':not(.draggable)') || $(this.element).is('.tabledrag-root')) {
1025
    // Do not indent:
1026
    // - the first row in the table,
1027
    // - rows dragged below a non-draggable row,
1028
    // - 'root' rows.
1029
    maxIndent = 0;
1030
  }
1031
  else {
1032
    // Do not go deeper than as a child of the previous row.
1033
    maxIndent = $('.indentation', prevRow).length + ($(prevRow).is('.tabledrag-leaf') ? 0 : 1);
1034
    // Limit by the maximum allowed depth for the table.
1035
    if (this.maxDepth) {
1036
      maxIndent = Math.min(maxIndent, this.maxDepth - (this.groupDepth - this.indents));
1037
    }
1038
  }
1039

    
1040
  return { 'min': minIndent, 'max': maxIndent };
1041
};
1042

    
1043
/**
1044
 * Indent a row within the legal bounds of the table.
1045
 *
1046
 * @param indentDiff
1047
 *   The number of additional indentations proposed for the row (can be
1048
 *   positive or negative). This number will be adjusted to nearest valid
1049
 *   indentation level for the row.
1050
 */
1051
Drupal.tableDrag.prototype.row.prototype.indent = function (indentDiff) {
1052
  // Determine the valid indentations interval if not available yet.
1053
  if (!this.interval) {
1054
    var prevRow = $(this.element).prev('tr').get(0);
1055
    var nextRow = $(this.group).filter(':last').next('tr').get(0);
1056
    this.interval = this.validIndentInterval(prevRow, nextRow);
1057
  }
1058

    
1059
  // Adjust to the nearest valid indentation.
1060
  var indent = this.indents + indentDiff;
1061
  indent = Math.max(indent, this.interval.min);
1062
  indent = Math.min(indent, this.interval.max);
1063
  indentDiff = indent - this.indents;
1064

    
1065
  for (var n = 1; n <= Math.abs(indentDiff); n++) {
1066
    // Add or remove indentations.
1067
    if (indentDiff < 0) {
1068
      $('.indentation:first', this.group).remove();
1069
      this.indents--;
1070
    }
1071
    else {
1072
      $('td:first', this.group).prepend(Drupal.theme('tableDragIndentation'));
1073
      this.indents++;
1074
    }
1075
  }
1076
  if (indentDiff) {
1077
    // Update indentation for this row.
1078
    this.changed = true;
1079
    this.groupDepth += indentDiff;
1080
    this.onIndent();
1081
  }
1082

    
1083
  return indentDiff;
1084
};
1085

    
1086
/**
1087
 * Find all siblings for a row, either according to its subgroup or indentation.
1088
 * Note that the passed-in row is included in the list of siblings.
1089
 *
1090
 * @param settings
1091
 *   The field settings we're using to identify what constitutes a sibling.
1092
 */
1093
Drupal.tableDrag.prototype.row.prototype.findSiblings = function (rowSettings) {
1094
  var siblings = [];
1095
  var directions = ['prev', 'next'];
1096
  var rowIndentation = this.indents;
1097
  for (var d = 0; d < directions.length; d++) {
1098
    var checkRow = $(this.element)[directions[d]]();
1099
    while (checkRow.length) {
1100
      // Check that the sibling contains a similar target field.
1101
      if ($('.' + rowSettings.target, checkRow)) {
1102
        // Either add immediately if this is a flat table, or check to ensure
1103
        // that this row has the same level of indentation.
1104
        if (this.indentEnabled) {
1105
          var checkRowIndentation = $('.indentation', checkRow).length;
1106
        }
1107

    
1108
        if (!(this.indentEnabled) || (checkRowIndentation == rowIndentation)) {
1109
          siblings.push(checkRow[0]);
1110
        }
1111
        else if (checkRowIndentation < rowIndentation) {
1112
          // No need to keep looking for siblings when we get to a parent.
1113
          break;
1114
        }
1115
      }
1116
      else {
1117
        break;
1118
      }
1119
      checkRow = $(checkRow)[directions[d]]();
1120
    }
1121
    // Since siblings are added in reverse order for previous, reverse the
1122
    // completed list of previous siblings. Add the current row and continue.
1123
    if (directions[d] == 'prev') {
1124
      siblings.reverse();
1125
      siblings.push(this.element);
1126
    }
1127
  }
1128
  return siblings;
1129
};
1130

    
1131
/**
1132
 * Remove indentation helper classes from the current row group.
1133
 */
1134
Drupal.tableDrag.prototype.row.prototype.removeIndentClasses = function () {
1135
  for (var n in this.children) {
1136
    $('.indentation', this.children[n])
1137
      .removeClass('tree-child')
1138
      .removeClass('tree-child-first')
1139
      .removeClass('tree-child-last')
1140
      .removeClass('tree-child-horizontal');
1141
  }
1142
};
1143

    
1144
/**
1145
 * Add an asterisk or other marker to the changed row.
1146
 */
1147
Drupal.tableDrag.prototype.row.prototype.markChanged = function () {
1148
  var marker = Drupal.theme('tableDragChangedMarker');
1149
  var cell = $('td:first', this.element);
1150
  if ($('span.tabledrag-changed', cell).length == 0) {
1151
    cell.append(marker);
1152
  }
1153
};
1154

    
1155
/**
1156
 * Stub function. Allows a custom handler when a row is indented.
1157
 */
1158
Drupal.tableDrag.prototype.row.prototype.onIndent = function () {
1159
  return null;
1160
};
1161

    
1162
/**
1163
 * Stub function. Allows a custom handler when a row is swapped.
1164
 */
1165
Drupal.tableDrag.prototype.row.prototype.onSwap = function (swappedRow) {
1166
  return null;
1167
};
1168

    
1169
Drupal.theme.prototype.tableDragChangedMarker = function () {
1170
  return '<span class="warning tabledrag-changed">*</span>';
1171
};
1172

    
1173
Drupal.theme.prototype.tableDragIndentation = function () {
1174
  return '<div class="indentation">&nbsp;</div>';
1175
};
1176

    
1177
Drupal.theme.prototype.tableDragChangedWarning = function () {
1178
  return '<div class="tabledrag-changed-warning messages warning">' + Drupal.theme('tableDragChangedMarker') + ' ' + Drupal.t('Changes made in this table will not be saved until the form is submitted.') + '</div>';
1179
};
1180

    
1181
})(jQuery);