You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.3 KiB
63 lines
1.3 KiB
import PropTypes from '../_util/vue-types'
|
|
|
|
import { Store } from './createStore'
|
|
|
|
const BodyRowProps = {
|
|
store: Store,
|
|
rowKey: PropTypes.oneOfType([
|
|
PropTypes.string,
|
|
PropTypes.number,
|
|
]),
|
|
prefixCls: PropTypes.string,
|
|
}
|
|
|
|
export default function createTableRow (Component = 'tr') {
|
|
const BodyRow = {
|
|
name: 'BodyRow',
|
|
props: BodyRowProps,
|
|
data () {
|
|
const { selectedRowKeys } = this.store.getState()
|
|
|
|
return {
|
|
selected: selectedRowKeys.indexOf(this.rowKey) >= 0,
|
|
}
|
|
},
|
|
|
|
mounted () {
|
|
this.subscribe()
|
|
},
|
|
|
|
beforeDestroy () {
|
|
if (this.unsubscribe) {
|
|
this.unsubscribe()
|
|
}
|
|
},
|
|
methods: {
|
|
subscribe () {
|
|
const { store, rowKey } = this
|
|
this.unsubscribe = store.subscribe(() => {
|
|
const { selectedRowKeys } = this.store.getState()
|
|
const selected = selectedRowKeys.indexOf(rowKey) >= 0
|
|
if (selected !== this.selected) {
|
|
this.selected = selected
|
|
}
|
|
})
|
|
},
|
|
},
|
|
|
|
render () {
|
|
const className = {
|
|
[`${this.prefixCls}-row-selected`]: this.selected,
|
|
}
|
|
|
|
return (
|
|
<Component class={className} {...{ on: this.$listeners }}>
|
|
{this.$slots.default}
|
|
</Component>
|
|
)
|
|
},
|
|
}
|
|
|
|
return BodyRow
|
|
}
|