From ef6457e3e6a45d7477f7be1deeeed851201ccbd6 Mon Sep 17 00:00:00 2001 From: Nick Date: Thu, 12 Jan 2017 18:35:57 +0000 Subject: [PATCH] Create sliding-child.js I have never made a pull request on github before, so I plead ignorance if I am doing anything incorrectly. --- features/slidingChild/js/sliding-child.js | 109 ++++++++++++++++++++++ 1 file changed, 109 insertions(+) create mode 100644 features/slidingChild/js/sliding-child.js diff --git a/features/slidingChild/js/sliding-child.js b/features/slidingChild/js/sliding-child.js new file mode 100644 index 0000000..cad0464 --- /dev/null +++ b/features/slidingChild/js/sliding-child.js @@ -0,0 +1,109 @@ +/** + * @summary SlidingChild + * @description Show/Hide row child data plug-in + * @version 1.0.0 + * @file datatables-slidingchild.js + * @author datahandler (www.datahandler.uk) + * @copyright Copyright 2014 SpryMedia Ltd. + * + * License MIT - http://datatables.net/license/mit + */ +(function ($) { + var SlidingChild = function (dt, options) { + var opts = $.extend({}, SlidingChild.defaults, options); + + // bind to selector click + $(opts.selector).on('click', function () { + var $this = $(this); + var dtRow = $this.is('tr') ? $this : $this.closest('tr'); + + if (!dtRow.is('tr')) { return; } // throw error? + // check row belongs to this table? + + dtRow = dt.row(dtRow); + toggleChild(dtRow); + }); + + var toggleChild = function (dtRow) { + // if child already showing, close it. + if (dtRow.child.isShown()) { + closeChild(dtRow); + } + else { + // closes existing showing child, if any + if (opts.toggleChild) closeChild(dt.row('.shown')); + + showChildData(dtRow); + } + }; + // code borrowed from the resource at: https://datatables.net/blog/2014-10-02 + var closeChild = function (dtRow) { + if (dtRow) { + var showingRow = $(dtRow.node()); + $(opts.sliderSelector, dtRow.child()).slideUp(function () { + dtRow.child.remove(); + showingRow.removeClass('shown'); + $(dt.table().node()).trigger('rowClosed', [dtRow]); + }); + } + }; + + var showChildData = function (dtRow) { + if (opts.useRowData) { + showChildDataFromRow(dtRow); + } + else { + $.ajax({ + type: opts.ajax.requestType, + url: opts.ajax.requestUrl, + data: opts.ajax.requestData, + contentType: opts.ajax.contentType, + dataType: opts.ajax.dataType, + success: function (response) { + var data = response; + if (opts.dataCallback) { + data = opts.dataCallback(response); + } + showChild(dtRow, data); + }, + error: function (response) { showChild(dtRow, response); } + }); + } + }; + + var showChildDataFromRow = function(dtRow) { + if (!opts.dataCallback) { return; } // throw error? + var data = opts.dataCallback(dtRow.data()); + showChild(dtRow, data); + } + + var showChild = function(dtRow, data) { + var selectedRow = $(dtRow.node()); + dtRow.child(data).show(); + + $(opts.sliderSelector, dtRow.child()).slideDown(function () { + selectedRow.addClass('shown'); + + $(dt.table().node()).trigger('rowShown', [dtRow]); + }); + }; + }; + + SlidingChild.defaults = { + selector: "tr", + toggleChild: false, + useRowData: false, + ajax: { + requestType: "GET", + requestData: null, + requestUrl: null, + contentType: "application/json; charset=utf-8", + dataType: "json" + }, + dataCallback: null, + sliderSelector: 'div.slider' + }; + + $.fn.dataTable.SlidingChild = SlidingChild; + $.fn.DataTable.SlidingChild = SlidingChild; +}(jQuery));