UNPKG

5.13 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.bootstrapTableSemantic = 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/Semantic-Org/Semantic-UI
93 */
94
95 (function ($) {
96 $.extend($.fn.bootstrapTable.defaults, {
97 classes: 'ui selectable celled table',
98 buttonsPrefix: '',
99 buttonsClass: 'ui 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 = 'semantic';
117
118 this.constants.classes.buttonsGroup = 'ui buttons';
119 this.constants.classes.buttonsDropdown = 'ui button dropdown';
120 this.constants.classes.inputGroup = 'ui input';
121 this.constants.classes.paginationDropdown = 'ui dropdown';
122
123 this.constants.html.toobarDropdow = ['<div class="menu">', '</div>'];
124 this.constants.html.toobarDropdowItem = '<label class="item">%s</label>';
125 this.constants.html.pageDropdown = ['<div class="menu">', '</div>'];
126 this.constants.html.pageDropdownItem = '<a class="item %s" href="#">%s</a>';
127 this.constants.html.dropdownCaret = '<i class="dropdown icon"></i>';
128 this.constants.html.pagination = ['<div class="ui pagination menu%s">', '</div>'], this.constants.html.paginationItem = '<a class="page-item item%s" href="#">%s</a>';
129 }
130 }, {
131 key: 'initToolbar',
132 value: function initToolbar() {
133 _get(_class.prototype.__proto__ || Object.getPrototypeOf(_class.prototype), 'initToolbar', this).call(this);
134 if (this.options.showColumns) {
135 this.$toolbar.find('.button.dropdown').dropdown();
136 }
137 }
138 }, {
139 key: 'initPagination',
140 value: function initPagination() {
141 _get(_class.prototype.__proto__ || Object.getPrototypeOf(_class.prototype), 'initPagination', this).call(this);
142 if (this.options.pagination && !this.options.onlyInfoPagination) {
143 this.$pagination.find('.dropdown').dropdown();
144 }
145 }
146 }]);
147
148 return _class;
149 }($.BootstrapTable);
150 })(jQuery);
151});
\No newline at end of file