Add the code of the extension
This commit is contained in:
parent
a6f46b0008
commit
74e81c8688
4
.gitattributes
vendored
Normal file
4
.gitattributes
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
.git* export-ignore
|
||||||
|
README* export-ignore
|
||||||
|
LICENSE* export-ignore
|
||||||
|
mk* export-ignore
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
*~
|
33
README.md
33
README.md
@ -1,3 +1,32 @@
|
|||||||
# tablepress-datatables-colrejigger
|
## tablepress-datatables-colrejigger
|
||||||
|
|
||||||
|
##### Abstract
|
||||||
|
|
||||||
|
allow columns of a Tablepress table to be reordered/resized on the fly in the front end
|
||||||
|
|
||||||
|
##### Description
|
||||||
|
|
||||||
|
This project is an extension to the TablePress plug-in (see https://tablepress.org/) for WordPress (https://wordpress.org/). It is not useful without the TablePress plug-in. This project is not part of TablePress, but designed to work with it and extend its capabilities.
|
||||||
|
|
||||||
|
Based on the ColReorder and ColResize (see https://github.com/smasala/ColResize) extensions for the DataTables JavaScript library (see https://datatables.net), the tablepress-datatables-colrejigger extension gives you the ability to allow columns of a TablePress table in your WordPress site to be reordered or resized by viewers of the table. This feature may be particularly useful when you want to present more information than can comfortably fit in your page's width and want to allow viewers to arrange it in the way most useful or readable for them.
|
||||||
|
|
||||||
|
##### Installation
|
||||||
|
|
||||||
|
Download a release from this site (as a zip file) and install and activate in your WordPress site like any other extension in zip format.
|
||||||
|
|
||||||
|
##### Usage
|
||||||
|
|
||||||
|
This extension operates by adding additional parameters to the [table id=NN /] shortcode. For a list of the provided parameters and their meanings, see the source file tablepress-datatables-colrejigger.php. But one quick example should show how simple this is:
|
||||||
|
|
||||||
|
`[table id=2 datatables_colreorder=true datatables_colresize_resizetable=true /]`
|
||||||
|
|
||||||
|
This will present table 2 in the default fashion, except that the page viewer will be able to reorder its columns (by dragging headers) and resize its columns (by dragging the boundaries between headers, indicated by the cursor changing shape). The table will change its total width to accommodate the new column sizes after a resize operation.
|
||||||
|
|
||||||
|
##### Included software
|
||||||
|
|
||||||
|
Note that DataTables ColReorder and DataTables ColResize are **not** part of this project, but are redistributed with it for convenience, under the respective license terms of each of those packages.
|
||||||
|
|
||||||
|
##### Building
|
||||||
|
|
||||||
|
To produce an installable zip file, change directories into a git clone of this repository, and simply execute the command in mkplugin.sh (for example, via `bash mkplugin.sh`). Note that currently you must update the version number in the mkplugin.sh command.
|
||||||
|
|
||||||
allow columns of a Tablepress table to be reordered/resized on the fly in the front end
|
|
1422
js/dataTables.colReorder.js
Normal file
1422
js/dataTables.colReorder.js
Normal file
File diff suppressed because it is too large
Load Diff
896
js/dataTables.colResize.js
Normal file
896
js/dataTables.colResize.js
Normal file
@ -0,0 +1,896 @@
|
|||||||
|
/**! ColResize 2.6.0
|
||||||
|
* ©2017 Steven Masala
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @summary ColResize
|
||||||
|
* @description Provide the ability to resize the columns in a DataTable
|
||||||
|
* @version 2.6.0
|
||||||
|
* @file dataTables.colResize.js
|
||||||
|
* @author Steven Masala <me@smasala.com>
|
||||||
|
* @copyright Copyright 2017 Steven Masala
|
||||||
|
*
|
||||||
|
* This source file is free software, available under the following license:
|
||||||
|
* MIT license - https://github.com/smasala/ColResize/blob/master/LICENSE
|
||||||
|
*
|
||||||
|
* This source file 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 license files for details.
|
||||||
|
*
|
||||||
|
* For details please refer to: http://www.datatables.net
|
||||||
|
*/
|
||||||
|
(function( factory ) {
|
||||||
|
if ( typeof define === "function" && define.amd ) {
|
||||||
|
// amd
|
||||||
|
define( ["jquery", "datatables.net"], function($) {
|
||||||
|
return factory($, window, document);
|
||||||
|
});
|
||||||
|
} else if (typeof exports === "object") {
|
||||||
|
// CommonJs
|
||||||
|
module.exports = function( root, $ ) {
|
||||||
|
if ( !root ) {
|
||||||
|
root = window;
|
||||||
|
}
|
||||||
|
if ( !$ || !$.fn.dataTable ) {
|
||||||
|
$ = require( "datatables.net" )( root, $ ).$;
|
||||||
|
}
|
||||||
|
return factory( $, root, root.document );
|
||||||
|
};
|
||||||
|
} else {
|
||||||
|
factory(jQuery, window, document);
|
||||||
|
}
|
||||||
|
} (function( $, window, document ) {
|
||||||
|
"use strict";
|
||||||
|
var DataTable = $.fn.dataTable;
|
||||||
|
|
||||||
|
// Sanity check that we are using DataTables 1.10 or newer
|
||||||
|
if ( ! DataTable.versionCheck || ! DataTable.versionCheck( '1.10.15' ) ) {
|
||||||
|
throw 'DataTables ColResize requires DataTables 1.10.15 or newer';
|
||||||
|
}
|
||||||
|
|
||||||
|
var ColResize = function( dt, userOptions) {
|
||||||
|
var dtInstance = new DataTable.Api( dt ),
|
||||||
|
settings = dtInstance.settings()[0];
|
||||||
|
|
||||||
|
if (settings.colResize) {
|
||||||
|
// already exists on this instance
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.options = $.extend(true, {}, this._defaults, userOptions);
|
||||||
|
this.init(dtInstance);
|
||||||
|
settings.colResize = this;
|
||||||
|
};
|
||||||
|
|
||||||
|
$.extend( ColResize.prototype, {
|
||||||
|
/**
|
||||||
|
* Extension version number
|
||||||
|
* @static
|
||||||
|
* @property version
|
||||||
|
* @type {string} semVer
|
||||||
|
*/
|
||||||
|
version: "2.6.0",
|
||||||
|
/**
|
||||||
|
* Default options for extension
|
||||||
|
* @property _defaults
|
||||||
|
* @type {object}
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_defaults: {
|
||||||
|
/**
|
||||||
|
* Determines the minimum width size a column is allowed to be
|
||||||
|
* @property minColumnWidth
|
||||||
|
* @public
|
||||||
|
* @type {integer}
|
||||||
|
* @default 20
|
||||||
|
*/
|
||||||
|
minColumnWidth: 20,
|
||||||
|
/**
|
||||||
|
* Height of the table body
|
||||||
|
* @property scrollY
|
||||||
|
* @public
|
||||||
|
* @type {integer|string|false}
|
||||||
|
* @default false
|
||||||
|
*/
|
||||||
|
scrollY: false,
|
||||||
|
/**
|
||||||
|
* Resizes the table instead of shrinking the next column
|
||||||
|
* when a specific column is resized
|
||||||
|
* @property resizeTable
|
||||||
|
* @public
|
||||||
|
* @type {boolean}
|
||||||
|
* @default false
|
||||||
|
*/
|
||||||
|
resizeTable: false
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Created during extension init
|
||||||
|
* {} <= defaults <= userOptions
|
||||||
|
* @property options
|
||||||
|
* @type {object}
|
||||||
|
* @public
|
||||||
|
* @default {null}
|
||||||
|
*/
|
||||||
|
options: null,
|
||||||
|
/**
|
||||||
|
* Wrapper which is created around the <table>
|
||||||
|
* @property _wrapper
|
||||||
|
* @private
|
||||||
|
* @type {jQuery}
|
||||||
|
* @default null
|
||||||
|
*/
|
||||||
|
_wrapper: null,
|
||||||
|
/**
|
||||||
|
* Current jquery table element
|
||||||
|
* @property _table
|
||||||
|
* @type {jQuery}
|
||||||
|
* @private
|
||||||
|
* @default {null}
|
||||||
|
*/
|
||||||
|
_table: null,
|
||||||
|
/**
|
||||||
|
* Current jquery table body element
|
||||||
|
* @property _tableBody
|
||||||
|
* @type {jQuery}
|
||||||
|
* @private
|
||||||
|
* @default {null}
|
||||||
|
*/
|
||||||
|
_tableBody: null,
|
||||||
|
/**
|
||||||
|
* Current jquery "th" elements
|
||||||
|
* @property _tableHeaders
|
||||||
|
* @type {jQuery}
|
||||||
|
* @private
|
||||||
|
* @default null
|
||||||
|
*/
|
||||||
|
_tableHeaders: null,
|
||||||
|
/**
|
||||||
|
* Datatables instance
|
||||||
|
* @property _dtInstance
|
||||||
|
* @type {DataTables.Api}
|
||||||
|
* @private
|
||||||
|
* @default {null}
|
||||||
|
*/
|
||||||
|
_dtInstance: null,
|
||||||
|
/**
|
||||||
|
* Is column currently being dragged?
|
||||||
|
* internal flag
|
||||||
|
* @property _isDragging
|
||||||
|
* @type {boolean}
|
||||||
|
* @private
|
||||||
|
* @default {false}
|
||||||
|
*/
|
||||||
|
_isDragging: false,
|
||||||
|
/**
|
||||||
|
* Element cache variable.
|
||||||
|
* @property _container
|
||||||
|
* @type {jQuery}
|
||||||
|
* @private
|
||||||
|
* @default null
|
||||||
|
*/
|
||||||
|
_container: null,
|
||||||
|
/**
|
||||||
|
* Scroller Wrapper div used to show y scroll bar
|
||||||
|
* @property _scrollWrapper
|
||||||
|
* @type {jQuery}
|
||||||
|
* @private
|
||||||
|
* @default null
|
||||||
|
*/
|
||||||
|
_scrollWrapper: null,
|
||||||
|
/**
|
||||||
|
* Mimics the tbody height
|
||||||
|
* @property _scrollContent
|
||||||
|
* @type {jQuery}
|
||||||
|
* @private
|
||||||
|
* @default null
|
||||||
|
*/
|
||||||
|
_scrollContent: null,
|
||||||
|
/**
|
||||||
|
* Array of all generated draggable columns.
|
||||||
|
* @property _columns
|
||||||
|
* @type {jQuery[]}
|
||||||
|
* @private
|
||||||
|
* @default null
|
||||||
|
*/
|
||||||
|
_columns: null,
|
||||||
|
/**
|
||||||
|
* Array of index numbers of the columns which have been updated
|
||||||
|
* this is an internal cache which is used to only update the widths
|
||||||
|
* of the <td> element in columns that were changed by the user,
|
||||||
|
* for example on page change.
|
||||||
|
* @property _updatedColumns
|
||||||
|
* @type {interger[]}
|
||||||
|
* @private
|
||||||
|
* @default []
|
||||||
|
*/
|
||||||
|
_updatedColumns: [],
|
||||||
|
/**
|
||||||
|
* Events cache object to store registered events and listeners
|
||||||
|
* @example
|
||||||
|
* {
|
||||||
|
* "click": [ [$el1, callbackFunction], [$el2, callbackFunction2] ]
|
||||||
|
* }
|
||||||
|
* @private
|
||||||
|
* @property _events
|
||||||
|
* @type {object}
|
||||||
|
* @default
|
||||||
|
*/
|
||||||
|
_events: {},
|
||||||
|
/**
|
||||||
|
* Interval value used to check if the table height has changed.
|
||||||
|
* @property _tableHeight
|
||||||
|
* @type {integer}
|
||||||
|
* @private
|
||||||
|
* @default 0
|
||||||
|
*/
|
||||||
|
_tableHeight: 0,
|
||||||
|
/**
|
||||||
|
* css class for container which the table is wrapped in.
|
||||||
|
* @private
|
||||||
|
* @property CLASS_TABLE_WRAPPER
|
||||||
|
* @type {string}
|
||||||
|
* @private
|
||||||
|
* @default "dt-colresizable-table-wrapper"
|
||||||
|
*/
|
||||||
|
CLASS_TABLE_WRAPPER: "dt-colresizable-table-wrapper",
|
||||||
|
/**
|
||||||
|
* css class for draggable container
|
||||||
|
* @private
|
||||||
|
* @property CLASS_WRAPPER
|
||||||
|
* @type {string}
|
||||||
|
* @private
|
||||||
|
* @default "dt-colresizable"
|
||||||
|
*/
|
||||||
|
CLASS_WRAPPER: "dt-colresizable",
|
||||||
|
/**
|
||||||
|
* css class for draggable column
|
||||||
|
* @private
|
||||||
|
* @property CLASS_COLUMN
|
||||||
|
* @type {string}
|
||||||
|
* @private
|
||||||
|
* @default "dt-colresizable-col"
|
||||||
|
*/
|
||||||
|
CLASS_COLUMN: "dt-colresizable-col",
|
||||||
|
/**
|
||||||
|
* css class for css conditional scroller identifier
|
||||||
|
* @private
|
||||||
|
* @property CLASS_SCROLLER_HASWRAPPER
|
||||||
|
* @type {string}
|
||||||
|
* @private
|
||||||
|
* @default "dt-colresizable-with-scroller"
|
||||||
|
*/
|
||||||
|
CLASS_SCROLLER_HASWRAPPER: "dt-colresizable-with-scroller",
|
||||||
|
/**
|
||||||
|
* css class for scroller wrapper div
|
||||||
|
* @private
|
||||||
|
* @property CLASS_SCROLLER_WRAPPER
|
||||||
|
* @type {string}
|
||||||
|
* @private
|
||||||
|
* @default "dt-colresizable-scroller-wrapper"
|
||||||
|
*/
|
||||||
|
CLASS_SCROLLER_WRAPPER: "dt-colresizable-scroller-wrapper",
|
||||||
|
/**
|
||||||
|
* css class for scroller content mimic div
|
||||||
|
* @private
|
||||||
|
* @property CLASS_SCROLLER_CONTENT_WRAPPER
|
||||||
|
* @type {string}
|
||||||
|
* @private
|
||||||
|
* @default "dt-colresizable-scroller-content-wrapper"
|
||||||
|
*/
|
||||||
|
CLASS_SCROLLER_CONTENT_WRAPPER: "dt-colresizable-scroller-content-wrapper",
|
||||||
|
/**
|
||||||
|
* data tag name to save the column width <th>
|
||||||
|
* saved on the draggable col <div>
|
||||||
|
* @private
|
||||||
|
* @property DATA_TAG_WIDTH
|
||||||
|
* @type {string}
|
||||||
|
* @private
|
||||||
|
* @default "dt-colresizable-width"
|
||||||
|
*/
|
||||||
|
DATA_TAG_WIDTH: "dt-colresizable-width",
|
||||||
|
/**
|
||||||
|
* data tag name to save the column item <th>
|
||||||
|
* saved on the draggable col <div>
|
||||||
|
* @private
|
||||||
|
* @property DATA_TAG_ITEM
|
||||||
|
* @type {string}
|
||||||
|
* @private
|
||||||
|
* @default "dt-colresizable-item"
|
||||||
|
*/
|
||||||
|
DATA_TAG_ITEM: "dt-colresizable-item",
|
||||||
|
/**
|
||||||
|
* data tag name to save the previous draggable column
|
||||||
|
* element
|
||||||
|
* @private
|
||||||
|
* @property DATA_TAG_PREV_COL
|
||||||
|
* @type {string}
|
||||||
|
* @private
|
||||||
|
* @default "dt-prev-col-item"
|
||||||
|
*/
|
||||||
|
DATA_TAG_PREV_COL: "dt-prev-col-item",
|
||||||
|
/**
|
||||||
|
* @method init
|
||||||
|
* @param {object} dtInstance
|
||||||
|
*/
|
||||||
|
init: function(dtInstance) {
|
||||||
|
var that = this;
|
||||||
|
that._dtInstance = dtInstance;
|
||||||
|
that._table = $(that._dtInstance.table().node());
|
||||||
|
that._tableBody = that._table.find("tbody");
|
||||||
|
that._tableHeaders = that._table.find("thead > tr:first-child > th");
|
||||||
|
that._addEvent(that._table, "stateSaveParams.dt", function(_event, _settings, data) {
|
||||||
|
that._storeWidthData(data);
|
||||||
|
});
|
||||||
|
that.buildDom();
|
||||||
|
that._addEvent(that._table, "destroy.dt", function() {
|
||||||
|
that.destroy();
|
||||||
|
}, true);
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Builds the draggable components together and places
|
||||||
|
* them in the DOM (above the actual table)
|
||||||
|
* @method buildDom
|
||||||
|
* @returns null
|
||||||
|
*/
|
||||||
|
buildDom: function() {
|
||||||
|
var that = this,
|
||||||
|
redraw = !!(that._wrapper),
|
||||||
|
defaultWidths;
|
||||||
|
// wrap the table so that the overflow can be controlled when
|
||||||
|
// resizing a big table on a small screen
|
||||||
|
if (!redraw) {
|
||||||
|
// wrapper check is needed for "redraw()", since this is left over and
|
||||||
|
// the table shouldn't be "re-wrapped"
|
||||||
|
that._table.wrap("<div class='" + that.CLASS_TABLE_WRAPPER + "'></div>");
|
||||||
|
that._wrapper = that._table.parent();
|
||||||
|
}
|
||||||
|
|
||||||
|
// build the column resize container and draggable bars
|
||||||
|
that._container = $("<div class='" + that.CLASS_WRAPPER + "'></div>");
|
||||||
|
|
||||||
|
if (!redraw && that.options.scrollY) {
|
||||||
|
that.initScroller();
|
||||||
|
}
|
||||||
|
//get any default widths from the store
|
||||||
|
defaultWidths = that.getStoreWidths();
|
||||||
|
// set the table dimensions correctly
|
||||||
|
that.calcTableDimensions(defaultWidths);
|
||||||
|
// build and insert columns into container
|
||||||
|
that._container.append(that.buildColDoms());
|
||||||
|
// resave the state, they get lost the second time.
|
||||||
|
if (defaultWidths && defaultWidths.length) {
|
||||||
|
that._dtInstance.state.save();
|
||||||
|
}
|
||||||
|
// cache jQuery columns
|
||||||
|
that._columns = $("." + that.CLASS_COLUMN, that._container);
|
||||||
|
that._table.before(that._container);
|
||||||
|
that.checkTableHeight();
|
||||||
|
that.initEvents();
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Get all the widths for columns out of the datatable storage when state saving is enabled
|
||||||
|
* @returns {Array<number>|null}
|
||||||
|
*/
|
||||||
|
getStoreWidths: function() {
|
||||||
|
var that = this,
|
||||||
|
state = that._dtInstance.state.loaded();
|
||||||
|
if (state && state.colResize && state.colResize.widths) {
|
||||||
|
return state.colResize.widths;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Register all events needed on ColResize init
|
||||||
|
* @method initEvents
|
||||||
|
* @returns null
|
||||||
|
*/
|
||||||
|
initEvents: function() {
|
||||||
|
var that = this;
|
||||||
|
that._addEvent(that._table, "draw.dt", function() {
|
||||||
|
// set timeout so that table dom manipulation can be done first
|
||||||
|
setTimeout(function() {
|
||||||
|
that.checkTableHeight();
|
||||||
|
}, 0);
|
||||||
|
});
|
||||||
|
that._addEvent(that._dtInstance, "column-reorder", function() {
|
||||||
|
that.redraw();
|
||||||
|
}, true);
|
||||||
|
that._addEvent(that._table, "column-visibility.dt", function() {
|
||||||
|
that.redraw();
|
||||||
|
}, true);
|
||||||
|
if (that.options.scrollY) {
|
||||||
|
that._addEvent(that._wrapper, "scroll", function() {
|
||||||
|
that._scrollWrapper.css("right", 0 - that._wrapper.scrollLeft());
|
||||||
|
});
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Initialises the table width and height
|
||||||
|
* @method calcTableDimensions
|
||||||
|
* @param widths {Array<number>|null} [default=null] if passed then sets the
|
||||||
|
* default width state of the columns
|
||||||
|
* @returns null
|
||||||
|
*/
|
||||||
|
calcTableDimensions: function(widths) {
|
||||||
|
var that = this,
|
||||||
|
$th,
|
||||||
|
thWidth = 0,
|
||||||
|
$ths = that._tableHeaders, // get all table headers
|
||||||
|
totalWidth = 0;
|
||||||
|
for (var i = 0, l = $ths.length; i < l; i++) {
|
||||||
|
$th = $ths.eq(i); // get individual <th>
|
||||||
|
thWidth = widths ? widths[i] : that._getWidth($th); // get <th> current/correct width
|
||||||
|
$th.css("width", thWidth);
|
||||||
|
totalWidth += thWidth;
|
||||||
|
}
|
||||||
|
// set the table width correctly
|
||||||
|
that._table.css("width", totalWidth);
|
||||||
|
// and it's container
|
||||||
|
if (that.options.scrollY) {
|
||||||
|
totalWidth = totalWidth + 20;
|
||||||
|
}
|
||||||
|
that._container.width(totalWidth);
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Creates the draggable columns, add the necessary drag events
|
||||||
|
* @method buildColDoms
|
||||||
|
* @return jQuery[] actual draggable columns as jquery objects
|
||||||
|
*/
|
||||||
|
buildColDoms: function() {
|
||||||
|
// replicate table header widths
|
||||||
|
var that = this,
|
||||||
|
$ths = that._tableHeaders, // get all table headers
|
||||||
|
$th,
|
||||||
|
$cols = [],
|
||||||
|
$col,
|
||||||
|
thWidth = 0;
|
||||||
|
|
||||||
|
for (var i = 0, l = $ths.length; i < l; i++) {
|
||||||
|
$th = $ths.eq(i); // get individual <th>
|
||||||
|
thWidth = $th.outerWidth(); // get <th> current width
|
||||||
|
$col = $("<div class='" + that.CLASS_COLUMN + "'></div>"); // create drag column item <div>
|
||||||
|
// place the drag column at the end of the <th> and as tall as the table itself
|
||||||
|
$col.css({
|
||||||
|
left: Math.ceil($th.position().left + thWidth)
|
||||||
|
});
|
||||||
|
// save the prev col item for speed rather than using the .prev() function
|
||||||
|
$col.data(that.DATA_TAG_PREV_COL, $cols[ i - 1 ]);
|
||||||
|
// save the current width
|
||||||
|
$col.data(that.DATA_TAG_WIDTH, thWidth);
|
||||||
|
// save the <th> element reference for easy access later
|
||||||
|
$col.data(that.DATA_TAG_ITEM, $th);
|
||||||
|
// register necessary events
|
||||||
|
that.registerEvents($col);
|
||||||
|
// push created drag column element in array
|
||||||
|
$cols.push($col);
|
||||||
|
}
|
||||||
|
return $cols;
|
||||||
|
},
|
||||||
|
|
||||||
|
_storeWidthData: function(data) {
|
||||||
|
var that = this,
|
||||||
|
$ths = that._tableHeaders,
|
||||||
|
$th,
|
||||||
|
widths = [];
|
||||||
|
for (var i = 0, l = $ths.length; i < l; i++) {
|
||||||
|
$th = $ths.eq(i); // get individual <th>
|
||||||
|
widths.push(that._getWidth($th)); // get <th> current/correct width
|
||||||
|
}
|
||||||
|
data.colResize = {
|
||||||
|
widths: widths
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Get the current or correct th element width.
|
||||||
|
* If the th element has an inline width set "style='width: 100px'" then this
|
||||||
|
* the return value. If it doesn't, then the calculated "outerWidth()" is returned.
|
||||||
|
*
|
||||||
|
* minColumnWidth value always wins if greater than the calculated width.
|
||||||
|
* @method _getWidth
|
||||||
|
* @param $th {jQuery} th jquery element
|
||||||
|
* @returns {integer|float}
|
||||||
|
*/
|
||||||
|
_getWidth: function($th) {
|
||||||
|
var that = this,
|
||||||
|
width;
|
||||||
|
if (typeof $th[0].style.width === "string" && $th[0].style.width.indexOf("px") >= 1) {
|
||||||
|
width = parseFloat($th[0].style.width);
|
||||||
|
} else {
|
||||||
|
width = $th.outerWidth();
|
||||||
|
}
|
||||||
|
return width < that.options.minColumnWidth ? that.options.minColumnWidth : width;
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Registers the required drag events on the specified column.
|
||||||
|
* @method registerEvents
|
||||||
|
* @param $col {jQuery}
|
||||||
|
* @returns {null}
|
||||||
|
*/
|
||||||
|
registerEvents: function($col) {
|
||||||
|
var that = this;
|
||||||
|
$col.mousedown(that.onMouseDown());
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Returns the mousedown event function to be used by jQuery.mousedown()
|
||||||
|
* @method onMouseDown
|
||||||
|
* @returns {function}
|
||||||
|
*/
|
||||||
|
onMouseDown: function() {
|
||||||
|
var that = this;
|
||||||
|
return function() {
|
||||||
|
var $col = $(this),
|
||||||
|
mouseMoveFunc = function(event) {
|
||||||
|
that.onMouseMove(event, $col);
|
||||||
|
};
|
||||||
|
that._isDragging = true;
|
||||||
|
// check if the use has "let go of dragging"
|
||||||
|
// mouse up
|
||||||
|
$(document).one("mouseup", function() {
|
||||||
|
// no longer dragging the column
|
||||||
|
that._isDragging = false;
|
||||||
|
// remove the drag (mousemove) event listener
|
||||||
|
$(document).off("mousemove", mouseMoveFunc);
|
||||||
|
$(that._table).trigger($.Event( "column-resized.dt" ), [$col.index(), $col.data(that.DATA_TAG_ITEM).outerWidth()] );
|
||||||
|
that._dtInstance.state.save();
|
||||||
|
}).on("mousemove", mouseMoveFunc); //on mousemove
|
||||||
|
return false; // stop text highlighting
|
||||||
|
};
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Used by jQuery.mousemove to determine the new column widths when a drag action is undertaken
|
||||||
|
* @method onMouseMove
|
||||||
|
* @param {MouseEvent} event
|
||||||
|
* @param {jQuery} $col
|
||||||
|
* @returns {null}
|
||||||
|
*/
|
||||||
|
onMouseMove: function(event, $col) {
|
||||||
|
var that = this,
|
||||||
|
diff = 0,
|
||||||
|
$nextCol,
|
||||||
|
posPlusDiff;
|
||||||
|
if (that._isDragging) {
|
||||||
|
// caculate the difference between where the mouse has moved to
|
||||||
|
// and the left position of the column that is being dragged
|
||||||
|
diff = Math.ceil(event.clientX - $col.offset().left);
|
||||||
|
$nextCol = $col.next();
|
||||||
|
posPlusDiff = Math.ceil($col.position().left + diff);
|
||||||
|
if ($nextCol.length) {
|
||||||
|
// check whether neighbouring is still bigger than 10px if a resize
|
||||||
|
// takes place.
|
||||||
|
if (posPlusDiff < ($nextCol.position().left - that.options.minColumnWidth)) {
|
||||||
|
if (that.updateColumn($col, diff)) {
|
||||||
|
if (!that.options.resizeTable) {
|
||||||
|
// col was resized so resize the neighbouring col too.
|
||||||
|
that.updateColumn($nextCol, diff < 0 ? Math.abs(diff) : -Math.abs(diff), true);
|
||||||
|
} else {
|
||||||
|
that._recalcPositions();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// if we are expanding the last column
|
||||||
|
// or when shrinking: don't allow it to shrink smaller than the minColumnWidth
|
||||||
|
if(diff > 0 || (posPlusDiff > $col.prev().position().left + that.options.minColumnWidth) ) {
|
||||||
|
if(that.updateColumn($col, diff)) {
|
||||||
|
// very last col drag bar is being dragged here (expanded)
|
||||||
|
that.updateTableOnLastColumnMove($col, diff);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
that.checkTableHeight();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
updateTableOnLastColumnMove: function($col, diff) {
|
||||||
|
var that = this;
|
||||||
|
// update the table width with the next size to prevent the other columns
|
||||||
|
// going crazy
|
||||||
|
$col.css({
|
||||||
|
left: Math.ceil($col.position().left + diff)
|
||||||
|
});
|
||||||
|
that.calcTableDimensions();
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Update the column width by a given number
|
||||||
|
* @method updateColumn
|
||||||
|
* @param {jQuery} $col - column that needs a size adjustment
|
||||||
|
* @param {integer} by - width to change the column size by
|
||||||
|
* @param {boolean} nextColumn [default=false] - set to true if the column being resized is not the original but
|
||||||
|
* it's sibling.
|
||||||
|
* @return {boolean} {true} if resize was possible, {false} if not;
|
||||||
|
*/
|
||||||
|
updateColumn: function($col, by, nextColumn) {
|
||||||
|
var that = this,
|
||||||
|
// calculate the new width of the column
|
||||||
|
newWidth = Math.ceil(by + $col.data(that.DATA_TAG_WIDTH));
|
||||||
|
//only resize to a min of 10px
|
||||||
|
if (newWidth > that.options.minColumnWidth) {
|
||||||
|
// get the actual <th> column of the table and set the new width
|
||||||
|
$col.data(that.DATA_TAG_ITEM).css({
|
||||||
|
width: newWidth
|
||||||
|
});
|
||||||
|
// save the new width for the next mouse drag call
|
||||||
|
$col.data(that.DATA_TAG_WIDTH, newWidth);
|
||||||
|
if(nextColumn) {
|
||||||
|
// set the new let position of the dragged column (div)
|
||||||
|
$col.data(that.DATA_TAG_PREV_COL).css({
|
||||||
|
left: Math.ceil($col.data(that.DATA_TAG_ITEM).position().left)
|
||||||
|
});
|
||||||
|
}
|
||||||
|
if (that.options.scrollY) {
|
||||||
|
that.updateCells($col.index(), newWidth);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Repositions all draggable columns and recalculates
|
||||||
|
* all table dimensions
|
||||||
|
* @method _recalcPositions
|
||||||
|
* @returns null
|
||||||
|
*/
|
||||||
|
_recalcPositions: function() {
|
||||||
|
var that = this,
|
||||||
|
pos = that._table.position().left,
|
||||||
|
$th;
|
||||||
|
for (var i = 0, l = that._tableHeaders.length; i < l; i++) {
|
||||||
|
$th = that._tableHeaders.eq(i);
|
||||||
|
pos = pos + $th.outerWidth();
|
||||||
|
that._columns.eq(i).css("left", pos);
|
||||||
|
}
|
||||||
|
that.calcTableDimensions();
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Checks whether the height of the table has changed,
|
||||||
|
* if it has, then it set the draggable column items with
|
||||||
|
* the new height values.
|
||||||
|
* @method checkTableHeight
|
||||||
|
* @returns null
|
||||||
|
*/
|
||||||
|
checkTableHeight: function() {
|
||||||
|
var that = this,
|
||||||
|
topMarg = 0,
|
||||||
|
newHeight = that._table.outerHeight();
|
||||||
|
if (newHeight !== that._tableHeight) {
|
||||||
|
that._tableHeight = newHeight;
|
||||||
|
// convert the "px" value to just a number
|
||||||
|
topMarg = parseFloat(that._table.css("margin-top"));
|
||||||
|
// if the table is empty, then don't show the column bars inside the tbody
|
||||||
|
// as they overlap the empty text which has colspan across the table.
|
||||||
|
if (that._tableBody.find("td.dataTables_empty").length) {
|
||||||
|
newHeight = (newHeight - (newHeight - that._tableBody.position().top)) - topMarg ;
|
||||||
|
}
|
||||||
|
//set the the position and height of all the draggable columns
|
||||||
|
that._columns.css({
|
||||||
|
height: newHeight,
|
||||||
|
top: topMarg
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Initialise the vertical scrolling feature (scrollY)
|
||||||
|
* @method initScroller
|
||||||
|
* @returns null
|
||||||
|
*/
|
||||||
|
initScroller: function() {
|
||||||
|
var that = this;
|
||||||
|
// Build required DOM elements.
|
||||||
|
that.buildScrollerDom();
|
||||||
|
// register when a scroll is performed inside the wrapping div
|
||||||
|
// this then forces the tbody to scroll in-sync.
|
||||||
|
that._scrollWrapper.on("scroll", that.onScroll());
|
||||||
|
that._addEvent(that._table, "draw.dt", function() {
|
||||||
|
// set timeout so that table dom manipulation can be done first
|
||||||
|
setTimeout(function() {
|
||||||
|
that.syncRows();
|
||||||
|
that.syncHeight();
|
||||||
|
}, 0);
|
||||||
|
});
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Builds the required dom elements together for vertical scrolling
|
||||||
|
* @method buildScrollerDom
|
||||||
|
* @returns null
|
||||||
|
*/
|
||||||
|
buildScrollerDom: function() {
|
||||||
|
var that = this;
|
||||||
|
// add class to wrapper for better css conditional selection
|
||||||
|
that._wrapper.addClass(that.CLASS_SCROLLER_HASWRAPPER);
|
||||||
|
// scroll wrapper container - where the scroll-y bar appears
|
||||||
|
that._scrollWrapper = $("<div class='" + that.CLASS_SCROLLER_WRAPPER + "'></div>");
|
||||||
|
// move it over the tbody content
|
||||||
|
that._scrollWrapper.css("margin-top", that._tableBody.position().top);
|
||||||
|
// create an inner div to mimic the height of the tbody content
|
||||||
|
that._scrollContent = $("<div class='" + that.CLASS_SCROLLER_CONTENT_WRAPPER + "'></div>");
|
||||||
|
// shrink the wrapper to the defined height so that the scroll bar appears
|
||||||
|
that._scrollWrapper.height(that.options.scrollY);
|
||||||
|
// fix the content to the tbody original height
|
||||||
|
that._scrollContent.height(that._tableBody.height());
|
||||||
|
// resize the tbody to the desired height - same as the overlapping wrapper div
|
||||||
|
that._tableBody.height(that.options.scrollY);
|
||||||
|
|
||||||
|
// just wide enough to show the scrollbar
|
||||||
|
that._scrollWrapper.width(20);
|
||||||
|
|
||||||
|
// hide the overflowing (y) tbody content
|
||||||
|
that._tableBody.css("overflow-y", "hidden");
|
||||||
|
// add all the new scroll controlling divs
|
||||||
|
that._scrollWrapper.append(that._scrollContent);
|
||||||
|
that._wrapper.prepend(that._scrollWrapper);
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Event listener function for the scroll wrapper scrolling events
|
||||||
|
* @method onScroll
|
||||||
|
* @returns {function}
|
||||||
|
*/
|
||||||
|
onScroll: function() {
|
||||||
|
var that = this,
|
||||||
|
scrollWrapper = that._scrollWrapper;
|
||||||
|
return function() {
|
||||||
|
// scroll the tbody accordingly
|
||||||
|
// i.e. keep the tbody scroll in-sync with the scrolling wrapper
|
||||||
|
that._tableBody.scrollTop(scrollWrapper.scrollTop());
|
||||||
|
};
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Update the cells within this column to align with the header on column resize.
|
||||||
|
* @method updateCells
|
||||||
|
* @param {integer} index column index which was changed
|
||||||
|
* @param {interger} width the new width of the column in pixels
|
||||||
|
*/
|
||||||
|
updateCells: function(index, width) {
|
||||||
|
var that = this,
|
||||||
|
$trs = that._tableBody.find("tr");
|
||||||
|
for (var i = 0, l = $trs.length; i < l; i++) {
|
||||||
|
$trs.eq(i).find("td").eq(index).css("width", width);
|
||||||
|
}
|
||||||
|
if(that._updatedColumns.indexOf(index) < 0) {
|
||||||
|
that._updatedColumns.push(index);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* After a pagination DataTables draws the cells new,
|
||||||
|
* this function adjusts the cells back to the correct width
|
||||||
|
* in sync with the headers
|
||||||
|
* @method syncRows
|
||||||
|
* @returns null
|
||||||
|
*/
|
||||||
|
syncRows: function() {
|
||||||
|
var that = this,
|
||||||
|
$ths,
|
||||||
|
$trs,
|
||||||
|
index;
|
||||||
|
if (that._updatedColumns.length) {
|
||||||
|
$ths = that._table.find("thead th");
|
||||||
|
$trs = that._tableBody.find("tr");
|
||||||
|
for(var i = 0, l = $trs.length; i < l; i++) {
|
||||||
|
for(var ii = 0, ll = that._updatedColumns.length; ii < ll; ii++) {
|
||||||
|
index = that._updatedColumns[ii];
|
||||||
|
$trs.eq(i).find("td").eq(index).css("width", $ths.eq(index).css("width"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* After a draw (like page change), the content height might not be longer
|
||||||
|
* than the set scrollY value. Therefore the Y scroll bar might not be needed.
|
||||||
|
* Update the content height accordingly to show or hide the scroll bar.
|
||||||
|
* @method syncHeight
|
||||||
|
* @returns null
|
||||||
|
*/
|
||||||
|
syncHeight: function() {
|
||||||
|
var that = this,
|
||||||
|
// make the tbody full height (auto) again to get the new content height
|
||||||
|
height = that._tableBody.css("height", "auto").height();
|
||||||
|
// reset the tbody height back after calculation
|
||||||
|
that._tableBody.height(that.options.scrollY);
|
||||||
|
// adjust scroll content div to the new table height
|
||||||
|
// this is needed if the content of the next page for example doesn't fill the entire height
|
||||||
|
// but the scroll bar is still visible
|
||||||
|
that._scrollContent.height(height);
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @method destroy
|
||||||
|
* @returns null
|
||||||
|
*/
|
||||||
|
destroy: function() {
|
||||||
|
var that = this;
|
||||||
|
that._container.remove();
|
||||||
|
that._columns = [];
|
||||||
|
that._updatedColumns = [];
|
||||||
|
that._tableHeight = null;
|
||||||
|
// remove al the events that were registered using the _addEvent(...) method
|
||||||
|
for (var key in that._events) {
|
||||||
|
if (that._events.hasOwnProperty(key)) {
|
||||||
|
var arr = that._events[key];
|
||||||
|
for(var i = 0, l = arr.length; i<l; i++) {
|
||||||
|
arr[i][0].off(key, arr[i][1]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
that._events = {};
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* Use this to add events to DOM elements that are not removed by a this.redraw() or table.empty()
|
||||||
|
* or JS-GC, or even a DataTableInstance.destroy()
|
||||||
|
* The events that are registered using this method are then removed on destroy or redraw so that
|
||||||
|
* double events are not created.
|
||||||
|
* This method registers an "on" event by default
|
||||||
|
* @example
|
||||||
|
* this._addEvent($("table"), "draw.dt", function() {
|
||||||
|
* // do something
|
||||||
|
* });
|
||||||
|
* @method _addEvent
|
||||||
|
* @param $el {jQuery} element to register on
|
||||||
|
* @param eventName {string} name of the event to register to
|
||||||
|
* @param callback {function} callback function to call when the event is fired
|
||||||
|
* @param once {boolean} [default=false] if true, registeres "once" instead of "on" event listener
|
||||||
|
* @private
|
||||||
|
*/
|
||||||
|
_addEvent: function($el, eventName, callback, once) {
|
||||||
|
var that = this;
|
||||||
|
that._events[eventName] = that._events[eventName] || [];
|
||||||
|
that._events[eventName].push([$el, callback]);
|
||||||
|
var obj = that._events[eventName][that._events[eventName].length - 1];
|
||||||
|
obj[0][once ? "one" : "on"](eventName, obj[1]);
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* @method redraw
|
||||||
|
* @returns null
|
||||||
|
*/
|
||||||
|
redraw: function() {
|
||||||
|
var that = this;
|
||||||
|
that.destroy();
|
||||||
|
that.init(that._dtInstance);
|
||||||
|
},
|
||||||
|
/**
|
||||||
|
* To be called instead of standard "dtInstance.column(index).visible()"
|
||||||
|
* so that the table widths and draggable bar items can be redrawn.
|
||||||
|
* @method visibility
|
||||||
|
* @param index {integer} column index to change
|
||||||
|
* @param visibility {boolean} set the column to visible or not
|
||||||
|
* @returns null
|
||||||
|
*/
|
||||||
|
visibility: function(index, visibility, redrawCalc) {
|
||||||
|
var that = this,
|
||||||
|
width = $(that._dtInstance.settings()[0].aoColumns[index].nTh).outerWidth();
|
||||||
|
if (!visibility) {
|
||||||
|
that._table.css("width", that._table.width() - width);
|
||||||
|
} else {
|
||||||
|
that._table.css("width", that._table.width() + width);
|
||||||
|
}
|
||||||
|
that._dtInstance.column(index).visible(visibility, redrawCalc);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
$.fn.dataTable.ColResize = ColResize;
|
||||||
|
$.fn.DataTable.ColResize = ColResize;
|
||||||
|
|
||||||
|
$(document).on("init.dt.dtr", function(e, settings) {
|
||||||
|
if(e.namespace !== "dt") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
var init = settings.oInit.colResize,
|
||||||
|
defaults = DataTable.defaults.colResize;
|
||||||
|
if(init !== false) {
|
||||||
|
var opts = $.extend({}, init, defaults);
|
||||||
|
// next DOM tick to make sure that
|
||||||
|
// DT really is finished, everytime!
|
||||||
|
setTimeout(function() {
|
||||||
|
new ColResize(settings, opts);
|
||||||
|
}, 0);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// API augmentation
|
||||||
|
$.fn.dataTable.Api.register( "colResize.redraw()", function () {
|
||||||
|
this.context[0].colResize.redraw();
|
||||||
|
return this;
|
||||||
|
} );
|
||||||
|
|
||||||
|
$.fn.dataTable.Api.register( "colResize.visible()", function (index, visibility, redrawCalc) {
|
||||||
|
this.context[0].colResize.visibility(index, visibility, redrawCalc);
|
||||||
|
return this;
|
||||||
|
} );
|
||||||
|
|
||||||
|
return ColResize;
|
||||||
|
}));
|
1
mkplugin.sh
Normal file
1
mkplugin.sh
Normal file
@ -0,0 +1 @@
|
|||||||
|
git archive HEAD --prefix=tablepress-datatables-colrejigger-0.2 --format=zip -o tablepress-datatables-colrejigger-0.2.zip
|
286
tablepress-datatables-colrejigger.php
Normal file
286
tablepress-datatables-colrejigger.php
Normal file
@ -0,0 +1,286 @@
|
|||||||
|
<?php
|
||||||
|
/*
|
||||||
|
Plugin Name: TablePress Extension: DataTables ColRejigger
|
||||||
|
Plugin URI: https://code.studioinfinity.org/glen/tablepress-datatables-colrejigger
|
||||||
|
Description: Extension for TablePress to add ColReorder and ColResize to DataTables
|
||||||
|
Version: 0.2
|
||||||
|
Author: Glen Whitney (with thanks to Tobias Bäthge)
|
||||||
|
Author URI: https://studioinfinity.org/
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Copyright (C) 2018-2019 Glen Whitney
|
||||||
|
|
||||||
|
This program is free software; you can redistribute it and/or modify it under
|
||||||
|
the terms of the GNU General Public License as published by the Free Software
|
||||||
|
Foundation; either version 2 of the License, or (at your option) any later
|
||||||
|
version.
|
||||||
|
|
||||||
|
This program 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 General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License along with
|
||||||
|
this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
|
||||||
|
Street, Fifth Floor, Boston, MA 02110-1301 , USA.
|
||||||
|
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* See also http://datatables.net/extensions/colreorder/
|
||||||
|
* and https://github.com/smasala/ColResize
|
||||||
|
*/
|
||||||
|
|
||||||
|
/* Shortcode:
|
||||||
|
* [table id=1 datatables_colreorder=true /]
|
||||||
|
* Make the columns of the table re-orderable by the page visitor (by dragging the headers)
|
||||||
|
* with the default options. If any of the more specific reordering options are specified,
|
||||||
|
* there is no need for this parameter.
|
||||||
|
* [.. datatables_colreorder_realtime=false ..]
|
||||||
|
* Suppress the interactive update of the columns during the drag; only reorder the columns
|
||||||
|
* once the drag is complete.
|
||||||
|
* [.. datatables_colreorder_fixleft=1 ..]
|
||||||
|
* Prevent the first column on the left from being moved (or displaced by the motion of
|
||||||
|
* another column) in visitor-initiated column reordering
|
||||||
|
* [.. datatables_colreorder_fixright=2 ..]
|
||||||
|
* Prevent the rightmost two columns from being moved or displaced in column dragging.
|
||||||
|
* [table id=1 datatables_colresize=true /]
|
||||||
|
* Allow a page visior to change the column widths on the fly by dragging an imaginary handle
|
||||||
|
* (indicated by the cursor changing shape) at the right side of each column. Can be combined
|
||||||
|
* or not with datatables_colreorder. If any of the more specific resizing options below are
|
||||||
|
* specified, there is no need for this parameter.
|
||||||
|
* [.. datatables_colresize_minwidth=50 ..]
|
||||||
|
* Don't allow any column to become narrower than 50 pixels when resizing.
|
||||||
|
* [.. datatables_colresize_scrolly=300 ..]
|
||||||
|
* Limit the height of the column-resizable table to 300 pixels, adding a vertical scrollbar
|
||||||
|
* so that the visitor can see all of the available rows.
|
||||||
|
* [.. datatables_colresize_resizetable=true ..]
|
||||||
|
* Grow or shrink the table horizontally to accommodate resized columns. (By default, the
|
||||||
|
* overall width of the table remains constant, and width is removed from or added to
|
||||||
|
* neighboring columns to accommodate the change in a resized column.)
|
||||||
|
*/
|
||||||
|
|
||||||
|
// Prohibit direct script loading.
|
||||||
|
defined( 'ABSPATH' ) || die( 'No direct script access allowed!' );
|
||||||
|
|
||||||
|
// Init TablePress_DataTables_ColRejigger.
|
||||||
|
add_action( 'tablepress_run', array( 'TablePress_DataTables_ColRejigger', 'init' ) );
|
||||||
|
// TablePress_DataTables_ColRejigger::init_update_checker();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* TablePress Extension: DataTables ColRejigger
|
||||||
|
* @author Glen Whitney
|
||||||
|
* @since 0.1
|
||||||
|
*/
|
||||||
|
class TablePress_DataTables_ColRejigger {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plugin slug.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
* @since 0.1
|
||||||
|
*/
|
||||||
|
protected static $slug = 'tablepress-datatables-colrejigger';
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plugin version.
|
||||||
|
*
|
||||||
|
* @var string
|
||||||
|
* @since 0.1
|
||||||
|
*/
|
||||||
|
protected static $version = '0.1';
|
||||||
|
|
||||||
|
// /**
|
||||||
|
// * Instance of the Plugin Update Checker class.
|
||||||
|
// *
|
||||||
|
// * @var PluginUpdateChecker
|
||||||
|
// * @since 0.0.0
|
||||||
|
// */
|
||||||
|
// protected static $plugin_update_checker;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialize the plugin by registering necessary plugin filters and actions.
|
||||||
|
*
|
||||||
|
* @since 0.1
|
||||||
|
*/
|
||||||
|
public static function init() {
|
||||||
|
add_filter( 'tablepress_shortcode_table_default_shortcode_atts', array( __CLASS__, 'shortcode_table_default_shortcode_atts' ) );
|
||||||
|
add_filter( 'tablepress_table_js_options', array( __CLASS__, 'table_js_options' ), 10, 3 );
|
||||||
|
add_filter( 'tablepress_datatables_parameters', array( __CLASS__, 'datatables_parameters' ), 10, 4 );
|
||||||
|
}
|
||||||
|
|
||||||
|
// /**
|
||||||
|
// * Load and initialize the plugin update checker.
|
||||||
|
// *
|
||||||
|
// * @since 0.0.0
|
||||||
|
// */
|
||||||
|
// public static function init_update_checker() {
|
||||||
|
// require_once dirname( __FILE__ ) . '/libraries/plugin-update-checker.php';
|
||||||
|
// self::$plugin_update_checker = PucFactory::buildUpdateChecker(
|
||||||
|
// 'https://tablepress.org/downloads/extensions/update-check/' . self::$slug . '.json',
|
||||||
|
// __FILE__,
|
||||||
|
// self::$slug
|
||||||
|
// );
|
||||||
|
// }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add "datatables_colreorder" and "datatables_colresize" and related
|
||||||
|
* parameters to the [table /] Shortcode.
|
||||||
|
*
|
||||||
|
* @since 0.1
|
||||||
|
*
|
||||||
|
* @param array $default_atts Default attributes for the TablePress [table /] Shortcode.
|
||||||
|
* @return array Extended attributes for the Shortcode.
|
||||||
|
*/
|
||||||
|
public static function shortcode_table_default_shortcode_atts( $default_atts ) {
|
||||||
|
$default_atts['datatables_colreorder'] = '';
|
||||||
|
$default_atts['datatables_colreorder_realtime'] = '';
|
||||||
|
$default_atts['datatables_colreorder_fixleft'] = -1;
|
||||||
|
$default_atts['datatables_colreorder_fixright'] = -1;
|
||||||
|
$default_atts['datatables_colresize'] = '';
|
||||||
|
$default_atts['datatables_colresize_minwidth'] = -1;
|
||||||
|
$default_atts['datatables_colresize_scrolly'] = -1;
|
||||||
|
$default_atts['datatables_colresize_resizetable'] = '';
|
||||||
|
return $default_atts;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Pass configuration from Shortcode parameters to JavaScript arguments.
|
||||||
|
*
|
||||||
|
* @since 0.1
|
||||||
|
*
|
||||||
|
* @param array $js_options Current JS options.
|
||||||
|
* @param string $table_id Table ID.
|
||||||
|
* @param array $render_options Render Options.
|
||||||
|
* @return array Modified JS options.
|
||||||
|
*/
|
||||||
|
public static function table_js_options( $js_options, $table_id, $render_options ) {
|
||||||
|
$js_options['datatables_colreorder'] = strtolower( $render_options['datatables_colreorder'] );
|
||||||
|
$js_options['datatables_colreorder_realtime'] = strtolower($render_options['datatables_colreorder_realtime']);
|
||||||
|
$js_options['datatables_colreorder_fixleft'] = intval($render_options['datatables_colreorder_fixleft']);
|
||||||
|
$js_options['datatables_colreorder_fixright'] = intval($render_options['datatables_colreorder_fixright']);
|
||||||
|
|
||||||
|
$js_options['datatables_colresize'] = strtolower($render_options['datatables_colresize']);
|
||||||
|
$js_options['datatables_colresize_minwidth'] = intval($render_options['datatables_colresize_minwidth']);
|
||||||
|
$js_options['datatables_colresize_scrolly'] = intval($render_options['datatables_colresize_scrolly']);
|
||||||
|
$js_options['datatables_colresize_resizetable'] = strtolower($render_options['datatables_colresize_resizetable']);
|
||||||
|
|
||||||
|
$needJS = FALSE;
|
||||||
|
|
||||||
|
// Change parameters and register files if colreorder is requested.
|
||||||
|
if ( $js_options['datatables_colreorder'] != ''
|
||||||
|
|| $js_options['datatables_colreorder_realtime'] != ''
|
||||||
|
|| $js_options['datatables_colreorder_fixleft'] > 0
|
||||||
|
|| $js_options['datatables_colreorder_fixright'] > 0
|
||||||
|
) {
|
||||||
|
// Register the JS files.
|
||||||
|
$url = plugins_url( "js/dataTables.colReorder.js", __FILE__ );
|
||||||
|
wp_enqueue_script( 'tablepress-datatables-colreorder', $url, array( 'tablepress-datatables' ), self::$version, true );
|
||||||
|
|
||||||
|
$needJS = TRUE;
|
||||||
|
}
|
||||||
|
if ( $js_options['datatables_colresize'] != ''
|
||||||
|
|| $js_options['datatables_colresize_minwidth'] > 0
|
||||||
|
|| $js_options['datatables_colresize_scrolly'] > 0
|
||||||
|
|| $js_options['datatables_colresize_resizetable'] != ''
|
||||||
|
) {
|
||||||
|
// Register the JS files.
|
||||||
|
$url = plugins_url( "js/dataTables.colResize.js", __FILE__ );
|
||||||
|
wp_enqueue_script( 'tablepress-datatables-colresize', $url, array( 'tablepress-datatables' ), self::$version, true );
|
||||||
|
|
||||||
|
$needJS = TRUE;
|
||||||
|
}
|
||||||
|
// Add the common filter that adds JS for all calls on the page.
|
||||||
|
if ( $needJS && ! has_filter( 'tablepress_all_datatables_commands', array( __CLASS__, 'all_datatables_commands' ) )
|
||||||
|
) {
|
||||||
|
add_filter( 'tablepress_all_datatables_commands', array( __CLASS__, 'all_datatables_commands' ) );
|
||||||
|
}
|
||||||
|
|
||||||
|
return $js_options;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Evaluate JS parameters and convert them to DataTables parameters.
|
||||||
|
*
|
||||||
|
* @since 0.1
|
||||||
|
*
|
||||||
|
* @param array $parameters DataTables parameters.
|
||||||
|
* @param string $table_id Table ID.
|
||||||
|
* @param string $html_id HTML ID of the table.
|
||||||
|
* @param array $js_options JS options for DataTables.
|
||||||
|
* @return array Extended DataTables parameters.
|
||||||
|
*/
|
||||||
|
public static function datatables_parameters( $parameters, $table_id, $html_id, $js_options ) {
|
||||||
|
// Construct the DataTables ColReorder config parameter.
|
||||||
|
$parameters['colReorder'] = array();
|
||||||
|
if ($js_options['datatables_colreorder_realtime'] != '') {
|
||||||
|
$parameters['colReorder'][] = "\"realtime\":{$js_options['datatables_colreorder_realtime']}";
|
||||||
|
}
|
||||||
|
if ($js_options['datatables_colreorder_fixleft'] > 0) {
|
||||||
|
$parameters['colReorder'][] = "\"fixedColumnsLeft\":{$js_options['datatables_colreorder_fixleft']}";
|
||||||
|
}
|
||||||
|
if ($js_options['datatables_colreorder_fixright'] > 0) {
|
||||||
|
$parameters['colReorder'][] = "\"fixedColumnsRight\":{$js_options['datatables_colreorder_fixright']}";
|
||||||
|
}
|
||||||
|
if (empty($parameters['colReorder'])) {
|
||||||
|
if ($js_options['datatables_colreorder'] != ''
|
||||||
|
&& $js_options['datatables_colreorder'] != 'false')
|
||||||
|
{
|
||||||
|
$parameters['colReorder'] = '"colReorder":true';
|
||||||
|
} else {
|
||||||
|
unset($parameters['colReorder']);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$parameters['colReorder'] = '"colReorder":{' . implode(',', $parameters['colReorder']) . '}';
|
||||||
|
}
|
||||||
|
// Construct the DataTables ColResize config parameter.
|
||||||
|
$parameters['colResize'] = array();
|
||||||
|
if ($js_options['datatables_colresize_minwidth'] > 0) {
|
||||||
|
$parameters['colResize'][] = "\"minColumnWidth\":{$js_options['datatables_colresize_minwidth']}";
|
||||||
|
}
|
||||||
|
if ($js_options['datatables_colresize_scrolly'] > 0) {
|
||||||
|
$parameters['colResize'][] = "\"scrollY\":{$js_options['datatables_colresize_scrolly']}";
|
||||||
|
}
|
||||||
|
if ($js_options['datatables_colresize_resizetable'] != '') {
|
||||||
|
if ($js_options['datatables_colresize_resizetable'] != 'false') {
|
||||||
|
$parameters['colResize'][] = "\"resizeTable\":true";
|
||||||
|
} else {
|
||||||
|
$parameters['colResize'][] = "\"resizeTable\":false";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (empty($parameters['colResize'])) {
|
||||||
|
if ($js_options['datatables_colresize'] != ''
|
||||||
|
&& ($js_options['datatables_colresize'] != 'false'))
|
||||||
|
{
|
||||||
|
$parameters['colResize'] = '"colResize":true';
|
||||||
|
} else {
|
||||||
|
unset($parameters['colResize']);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
$parameters['colResize'] = '"colResize":{' . implode(',', $parameters['colResize']) . '}';
|
||||||
|
}
|
||||||
|
if (isset($parameters['colResize'])) {
|
||||||
|
$parameters['autoWidth'] = '"autoWidth":false';
|
||||||
|
$parameters['scrollX'] = '"scrollX":false';
|
||||||
|
}
|
||||||
|
return $parameters;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add jQuery code that adds the necessary CSS for the Extension, instead of loading that CSS from a file on all pages.
|
||||||
|
*
|
||||||
|
* @since 0.1
|
||||||
|
*
|
||||||
|
* @param array $commands The JS commands for the DataTables JS library.
|
||||||
|
* @return array Modified JS commands for the DataTables JS library.
|
||||||
|
*/
|
||||||
|
public static function all_datatables_commands( $commands ) {
|
||||||
|
// First the ColReorder CSS
|
||||||
|
$commands = "$('head').append('<style>table.DTCR_clonedTable.dataTable {position: absolute !important; background-color: rgba(255, 255, 255, 0.7); z-index: 202; } div.DTCR_pointer { width: 1px; background-color: #0259C4; z-index: 201;}</style>');\n" . $commands;
|
||||||
|
|
||||||
|
// Now the ColResize CSS
|
||||||
|
$commands = "$('head').append('<style>.dt-colresizable-table-wrapper {overflow: auto; width: 100%; position: relative;} .dt-colresizable {height: 0; position: relative; top: 0; z-index: 999;} .dt-colresizable .dt-colresizable-col {display: block; position: absolute; box-sizing: border-box; width: 5px; cursor: ew-resize; z-index: 1000;} .dt-colresizable-table-wrapper.dt-colresizable-with-scroller {overflow-x: auto; overflow-y: hidden;} .dt-colresizable-scroller-wrapper {position: absolute; overflow-y: auto; overflow-x: hidden; width: 100%; right: 0;} .dt-colresizable-scroller-content-wrapper {width: 100%;} .dt-colresizable-scroller-content {width: 100%;} .dt-colresizable-with-scroller table thead,.dt-colresizable-with-scroller table tbody tr {display: table; table-layout: fixed; width: 100%;} .dt-colresizable-with-scroller table tbody {overflow-y: auto; display: block;} .dt-colresizable-table-wrapper table {table-layout: fixed; margin: 0;} .dt-colresizable-table-wrapper table,.dt-colresizable-table-wrapper table th,.dt-colresizable-table-wrapper table {box-sizing: border-box;} .dt-colresizable-table-wrapper table thead th,.dt-colresizable-table-wrapper table tbody td,.dt-colresizable-table-wrapper table tfoot td,.dt-colresizable-table-wrapper table tfoot th {overflow: hidden;}<style>');\n" . $commands;
|
||||||
|
|
||||||
|
return $commands;
|
||||||
|
}
|
||||||
|
|
||||||
|
} // class TablePress_DataTables_ColRejigger
|
Loading…
Reference in New Issue
Block a user