UNPKG

6.35 kBJavaScriptView Raw
1(function (global, factory) {
2 if (typeof define === "function" && define.amd) {
3 define([], factory);
4 } else if (typeof exports !== "undefined") {
5 factory();
6 } else {
7 var mod = {
8 exports: {}
9 };
10 factory();
11 global.bootstrapTableFoundation = mod.exports;
12 }
13})(this, function () {
14 'use strict';
15
16 function _classCallCheck(instance, Constructor) {
17 if (!(instance instanceof Constructor)) {
18 throw new TypeError("Cannot call a class as a function");
19 }
20 }
21
22 var _createClass = function () {
23 function defineProperties(target, props) {
24 for (var i = 0; i < props.length; i++) {
25 var descriptor = props[i];
26 descriptor.enumerable = descriptor.enumerable || false;
27 descriptor.configurable = true;
28 if ("value" in descriptor) descriptor.writable = true;
29 Object.defineProperty(target, descriptor.key, descriptor);
30 }
31 }
32
33 return function (Constructor, protoProps, staticProps) {
34 if (protoProps) defineProperties(Constructor.prototype, protoProps);
35 if (staticProps) defineProperties(Constructor, staticProps);
36 return Constructor;
37 };
38 }();
39
40 function _possibleConstructorReturn(self, call) {
41 if (!self) {
42 throw new ReferenceError("this hasn't been initialised - super() hasn't been called");
43 }
44
45 return call && (typeof call === "object" || typeof call === "function") ? call : self;
46 }
47
48 var _get = function get(object, property, receiver) {
49 if (object === null) object = Function.prototype;
50 var desc = Object.getOwnPropertyDescriptor(object, property);
51
52 if (desc === undefined) {
53 var parent = Object.getPrototypeOf(object);
54
55 if (parent === null) {
56 return undefined;
57 } else {
58 return get(parent, property, receiver);
59 }
60 } else if ("value" in desc) {
61 return desc.value;
62 } else {
63 var getter = desc.get;
64
65 if (getter === undefined) {
66 return undefined;
67 }
68
69 return getter.call(receiver);
70 }
71 };
72
73 function _inherits(subClass, superClass) {
74 if (typeof superClass !== "function" && superClass !== null) {
75 throw new TypeError("Super expression must either be null or a function, not " + typeof superClass);
76 }
77
78 subClass.prototype = Object.create(superClass && superClass.prototype, {
79 constructor: {
80 value: subClass,
81 enumerable: false,
82 writable: true,
83 configurable: true
84 }
85 });
86 if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass;
87 }
88
89 /**
90 * @author zhixin wen <wenzhixin2010@gmail.com>
91 * https://github.com/wenzhixin/bootstrap-table/
92 * theme: https://github.com/zurb/foundation-sites
93 */
94
95 (function ($) {
96 $.extend($.fn.bootstrapTable.defaults, {
97 classes: 'table hover',
98 buttonsPrefix: '',
99 buttonsClass: 'button'
100 });
101
102 $.BootstrapTable = function (_$$BootstrapTable) {
103 _inherits(_class, _$$BootstrapTable);
104
105 function _class() {
106 _classCallCheck(this, _class);
107
108 return _possibleConstructorReturn(this, (_class.__proto__ || Object.getPrototypeOf(_class)).apply(this, arguments));
109 }
110
111 _createClass(_class, [{
112 key: 'initConstants',
113 value: function initConstants() {
114 _get(_class.prototype.__proto__ || Object.getPrototypeOf(_class.prototype), 'initConstants', this).call(this);
115
116 this.constants.theme = 'foundation';
117
118 this.constants.classes.buttonsGroup = 'button-group';
119 this.constants.classes.buttonsDropdown = 'button dropdown-container';
120 this.constants.classes.paginationDropdown = '';
121 this.constants.classes.dropdownActive = 'is-active';
122 this.constants.classes.paginationActive = 'current';
123
124 this.constants.html.toobarDropdow = ['<ul class="dropdown-pane" id="toolbar-dropdown" data-dropdown><ul class="vertical menu">', '</ul></div>'];
125 this.constants.html.toobarDropdowItem = '<li><label class="dropdown-item">%s</label></li>';
126 this.constants.html.pageDropdown = ['<ul class="dropdown-pane" id="page-list-dropdown" data-dropdown><ul class="vertical menu">', '</ul></ul>'];
127 this.constants.html.pageDropdownItem = '<li class="dropdown-item %s"><a href="#">%s</a></li>';
128 this.constants.html.dropdownCaret = '<i class="fa fa-angle-down"></i>';
129 this.constants.html.pagination = ['<ul class="pagination%s">', '</ul>'], this.constants.html.paginationItem = '<li><a class="page-item%s" href="#">%s</a></li>';
130 }
131 }, {
132 key: 'initToolbar',
133 value: function initToolbar() {
134 _get(_class.prototype.__proto__ || Object.getPrototypeOf(_class.prototype), 'initToolbar', this).call(this);
135
136 if (this.options.showColumns) {
137 this.$toolbar.find('.keep-open').attr('data-toggle', 'toolbar-dropdown');
138 var $pane = this.$toolbar.find('.dropdown-pane').attr('data-position', 'bottom').attr('data-alignment', 'right');
139 new window.Foundation.Dropdown($pane);
140 this._initDropdown();
141 }
142 }
143 }, {
144 key: 'initPagination',
145 value: function initPagination() {
146 _get(_class.prototype.__proto__ || Object.getPrototypeOf(_class.prototype), 'initPagination', this).call(this);
147
148 if (this.options.pagination && !this.options.onlyInfoPagination) {
149 this.$pagination.find('.dropdown-toggle').attr('data-toggle', 'page-list-dropdown');
150 var $pane = this.$pagination.find('.dropdown-pane').attr('data-position', 'top').attr('data-alignment', 'left');
151 new window.Foundation.Dropdown($pane);
152 }
153 }
154 }, {
155 key: '_initDropdown',
156 value: function _initDropdown($el) {
157 var $dropdowns = this.$container.find('.dropdown-container');
158
159 $dropdowns.off('click').on('click', function (e) {
160 e.stopPropagation();
161 $dropdowns.find('.dropdown-pane').foundation('toggle');
162 });
163
164 $(document).off('click.bs.dropdown.foundation').on('click.bs.dropdown.foundation', function () {
165 $dropdowns.find('.dropdown-pane').foundation('close');
166 });
167 }
168 }]);
169
170 return _class;
171 }($.BootstrapTable);
172 })(jQuery);
173});
\No newline at end of file