-
-
Save mtermoul/540f9a41c4a0bbfbdf1d20ae270bd0d7 to your computer and use it in GitHub Desktop.
col-admin/src/views/Home.vue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
... | |
methods: { | |
filterByTextContains (list, fieldName, fieldValue) { | |
const re = new RegExp(fieldValue, 'i') | |
return this.filterByRegExp(list, fieldName, fieldValue, re) | |
}, | |
filterByTextStartsWith (list, fieldName, fieldValue) { | |
const re = new RegExp('^' + fieldValue, 'i') | |
return this.filterByRegExp(list, fieldName, fieldValue, re) | |
}, | |
filterByRegExp(list, fieldName, fieldValue, regExp) { | |
return list.filter(item => { | |
if(item[fieldName] !== undefined) { | |
return regExp.test(item[fieldName]) | |
} else { | |
return true | |
} | |
}) | |
}, | |
... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment