663e344f87
* add common-prefix util and use it in the list controller * add test * browser js for in-repo dirs * address PR feedback
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
import { computed } from '@ember/object';
|
|
import Mixin from '@ember/object/mixin';
|
|
import escapeStringRegexp from 'escape-string-regexp';
|
|
import commonPrefix from 'vault/utils/common-prefix';
|
|
|
|
export default Mixin.create({
|
|
queryParams: {
|
|
page: 'page',
|
|
pageFilter: 'pageFilter',
|
|
},
|
|
|
|
page: 1,
|
|
pageFilter: null,
|
|
filter: null,
|
|
filterFocused: false,
|
|
|
|
isLoading: false,
|
|
|
|
filterMatchesKey: computed('filter', 'model', 'model.[]', function() {
|
|
let { filter, model: content } = this;
|
|
return !!(content.length && content.findBy('id', filter));
|
|
}),
|
|
|
|
firstPartialMatch: computed('filter', 'model', 'model.[]', 'filterMatchesKey', function() {
|
|
let { filter, filterMatchesKey, model: content } = this;
|
|
let re = new RegExp('^' + escapeStringRegexp(filter));
|
|
let matchSet = content.filter(key => re.test(key.id));
|
|
let match = matchSet[0];
|
|
|
|
if (filterMatchesKey || !match) {
|
|
return null;
|
|
}
|
|
|
|
let sharedPrefix = commonPrefix(content);
|
|
// if we already are filtering the prefix, then next we want
|
|
// the exact match
|
|
if (filter === sharedPrefix || matchSet.length === 1) {
|
|
return match;
|
|
}
|
|
return { id: sharedPrefix };
|
|
}),
|
|
|
|
actions: {
|
|
setFilter(val) {
|
|
this.set('filter', val);
|
|
},
|
|
|
|
setFilterFocus(bool) {
|
|
this.set('filterFocused', bool);
|
|
},
|
|
},
|
|
});
|