forked from quasarframework/quasar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtable-header.js
More file actions
108 lines (99 loc) · 2.94 KB
/
table-header.js
File metadata and controls
108 lines (99 loc) · 2.94 KB
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
import QProgress from '../progress/QProgress.js'
import QCheckbox from '../checkbox/QCheckbox.js'
import QTh from './QTh.js'
export default {
methods: {
getTableHeader (h) {
const child = [ this.getTableHeaderRow(h) ]
if (this.loading) {
child.push(h('tr', { staticClass: 'q-table-progress animate-fade' }, [
h('td', { attrs: {colspan: '100%'} }, [
h(QProgress, {
props: {
color: this.color,
indeterminate: true,
height: '2px'
}
})
])
]))
}
return h('thead', child)
},
getTableHeaderRow (h) {
const
header = this.$scopedSlots.header,
headerCell = this.$scopedSlots['header-cell']
if (header) {
return header(this.addTableHeaderRowMeta({header: true, cols: this.computedCols, sort: this.sort, colsMap: this.computedColsMap}))
}
let mapFn
if (headerCell) {
mapFn = col => headerCell({col, cols: this.computedCols, sort: this.sort, colsMap: this.computedColsMap})
}
else {
mapFn = col => h(QTh, {
key: col.name,
props: {
props: {
col,
cols: this.computedCols,
sort: this.sort,
colsMap: this.computedColsMap
}
},
style: col.style,
'class': col.classes
}, col.label)
}
const child = this.computedCols.map(mapFn)
if (this.singleSelection && !this.grid) {
child.unshift(h('th', { staticClass: 'q-table-col-auto-width' }, [' ']))
}
else if (this.multipleSelection) {
child.unshift(h('th', { staticClass: 'q-table-col-auto-width' }, [
h(QCheckbox, {
props: {
color: this.color,
value: this.someRowsSelected ? null : this.allRowsSelected,
dark: this.dark
},
on: {
input: val => {
if (this.someRowsSelected) {
val = false
}
this.__updateSelection(
this.computedRows.map(row => row[this.rowKey]),
this.computedRows,
val
)
}
}
})
]))
}
return h('tr', child)
},
addTableHeaderRowMeta (data) {
if (this.multipleSelection) {
Object.defineProperty(data, 'selected', {
get: () => this.someRowsSelected ? 'some' : this.allRowsSelected,
set: val => {
if (this.someRowsSelected) {
val = false
}
this.__updateSelection(
this.computedRows.map(row => row[this.rowKey]),
this.computedRows,
val
)
}
})
data.partialSelected = this.someRowsSelected
data.multipleSelect = true
}
return data
}
}
}