13693261870
2022-09-16 354b3dbfbffb3df45212a2a44dbbf48b4acc2594
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
/*global Tablesaw:true */
 
/*
* tablesaw: A set of plugins for responsive tables
* Stack and Column Toggle tables
* Copyright (c) 2013 Filament Group, Inc.
* MIT License
*/
 
if( typeof Tablesaw === "undefined" ) {
    Tablesaw = {
        i18n: {
            modes: [ 'Stack', 'Swipe', 'Toggle' ],
            columns: 'Col<span class=\"a11y-sm\">umn</span>s',
            columnBtnText: 'Columns',
            columnsDialogError: 'No eligible columns.',
            sort: 'Sort'
        },
        // cut the mustard
        mustard: 'querySelector' in document &&
            ( !window.blackberry || window.WebKitPoint ) &&
            !window.operamini
    };
}
if( !Tablesaw.config ) {
    Tablesaw.config = {};
}
if( Tablesaw.mustard ) {
    jQuery( document.documentElement ).addClass( 'tablesaw-enhanced' );
}
 
;(function( $ ) {
    var pluginName = "table",
        classes = {
            toolbar: "tablesaw-bar"
        },
        events = {
            create: "tablesawcreate",
            destroy: "tablesawdestroy",
            refresh: "tablesawrefresh"
        },
        defaultMode = "stack",
        initSelector = "table[data-tablesaw-mode],table[data-tablesaw-sortable]";
 
    var Table = function( element ) {
        if( !element ) {
            throw new Error( "Tablesaw requires an element." );
        }
 
        this.table = element;
        this.$table = $( element );
 
        this.mode = this.$table.attr( "data-tablesaw-mode" ) || defaultMode;
 
        this.init();
    };
 
    Table.prototype.init = function() {
        // assign an id if there is none
        if ( !this.$table.attr( "id" ) ) {
            this.$table.attr( "id", pluginName + "-" + Math.round( Math.random() * 10000 ) );
        }
 
        this.createToolbar();
 
        var colstart = this._initCells();
 
        this.$table.trigger( events.create, [ this, colstart ] );
    };
 
    Table.prototype._initCells = function() {
        var colstart,
            thrs = this.table.querySelectorAll( "thead tr" ),
            self = this;
 
        $( thrs ).each( function(){
            var coltally = 0;
 
            $( this ).children().each( function(){
                var span = parseInt( this.getAttribute( "colspan" ), 10 ),
                    sel = ":nth-child(" + ( coltally + 1 ) + ")";
 
                colstart = coltally + 1;
 
                if( span ){
                    for( var k = 0; k < span - 1; k++ ){
                        coltally++;
                        sel += ", :nth-child(" + ( coltally + 1 ) + ")";
                    }
                }
 
                // Store "cells" data on header as a reference to all cells in the same column as this TH
                this.cells = self.$table.find("tr").not( thrs[0] ).not( this ).children().filter( sel );
                coltally++;
            });
        });
 
        return colstart;
    };
 
    Table.prototype.refresh = function() {
        this._initCells();
 
        this.$table.trigger( events.refresh );
    };
 
    Table.prototype.createToolbar = function() {
        // Insert the toolbar
        // TODO move this into a separate component
        var $toolbar = this.$table.prev().filter( '.' + classes.toolbar );
        if( !$toolbar.length ) {
            $toolbar = $( '<div>' )
                .addClass( classes.toolbar )
                .insertBefore( this.$table );
        }
        this.$toolbar = $toolbar;
 
        if( this.mode ) {
            this.$toolbar.addClass( 'mode-' + this.mode );
        }
    };
 
    Table.prototype.destroy = function() {
        // Don’t remove the toolbar. Some of the table features are not yet destroy-friendly.
        this.$table.prev().filter( '.' + classes.toolbar ).each(function() {
            this.className = this.className.replace( /\bmode\-\w*\b/gi, '' );
        });
 
        var tableId = this.$table.attr( 'id' );
        $( document ).unbind( "." + tableId );
        $( window ).unbind( "." + tableId );
 
        // other plugins
        this.$table.trigger( events.destroy, [ this ] );
 
        this.$table.removeAttr( 'data-tablesaw-mode' );
 
        this.$table.removeData( pluginName );
    };
 
    // Collection method.
    $.fn[ pluginName ] = function() {
        return this.each( function() {
            var $t = $( this );
 
            if( $t.data( pluginName ) ){
                return;
            }
 
            var table = new Table( this );
            $t.data( pluginName, table );
        });
    };
 
    $( document ).on( "enhance.tablesaw", function( e ) {
        // Cut the mustard
        if( Tablesaw.mustard ) {
            $( e.target ).find( initSelector )[ pluginName ]();
        }
    });
 
}( jQuery ));