| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341 |
- /**
- * @author zhixin wen <wenzhixin2010@gmail.com>
- * extensions: https://github.com/hhurz/tableExport.jquery.plugin
- */
- const Utils = $.fn.bootstrapTable.utils
- const TYPE_NAME = {
- json: 'JSON',
- xml: 'XML',
- png: 'PNG',
- csv: 'CSV',
- txt: 'TXT',
- sql: 'SQL',
- doc: 'MS-Word',
- excel: 'MS-Excel',
- xlsx: 'MS-Excel (OpenXML)',
- powerpoint: 'MS-Powerpoint',
- pdf: 'PDF'
- }
- $.extend($.fn.bootstrapTable.defaults, {
- showExport: false,
- exportDataType: 'basic', // basic, all, selected
- exportTypes: ['json', 'xml', 'csv', 'txt', 'sql', 'excel'],
- exportOptions: {
- onCellHtmlData (cell, rowIndex, colIndex, htmlData) {
- if (cell.is('th')) {
- return cell.find('.th-inner').text()
- }
- return htmlData
- }
- },
- exportFooter: false
- })
- $.extend($.fn.bootstrapTable.columnDefaults, {
- forceExport: false,
- forceHide: false
- })
- $.extend($.fn.bootstrapTable.defaults.icons, {
- export: {
- bootstrap3: 'glyphicon-export icon-share',
- bootstrap5: 'bi-download',
- materialize: 'file_download',
- 'bootstrap-table': 'icon-download'
- }[$.fn.bootstrapTable.theme] || 'fa-download'
- })
- $.extend($.fn.bootstrapTable.locales, {
- formatExport () {
- return 'Export data'
- }
- })
- $.extend($.fn.bootstrapTable.defaults, $.fn.bootstrapTable.locales)
- $.fn.bootstrapTable.methods.push('exportTable')
- $.extend($.fn.bootstrapTable.defaults, {
- // eslint-disable-next-line no-unused-vars
- onExportSaved (exportedRows) {
- return false
- }
- })
- $.extend($.fn.bootstrapTable.Constructor.EVENTS, {
- 'export-saved.bs.table': 'onExportSaved'
- })
- $.BootstrapTable = class extends $.BootstrapTable {
- initToolbar (...args) {
- const o = this.options
- let exportTypes = o.exportTypes
- this.showToolbar = this.showToolbar || o.showExport
- if (this.options.showExport) {
- if (typeof exportTypes === 'string') {
- const types = exportTypes.slice(1, -1).replace(/ /g, '').split(',')
- exportTypes = types.map(t => t.slice(1, -1))
- }
- if (typeof o.exportOptions === 'string') {
- o.exportOptions = Utils.calculateObjectValue(null, o.exportOptions)
- }
- this.$export = this.$toolbar.find('>.columns div.export')
- if (this.$export.length) {
- this.updateExportButton()
- return
- }
- this.buttons = Object.assign(this.buttons, {
- export: {
- html:
- (() => {
- if (exportTypes.length === 1) {
- return `
- <div class="export ${this.constants.classes.buttonsDropdown}"
- data-type="${exportTypes[0]}">
- <button class="${this.constants.buttonsClass}"
- aria-label="Export"
- type="button"
- title="${o.formatExport()}">
- ${o.showButtonIcons ? Utils.sprintf(this.constants.html.icon, o.iconsPrefix, o.icons.export) : ''}
- ${o.showButtonText ? o.formatExport() : ''}
- </button>
- </div>
- `
- }
- const html = []
- html.push(`
- <div class="export ${this.constants.classes.buttonsDropdown}">
- <button class="${this.constants.buttonsClass} dropdown-toggle"
- aria-label="Export"
- ${this.constants.dataToggle}="dropdown"
- type="button"
- title="${o.formatExport()}">
- ${o.showButtonIcons ? Utils.sprintf(this.constants.html.icon, o.iconsPrefix, o.icons.export) : ''}
- ${o.showButtonText ? o.formatExport() : ''}
- ${this.constants.html.dropdownCaret}
- </button>
- ${this.constants.html.toolbarDropdown[0]}
- `)
- for (const type of exportTypes) {
- if (TYPE_NAME.hasOwnProperty(type)) {
- const $item = $(Utils.sprintf(this.constants.html.pageDropdownItem, '', TYPE_NAME[type]))
- $item.attr('data-type', type)
- html.push($item.prop('outerHTML'))
- }
- }
- html.push(this.constants.html.toolbarDropdown[1], '</div>')
- return html.join('')
- })
- }
- })
- }
- super.initToolbar(...args)
- this.$export = this.$toolbar.find('>.columns div.export')
- if (!this.options.showExport) {
- return
- }
- this.updateExportButton()
- let $exportButtons = this.$export.find('[data-type]')
- if (exportTypes.length === 1) {
- $exportButtons = this.$export
- }
- $exportButtons.click(e => {
- e.preventDefault()
- const type = $(e.currentTarget).data('type')
- const exportOptions = {
- type,
- escape: false
- }
- this.exportTable(exportOptions)
- })
- this.handleToolbar()
- }
- handleToolbar () {
- if (!this.$export) {
- return
- }
- if (super.handleToolbar) {
- super.handleToolbar()
- }
- }
- exportTable (options) {
- const o = this.options
- const stateField = this.header.stateField
- const isCardView = o.cardView
- const doExport = callback => {
- if (stateField) {
- this.hideColumn(stateField)
- }
- if (isCardView) {
- this.toggleView()
- }
- this.columns.forEach(row => {
- if (row.forceHide) {
- this.hideColumn(row.field)
- }
- })
- const data = this.getData()
- if (o.detailView && o.detailViewIcon) {
- const detailViewIndex = o.detailViewAlign === 'left' ? 0 : this.getVisibleFields().length + Utils.getDetailViewIndexOffset(this.options)
- o.exportOptions.ignoreColumn = [detailViewIndex].concat(o.exportOptions.ignoreColumn || [])
- }
- if (o.exportFooter) {
- const $footerRow = this.$tableFooter.find('tr').first()
- const footerData = {}
- const footerHtml = []
- $.each($footerRow.children(), (index, footerCell) => {
- const footerCellHtml = $(footerCell).children('.th-inner').first().html()
- footerData[this.columns[index].field] = footerCellHtml === ' ' ? null : footerCellHtml
- // grab footer cell text into cell index-based array
- footerHtml.push(footerCellHtml)
- })
- this.$body.append(this.$body.children().last()[0].outerHTML)
- const $lastTableRow = this.$body.children().last()
- $.each($lastTableRow.children(), (index, lastTableRowCell) => {
- $(lastTableRowCell).html(footerHtml[index])
- })
- }
- const hiddenColumns = this.getHiddenColumns()
- hiddenColumns.forEach(row => {
- if (row.forceExport) {
- this.showColumn(row.field)
- }
- })
- if (typeof o.exportOptions.fileName === 'function') {
- options.fileName = o.exportOptions.fileName()
- }
- this.$el.tableExport($.extend({
- onAfterSaveToFile: () => {
- if (o.exportFooter) {
- this.load(data)
- }
- if (stateField) {
- this.showColumn(stateField)
- }
- if (isCardView) {
- this.toggleView()
- }
- hiddenColumns.forEach(row => {
- if (row.forceExport) {
- this.hideColumn(row.field)
- }
- })
- this.columns.forEach(row => {
- if (row.forceHide) {
- this.showColumn(row.field)
- }
- })
- if (callback) callback()
- }
- }, o.exportOptions, options))
- }
- if (o.exportDataType === 'all' && o.pagination) {
- const eventName = o.sidePagination === 'server' ?
- 'post-body.bs.table' : 'page-change.bs.table'
- const virtualScroll = this.options.virtualScroll
- this.$el.one(eventName, () => {
- setTimeout(() => {
- doExport(() => {
- this.options.virtualScroll = virtualScroll
- this.togglePagination()
- })
- }, 0)
- })
- this.options.virtualScroll = false
- this.togglePagination()
- this.trigger('export-saved', this.getData())
- } else if (o.exportDataType === 'selected') {
- let data = this.getData()
- let selectedData = this.getSelections()
- const pagination = o.pagination
- if (!selectedData.length) {
- return
- }
- if (o.sidePagination === 'server') {
- data = {
- total: o.totalRows,
- [this.options.dataField]: data
- }
- selectedData = {
- total: selectedData.length,
- [this.options.dataField]: selectedData
- }
- }
- this.load(selectedData)
- if (pagination) {
- this.togglePagination()
- }
- doExport(() => {
- if (pagination) {
- this.togglePagination()
- }
- this.load(data)
- })
- this.trigger('export-saved', selectedData)
- } else {
- doExport()
- this.trigger('export-saved', this.getData(true))
- }
- }
- updateSelected () {
- super.updateSelected()
- this.updateExportButton()
- }
- updateExportButton () {
- if (this.options.exportDataType === 'selected') {
- this.$export.find('> button')
- .prop('disabled', !this.getSelections().length)
- }
- }
- }
|