bootstrap-vue
Version:
With more than 85 components, over 45 available plugins, several directives, and 1000+ icons, BootstrapVue provides one of the most comprehensive implementations of the Bootstrap v4 component and grid system available for Vue.js v2.6, complete with extens
270 lines (259 loc) • 9.94 kB
JavaScript
import { NAME_TABLE } from '../../../constants/components'
import { RX_SPACES } from '../../../constants/regex'
import cloneDeep from '../../../utils/clone-deep'
import identity from '../../../utils/identity'
import looseEqual from '../../../utils/loose-equal'
import { concat } from '../../../utils/array'
import { isFunction, isString, isRegExp } from '../../../utils/inspect'
import { toInteger } from '../../../utils/number'
import { escapeRegExp } from '../../../utils/string'
import { warn } from '../../../utils/warn'
import stringifyRecordValues from './stringify-record-values'
const DEBOUNCE_DEPRECATED_MSG =
'Prop "filter-debounce" is deprecated. Use the debounce feature of "<b-form-input>" instead.'
export default {
props: {
filter: {
type: [String, RegExp, Object, Array],
default: null
},
filterFunction: {
type: Function
// default: null
},
filterIgnoredFields: {
type: Array
// default: undefined
},
filterIncludedFields: {
type: Array
// default: undefined
},
filterDebounce: {
type: [Number, String],
deprecated: DEBOUNCE_DEPRECATED_MSG,
default: 0,
validator: val => /^\d+/.test(String(val))
}
},
data() {
return {
// Flag for displaying which empty slot to show and some event triggering
isFiltered: false,
// Where we store the copy of the filter criteria after debouncing
// We pre-set it with the sanitized filter value
localFilter: this.filterSanitize(this.filter)
}
},
computed: {
computedFilterIgnored() {
return concat(this.filterIgnoredFields || []).filter(identity)
},
computedFilterIncluded() {
return concat(this.filterIncludedFields || []).filter(identity)
},
computedFilterDebounce() {
const ms = toInteger(this.filterDebounce, 0)
/* istanbul ignore next */
if (ms > 0) {
warn(DEBOUNCE_DEPRECATED_MSG, NAME_TABLE)
}
return ms
},
localFiltering() {
return this.hasProvider ? !!this.noProviderFiltering : true
},
// For watching changes to `filteredItems` vs `localItems`
filteredCheck() {
return {
filteredItems: this.filteredItems,
localItems: this.localItems,
localFilter: this.localFilter
}
},
// Sanitized/normalize filter-function prop
localFilterFn() {
// Return `null` to signal to use internal filter function
return isFunction(this.filterFunction) ? this.filterFunction : null
},
// Returns the records in `localItems` that match the filter criteria
// Returns the original `localItems` array if not sorting
filteredItems() {
const items = this.localItems || []
// Note the criteria is debounced and sanitized
const criteria = this.localFilter
// Resolve the filtering function, when requested
// We prefer the provided filtering function and fallback to the internal one
// When no filtering criteria is specified the filtering factories will return `null`
const filterFn = this.localFiltering
? this.filterFnFactory(this.localFilterFn, criteria) ||
this.defaultFilterFnFactory(criteria)
: null
// We only do local filtering when requested and there are records to filter
return filterFn && items.length > 0 ? items.filter(filterFn) : items
}
},
watch: {
// Watch for debounce being set to 0
computedFilterDebounce(newVal) {
if (!newVal && this.$_filterTimer) {
this.clearFilterTimer()
this.localFilter = this.filterSanitize(this.filter)
}
},
// Watch for changes to the filter criteria, and debounce if necessary
filter: {
// We need a deep watcher in case the user passes
// an object when using `filter-function`
deep: true,
handler(newCriteria) {
const timeout = this.computedFilterDebounce
this.clearFilterTimer()
if (timeout && timeout > 0) {
// If we have a debounce time, delay the update of `localFilter`
this.$_filterTimer = setTimeout(() => {
this.localFilter = this.filterSanitize(newCriteria)
}, timeout)
} else {
// Otherwise, immediately update `localFilter` with `newFilter` value
this.localFilter = this.filterSanitize(newCriteria)
}
}
},
// Watch for changes to the filter criteria and filtered items vs `localItems`
// Set visual state and emit events as required
filteredCheck({ filteredItems, localFilter }) {
// Determine if the dataset is filtered or not
let isFiltered = false
if (!localFilter) {
// If filter criteria is falsey
isFiltered = false
} else if (looseEqual(localFilter, []) || looseEqual(localFilter, {})) {
// If filter criteria is an empty array or object
isFiltered = false
} else if (localFilter) {
// If filter criteria is truthy
isFiltered = true
}
if (isFiltered) {
this.$emit('filtered', filteredItems, filteredItems.length)
}
this.isFiltered = isFiltered
},
isFiltered(newVal, oldVal) {
if (newVal === false && oldVal === true) {
// We need to emit a filtered event if isFiltered transitions from true to
// false so that users can update their pagination controls.
this.$emit('filtered', this.localItems, this.localItems.length)
}
}
},
created() {
// Create private non-reactive props
this.$_filterTimer = null
// If filter is "pre-set", set the criteria
// This will trigger any watchers/dependents
// this.localFilter = this.filterSanitize(this.filter)
// Set the initial filtered state in a `$nextTick()` so that
// we trigger a filtered event if needed
this.$nextTick(() => {
this.isFiltered = Boolean(this.localFilter)
})
},
beforeDestroy() /* istanbul ignore next */ {
this.clearFilterTimer()
},
methods: {
clearFilterTimer() {
clearTimeout(this.$_filterTimer)
this.$_filterTimer = null
},
filterSanitize(criteria) {
// Sanitizes filter criteria based on internal or external filtering
if (
this.localFiltering &&
!this.localFilterFn &&
!(isString(criteria) || isRegExp(criteria))
) {
// If using internal filter function, which only accepts string or RegExp,
// return '' to signify no filter
return ''
}
// Could be a string, object or array, as needed by external filter function
// We use `cloneDeep` to ensure we have a new copy of an object or array
// without Vue's reactive observers
return cloneDeep(criteria)
},
// Filter Function factories
filterFnFactory(filterFn, criteria) {
// Wrapper factory for external filter functions
// Wrap the provided filter-function and return a new function
// Returns `null` if no filter-function defined or if criteria is falsey
// Rather than directly grabbing `this.computedLocalFilterFn` or `this.filterFunction`
// we have it passed, so that the caller computed prop will be reactive to changes
// in the original filter-function (as this routine is a method)
if (
!filterFn ||
!isFunction(filterFn) ||
!criteria ||
looseEqual(criteria, []) ||
looseEqual(criteria, {})
) {
return null
}
// Build the wrapped filter test function, passing the criteria to the provided function
const fn = item => {
// Generated function returns true if the criteria matches part
// of the serialized data, otherwise false
return filterFn(item, criteria)
}
// Return the wrapped function
return fn
},
defaultFilterFnFactory(criteria) {
// Generates the default filter function, using the given filter criteria
// Returns `null` if no criteria or criteria format not supported
if (!criteria || !(isString(criteria) || isRegExp(criteria))) {
// Built in filter can only support strings or RegExp criteria (at the moment)
return null
}
// Build the RegExp needed for filtering
let regExp = criteria
if (isString(regExp)) {
// Escape special RegExp characters in the string and convert contiguous
// whitespace to \s+ matches
const pattern = escapeRegExp(criteria).replace(RX_SPACES, '\\s+')
// Build the RegExp (no need for global flag, as we only need
// to find the value once in the string)
regExp = new RegExp(`.*${pattern}.*`, 'i')
}
// Generate the wrapped filter test function to use
const fn = item => {
// This searches all row values (and sub property values) in the entire (excluding
// special `_` prefixed keys), because we convert the record to a space-separated
// string containing all the value properties (recursively), even ones that are
// not visible (not specified in this.fields)
// Users can ignore filtering on specific fields, or on only certain fields,
// and can optionall specify searching results of fields with formatter
//
// TODO: Enable searching on scoped slots (optional, as it will be SLOW)
//
// Generated function returns true if the criteria matches part of
// the serialized data, otherwise false
//
// We set `lastIndex = 0` on the `RegExp` in case someone specifies the `/g` global flag
regExp.lastIndex = 0
return regExp.test(
stringifyRecordValues(
item,
this.computedFilterIgnored,
this.computedFilterIncluded,
this.computedFieldsObj
)
)
}
// Return the generated function
return fn
}
}
}