mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-31 02:28:09 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { inject as service } from '@ember/service';
 | |
| import Component from '@glimmer/component';
 | |
| import { action } from '@ember/object';
 | |
| import { getOwner } from '@ember/application';
 | |
| 
 | |
| /**
 | |
|  * @module GeneratedItemList
 | |
|  * The `GeneratedItemList` component lists generated items related to mounts (e.g. groups, roles, users)
 | |
|  *
 | |
|  * @example
 | |
|  * ```js
 | |
|  * <GeneratedItemList @model={{model}} @itemType={{itemType}} @paths={{this.paths}} @methodModel={{this.methodModel}}/>
 | |
|  * ```
 | |
|  *
 | |
|  * @param {class} model=null - The corresponding item model that is being configured.
 | |
|  * @param {string} itemType - The type of item displayed.
 | |
|  * @param {array} paths - Relevant to the link for the LinkTo element.
 | |
|  * @param {class} methodModel - Model for the particular method selected.
 | |
|  */
 | |
| 
 | |
| export default class GeneratedItemList extends Component {
 | |
|   @service router;
 | |
|   @service store;
 | |
| 
 | |
|   get model() {
 | |
|     return this.args.model || null;
 | |
|   }
 | |
|   get itemType() {
 | |
|     return this.args.itemType || null;
 | |
|   }
 | |
| 
 | |
|   @action
 | |
|   refreshItemList() {
 | |
|     const route = getOwner(this).lookup(`route:${this.router.currentRouteName}`);
 | |
|     this.store.clearAllDatasets();
 | |
|     route.refresh();
 | |
|   }
 | |
| }
 | 
