2019-04-04 03:54:14 +00:00
|
|
|
import List from '../list/list.vue'
|
2019-04-04 01:43:24 +00:00
|
|
|
import Checkbox from '../checkbox/checkbox.js'
|
|
|
|
|
2019-04-04 02:38:48 +00:00
|
|
|
const SelectableList = {
|
2019-04-04 01:43:24 +00:00
|
|
|
components: {
|
2019-04-04 03:54:14 +00:00
|
|
|
List,
|
2019-04-04 01:43:24 +00:00
|
|
|
Checkbox
|
|
|
|
},
|
2019-04-04 04:00:21 +00:00
|
|
|
props: List.props,
|
2019-04-04 03:26:13 +00:00
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
selected: []
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
2019-04-04 04:22:55 +00:00
|
|
|
toggle (checked, key) {
|
|
|
|
const oldChecked = this.isSelected(key)
|
2019-04-04 03:26:13 +00:00
|
|
|
if (checked !== oldChecked) {
|
|
|
|
if (checked) {
|
|
|
|
this.selected.push(key)
|
|
|
|
} else {
|
|
|
|
this.selected.splice(this.selected.indexOf(key), 1)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2019-04-04 04:22:55 +00:00
|
|
|
isSelected (key) {
|
|
|
|
return this.selected.indexOf(key) !== -1
|
2019-04-04 02:48:00 +00:00
|
|
|
}
|
2019-04-04 01:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-04-04 02:38:48 +00:00
|
|
|
export default SelectableList
|