mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-11-03 20:17:59 +00:00 
			
		
		
		
	* directly depend on route-recognizer * add path encode helper using route-recognizer normalizer methods * encode user-entered paths/ids for places we're not using the built-in ember data buildUrl method * encode secret link params * decode params from the url, and encode for linked-block and navigate-input components * add escape-string-regexp * use list-controller mixin and escape the string when contructing new Regex objects * encode paths in the console service * add acceptance tests for kv secrets * make encoding in linked-block an attribute, and use it on secret lists * egp endpoints are enterprise-only, so include 'enterprise' text in the test * fix routing test and exclude single quote from encoding tests * encode cli string before tokenizing * encode auth_path for use with urlFor * add test for single quote via UI input instead of web cli
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { computed } from '@ember/object';
 | 
						|
import Mixin from '@ember/object/mixin';
 | 
						|
import escapeStringRegexp from 'escape-string-regexp';
 | 
						|
 | 
						|
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() {
 | 
						|
    var filter = this.get('filter');
 | 
						|
    var content = this.get('model');
 | 
						|
    return !!(content.length && content.findBy('id', filter));
 | 
						|
  }),
 | 
						|
 | 
						|
  firstPartialMatch: computed('filter', 'model', 'model.[]', 'filterMatchesKey', function() {
 | 
						|
    var filter = this.get('filter');
 | 
						|
    var content = this.get('model');
 | 
						|
    var filterMatchesKey = this.get('filterMatchesKey');
 | 
						|
    var re = new RegExp('^' + escapeStringRegexp(filter));
 | 
						|
    return filterMatchesKey
 | 
						|
      ? null
 | 
						|
      : content.find(function(key) {
 | 
						|
          return re.test(key.get('id'));
 | 
						|
        });
 | 
						|
  }),
 | 
						|
 | 
						|
  actions: {
 | 
						|
    setFilter(val) {
 | 
						|
      this.set('filter', val);
 | 
						|
    },
 | 
						|
 | 
						|
    setFilterFocus(bool) {
 | 
						|
      this.set('filterFocused', bool);
 | 
						|
    },
 | 
						|
  },
 | 
						|
});
 |