forked from Mobius1/Exportable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
datatable.exportable.js
539 lines (437 loc) · 15.8 KB
/
datatable.exportable.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
/*! Exportable 0.0.10
* © 2017 Karl Saunders
*/
/**
* @summary Exportable
* @description Vanilla-DataTables extension to allow for exporting to various formats
* @version 0.0.10
* @file datatable.exportable.js
* @author Karl Saunders
* @contact [email protected]
* @copyright Copyright 2017 Karl Saunders
*
*
* This source file is free software, available under the following license:
* MIT license - https://github.com/Mobius1/Vanilla-DataTables/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: https://github.com/Mobius1/Vanilla-DataTables
*/
if (window.DataTable) {
DataTable.extend("exportable", function(instance, config, utils) {
/**
* Default configuration
* @type {Object}
*/
var defaultConfig = {
download: true,
skipColumns: [],
escapeHTML: true,
// csv / txt
lineDelimiter: "\n",
columnDelimiter: ",",
includeHeadings: true,
columnize: false,
paddingCharacter: " ",
// sql
tableName: "table",
// json
replacer: null,
space: 4,
// xml
rootNode: "Root",
childNode: "Child",
// print
modal: true
};
var Exporter = function() {};
/**
* Initialise instance of Exporter
* @return {[type]} [description]
*/
Exporter.prototype.init = function() {
if (!this.initialised) {
this.config = utils.extend(defaultConfig, config);
this.initialised = true;
}
};
/**
* Get the rows for exporting
* @param {Object} config
* @return {Array}
*/
Exporter.prototype.getRows = function(config) {
config = config || this.config;
var that = this,
rows = [];
// Selection or whole table
if (config.pages) {
// Page number
if (!isNaN(config.pages)) {
rows = rows.concat(instance.pages[config.pages - 1]);
} else if (Array.isArray(config.pages)) {
// Array of page numbers
utils.each(config.pages, function(select) {
rows = rows.concat(instance.pages[select - 1]);
});
}
} else {
rows = rows.concat(instance.table.rows);
}
return rows;
};
/**
* Get the congif object
* @param {Object} config Export options
* @return {Object}
*/
Exporter.prototype.getConfig = function(config) {
if (config && utils.isObject(config)) {
return utils.extend(utils.extend({}, this.config), config)
}
return this.config;
};
/**
* Strip HTML from string
* @param {String} Raw content
* @return {String} Parsed content
*/
Exporter.prototype.stripHTML = function(content) {
/* https://github.com/sstephenson/prototype/blob/5fddd3e/src/prototype/lang/string.js#L285 */
return content.replace(/<\w+(\s+("[^"]*"|'[^']*'|[^>])+)?(\/)?>|<\/\w+>/gi, '');
};
/**
* Parse a heading to valid XML node name
* @param {String} content
* @return {String}
*/
Exporter.prototype.parseXMLTag = function(content) {
content = content.charAt(0).toUpperCase() + content.slice(1);
return content.replace(/\.|\s+/g, "");
};
/**
* Export with options
* @param {Object} config Export options
* @return {Void}
*/
Exporter.prototype.export = function(config) {
config = this.getConfig(config);
switch (config.type.toLowerCase()) {
case "json":
this.toJSON(config);
break;
case "sql":
this.toSQL(config);
break;
case "csv":
this.toCSV(config);
break;
}
};
/**
* Pad strings
* @param {Object} obj
* @param {String} paddingCharacter
* @return {Array}
*/
Exporter.prototype.columnize = function(obj, paddingCharacter) {
var data = [];
utils.each(obj.strings, function(row, i) {
data[i] = [];
utils.each(row, function(str, n) {
data[i][n] = str;
if (str.length < obj.lengths[n]) {
var pad = obj.lengths[n] - str.length;
for (var x = 0; x < pad; x++) {
data[i][n] += paddingCharacter;
}
}
});
});
return data;
};
/**
* Export to plain text
* @param {Object} config JSON options
* @return {String} JSON string
*/
Exporter.prototype.toText = function(config) {
config = this.getConfig(config);
config.type = "txt";
var str = "",
data = [],
o = config,
table = instance.table,
rows = this.getRows(o),
strings = [],
lengths = [];
// Headings as first row
if (config.includeHeadings) {
rows.unshift(table.header);
}
utils.each(rows, function(row, n) {
// Set the lengths to zero for comparison later
if (config.columnize && !lengths.length) {
for (var x = 0; x < row.cells.length; x++) {
lengths[x] = 0;
}
}
strings[n] = [];
utils.each(row.cells, function(cell, i) {
str = cell.content.trim();
strings[n][i] = str;
// Update the max length of the content
if (config.columnize && str.length > lengths[i]) {
lengths[i] = str.length;
}
})
});
if (config.columnize) {
data = this.columnize({
lengths: lengths,
strings: strings
}, config.paddingCharacter);
} else {
data = strings;
}
str = "";
data.forEach(function(line) {
str += line.join(config.columnDelimiter).trim() + "\n"
});
if (o.escapeHTML) {
str = this.stripHTML(str)
}
if (o.download) {
str = "data:text/plain;charset=utf-8," + str;
this.download(str, config);
};
return str;
};
/**
* Export to csv
* @param {Object} config CSV options
* @return {String} CSV string
*/
Exporter.prototype.toCSV = function(config) {
config = this.getConfig(config);
config.type = "csv";
var str = [],
data = [],
o = config,
table = instance.table,
rows = this.getRows(config);
// Headings as first row
if (config.includeHeadings) {
// Convert table headings to column names
utils.each(table.header.cells, function(cell) {
if (!cell.hidden && o.skipColumns.indexOf(cell.index) < 0) {
str += cell.content + o.columnDelimiter;
}
});
// Remove trailing column delimiter
str = str.trim().substring(0, str.length - 1);
// Apply line delimiter
str += o.lineDelimiter;
}
utils.each(rows, function(row, n) {
data[n] = data[n] || {};
utils.each(row.cells, function(cell, i) {
if (!cell.hidden && o.skipColumns.indexOf(cell.index) < 0) {
str += cell.content + o.columnDelimiter;
}
});
// Remove trailing column delimiter
str = str.trim().substring(0, str.length - 1);
// Apply line delimiter
str += o.lineDelimiter;
});
// Remove trailing line delimiter
str = str.trim().substring(0, str.length - 1);
if (o.escapeHTML) {
str = this.stripHTML(str)
}
if (o.download) {
str = "data:text/csv;charset=utf-8," + str;
this.download(str, config);
}
return str;
};
/**
* Export to json
* @param {Object} config JSON options
* @return {String} JSON string
*/
Exporter.prototype.toJSON = function(config) {
config = this.getConfig(config);
config.type = "json";
var str = "",
data = [],
o = config,
table = instance.table,
rows = this.getRows(config);
utils.each(rows, function(row, n) {
data[n] = data[n] || {};
utils.each(row.cells, function(cell, i) {
if (!cell.hidden && o.skipColumns.indexOf(cell.index) < 0) {
data[n][table.header.cells[cell.index].content] = rows[n].cells[cell.index].content;
}
})
});
// Convert the array of objects to JSON string
str = JSON.stringify(data, o.replacer, o.space);
if (o.escapeHTML) {
str = this.stripHTML(str)
}
if (o.download) {
str = "data:application/json;charset=utf-8," + str;
this.download(str, config);
}
return str;
};
/**
* Export to sql
* @param {Object} config SQL options
* @return {String} SQL string
*/
Exporter.prototype.toSQL = function(config) {
config = this.getConfig(config);
config.type = "sql";
var o = config,
table = instance.table,
rows = this.getRows(config);
// Begin INSERT statement
var str = "INSERT INTO `" + o.tableName + "` (";
// Convert table headings to column names
utils.each(table.header.cells, function(cell) {
if (!cell.hidden && o.skipColumns.indexOf(cell.index) < 0) {
str += "`" + cell.content + "`,";
}
});
// Remove trailing comma
str = str.trim().substring(0, str.length - 1);
// Begin VALUES
str += ") VALUES ";
// Iterate rows and convert cell data to column values
utils.each(rows, function(row) {
str += "(";
utils.each(row.cells, function(cell) {
if (!cell.hidden && o.skipColumns.indexOf(cell.index) < 0) {
str += "`" + cell.content + "`,";
}
});
// Remove trailing comma
str = str.trim().substring(0, str.length - 1);
// end VALUES
str += "),";
});
// Remove trailing comma
str = str.trim().substring(0, str.length - 1);
// Add trailing colon
str += ";";
if (o.escapeHTML) {
str = this.stripHTML(str)
}
if (o.download) {
str = "data:application/sql;charset=utf-8," + str;
this.download(str, config);
}
return str;
};
/**
* Export to xml
* @param {Object} config XML options
* @return {String} XML string
*/
Exporter.prototype.toXML = function(config) {
config = this.getConfig(config);
config.type = "xml";
var that = this,
o = config,
table = instance.table,
rows = that.getRows(config);
var heading, str = "<?xml version=\"1.0\" encoding=\"UTF-8\"?><{root}>";
utils.each(rows, function(row) {
str += "<{child}>";
utils.each(row.cells, function(cell) {
heading = that.parseXMLTag(table.header.cells[cell.index].content);
str += "<" + heading + ">" + (o.escapeHTML ? that.stripHTML(cell.content) : cell.content) + "</" + heading + ">";
});
str += "</{child}>";
});
str += "</{root}>"
str = str.replace(/\{root\}/g, config.rootNode);
str = str.replace(/\{child\}/g, config.childNode);
if (o.download) {
str = "data:text/xml;charset=utf-8," + str;
this.download(str, config);
}
return str;
};
/**
* Trigger download
* @param {String} str The formatted file contents
* @return {Void}
*/
Exporter.prototype.download = function(str, config) {
// Download
if (str) {
// Filename
var filename = config.filename || "datatable_export";
filename += "." + config.type;
str = encodeURI(str);
// Create a link to trigger the download
var link = document.createElement("a");
link.href = str;
link.download = filename;
// Append the link
document.body.appendChild(link);
// Trigger the download
link.click();
// Remove the link
document.body.removeChild(link);
}
};
/**
* Print table
* @return {Void}
*/
Exporter.prototype.print = function(config) {
if (config && utils.isObject(config)) {
config = utils.extend(this.config, config);
}
var table = document.createElement("table"),
thead = document.createElement("thead"),
tbody = document.createElement("tbody");
table.appendChild(thead);
table.appendChild(tbody);
utils.each(instance.table.header.cells, function(cell) {
thead.appendChild(cell.node.cloneNode(true));
});
utils.each(instance.table.rows, function(row) {
tbody.appendChild(row.node.cloneNode(true));
});
// Open new window
var w = window.open();
// Append the table to the body
w.document.body.appendChild(table);
if (config.modal) {
// Print
w.focus(); // IE
w.print();
}
};
/**
* Destroy instance of Exporter
* @return {[type]} [description]
*/
Exporter.prototype.destroy = function() {
if (this.initialised) {
this.initialised = false;
}
};
return new Exporter();
});
}