pleroma-fe/src/components/selectable_list/selectable_list.js

34 lines
681 B
JavaScript
Raw Normal View History

import List from '../list/list.vue'
2019-04-04 01:43:24 +00:00
import Checkbox from '../checkbox/checkbox.js'
const SelectableList = {
2019-04-04 01:43:24 +00:00
components: {
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: {
toggle (checked, item) {
const oldChecked = this.isSelected(item)
2019-04-04 03:26:13 +00:00
if (checked !== oldChecked) {
const key = this.getKey(item)
if (checked) {
this.selected.push(key)
} else {
this.selected.splice(this.selected.indexOf(key), 1)
}
}
},
isSelected (item) {
2019-04-04 03:26:13 +00:00
return this.selected.indexOf(this.getKey(item)) !== -1
}
2019-04-04 01:43:24 +00:00
}
}
export default SelectableList