| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- /**
- * @author zhixin wen <wenzhixin2010@gmail.com>
- * https://github.com/wenzhixin/bootstrap-table/
- * theme: https://github.com/jgthms/bulma/
- */
- $.extend($.fn.bootstrapTable.defaults, {
- classes: 'table is-bordered is-hoverable',
- buttonsPrefix: '',
- buttonsClass: 'button'
- })
- $.fn.bootstrapTable.theme = 'bulma'
- $.BootstrapTable = class extends $.BootstrapTable {
- initConstants () {
- super.initConstants()
- this.constants.classes.buttonsGroup = 'buttons has-addons'
- this.constants.classes.buttonsDropdown = 'button dropdown is-right'
- this.constants.classes.input = 'input'
- this.constants.classes.paginationDropdown = 'ui dropdown'
- this.constants.classes.dropup = 'is-up'
- this.constants.classes.dropdownActive = 'is-active'
- this.constants.classes.paginationActive = 'is-current'
- this.constants.classes.buttonActive = 'is-active'
- this.constants.html.toolbarDropdown = ['<div class="dropdown-menu"><div class="dropdown-content">', '</div></div>']
- this.constants.html.toolbarDropdownItem = '<label class="dropdown-item dropdown-item-marker">%s</label>'
- this.constants.html.toolbarDropdownSeparator = '<li class="dropdown-divider"></li>'
- this.constants.html.pageDropdown = ['<div class="dropdown-menu"><div class="dropdown-content">', '</div></div>']
- this.constants.html.pageDropdownItem = '<a class="dropdown-item %s" href="#">%s</a>'
- this.constants.html.dropdownCaret = '<span class="icon is-small"><i class="fas fa-angle-down" aria-hidden="true"></i></span>'
- this.constants.html.pagination = ['<ul class="pagination%s">', '</ul>']
- this.constants.html.paginationItem = '<li><a class="page-item pagination-link%s" aria-label="%s" href="#">%s</a></li>'
- this.constants.html.searchInput = '<p class="control"><input class="%s input-%s" type="search" placeholder="%s"></p>'
- this.constants.html.inputGroup = '<div class="field has-addons has-addons-right">%s%s</div>'
- this.constants.html.searchButton = '<p class="control"><button class="%s" type="button" name="search" title="%s">%s %s</button></p>'
- this.constants.html.searchClearButton = '<p class="control"><button class="%s" type="button" name="clearSearch" title="%s">%s %s</button></p>'
- }
- initToolbar () {
- super.initToolbar()
- this.handleToolbar()
- }
- handleToolbar () {
- if (this.$toolbar.find('.dropdown').length) {
- this._initDropdown()
- }
- }
- initPagination () {
- super.initPagination()
- if (this.options.pagination && this.paginationParts.includes('pageSize')) {
- this._initDropdown()
- }
- }
- _initDropdown () {
- const $dropdowns = this.$container.find('.dropdown:not(.is-hoverable)')
- $dropdowns.off('click').on('click', e => {
- const $this = $(e.currentTarget)
- e.stopPropagation()
- $dropdowns.not($this).removeClass('is-active')
- $this.toggleClass('is-active')
- })
- $(document).off('click.bs.dropdown.bulma').on('click.bs.dropdown.bulma', () => {
- $dropdowns.removeClass('is-active')
- })
- }
- }
|