Debounce mute word setting
This commit is contained in:
parent
b4cbbefbd2
commit
fa3b07352b
@ -1,4 +1,4 @@
|
|||||||
import { filter, trim } from 'lodash'
|
import { filter, trim, debounce } from 'lodash'
|
||||||
import BooleanSetting from '../helpers/boolean_setting.vue'
|
import BooleanSetting from '../helpers/boolean_setting.vue'
|
||||||
import ChoiceSetting from '../helpers/choice_setting.vue'
|
import ChoiceSetting from '../helpers/choice_setting.vue'
|
||||||
import IntegerSetting from '../helpers/integer_setting.vue'
|
import IntegerSetting from '../helpers/integer_setting.vue'
|
||||||
@ -29,11 +29,16 @@ const FilteringTab = {
|
|||||||
},
|
},
|
||||||
set (value) {
|
set (value) {
|
||||||
this.muteWordsStringLocal = value
|
this.muteWordsStringLocal = value
|
||||||
|
this.debouncedSetMuteWords(value)
|
||||||
|
}
|
||||||
|
},
|
||||||
|
debouncedSetMuteWords () {
|
||||||
|
return debounce((value) => {
|
||||||
this.$store.dispatch('setOption', {
|
this.$store.dispatch('setOption', {
|
||||||
name: 'muteWords',
|
name: 'muteWords',
|
||||||
value: filter(value.split('\n'), (word) => trim(word).length > 0)
|
value: filter(value.split('\n'), (word) => trim(word).length > 0)
|
||||||
})
|
})
|
||||||
}
|
}, 1000)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
// Updating nested properties
|
// Updating nested properties
|
||||||
|
Loading…
Reference in New Issue
Block a user