mirror of
				https://github.com/optim-enterprises-bv/vault.git
				synced 2025-10-30 18:17:55 +00:00 
			
		
		
		
	 2ea627aed3
			
		
	
	2ea627aed3
	
	
	
		
			
			* Update transform role delete button to be ConfirmAction with dropdown * Set backend on fetched record so that it saves correctly * Update transformation after role transformations changed works * Clean up transform adapter * Add role to allowed_roles on added transformations and remove from removed transformations on role save, with flash message * Add backend to transform role model, and update serializer to add backend to paginated results * Clean up error message handling * Connect backend to transform roles list response * Capabilities on transform roles is correct * Fix cancel button on transform role edit location * Fix model path * Remove unnecessary tab param from controller * Add backend to transform model
		
			
				
	
	
		
			88 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| import { inject as service } from '@ember/service';
 | |
| import { or } from '@ember/object/computed';
 | |
| import { isBlank } from '@ember/utils';
 | |
| import Component from '@ember/component';
 | |
| import { set, get } from '@ember/object';
 | |
| import FocusOnInsertMixin from 'vault/mixins/focus-on-insert';
 | |
| 
 | |
| const LIST_ROOT_ROUTE = 'vault.cluster.secrets.backend.list-root';
 | |
| const SHOW_ROUTE = 'vault.cluster.secrets.backend.show';
 | |
| 
 | |
| export default Component.extend(FocusOnInsertMixin, {
 | |
|   router: service(),
 | |
| 
 | |
|   mode: null,
 | |
|   onDataChange() {},
 | |
|   onRefresh() {},
 | |
|   model: null,
 | |
|   requestInFlight: or('model.isLoading', 'model.isReloading', 'model.isSaving'),
 | |
| 
 | |
|   init() {
 | |
|     this._super(...arguments);
 | |
|     this.set('backendType', 'transform');
 | |
|   },
 | |
| 
 | |
|   willDestroyElement() {
 | |
|     this._super(...arguments);
 | |
|     if (this.model && this.model.isError) {
 | |
|       this.model.rollbackAttributes();
 | |
|     }
 | |
|   },
 | |
| 
 | |
|   transitionToRoute() {
 | |
|     this.get('router').transitionTo(...arguments);
 | |
|   },
 | |
| 
 | |
|   modelPrefixFromType(modelType) {
 | |
|     let modelPrefix = '';
 | |
|     if (modelType && modelType.startsWith('transform/')) {
 | |
|       modelPrefix = `${modelType.replace('transform/', '')}/`;
 | |
|     }
 | |
|     return modelPrefix;
 | |
|   },
 | |
|   persist(method, successCallback) {
 | |
|     const model = get(this, 'model');
 | |
|     return model[method]().then(() => {
 | |
|       successCallback(model);
 | |
|     });
 | |
|   },
 | |
| 
 | |
|   applyChanges(type, callback = () => {}) {
 | |
|     const modelId = this.get('model.id') || this.get('model.name'); // transform comes in as model.name
 | |
|     const modelPrefix = this.modelPrefixFromType(this.get('model.constructor.modelName'));
 | |
|     // prevent from submitting if there's no key
 | |
|     // maybe do something fancier later
 | |
|     if (type === 'create' && isBlank(modelId)) {
 | |
|       return;
 | |
|     }
 | |
| 
 | |
|     this.persist('save', () => {
 | |
|       callback();
 | |
|       this.transitionToRoute(SHOW_ROUTE, `${modelPrefix}${modelId}`);
 | |
|     });
 | |
|   },
 | |
| 
 | |
|   actions: {
 | |
|     createOrUpdate(type, event) {
 | |
|       event.preventDefault();
 | |
| 
 | |
|       this.applyChanges(type);
 | |
|     },
 | |
| 
 | |
|     setValue(key, event) {
 | |
|       set(get(this, 'model'), key, event.target.checked);
 | |
|     },
 | |
| 
 | |
|     refresh() {
 | |
|       this.get('onRefresh')();
 | |
|     },
 | |
| 
 | |
|     delete() {
 | |
|       this.persist('destroyRecord', () => {
 | |
|         this.hasDataChanges();
 | |
|         this.transitionToRoute(LIST_ROOT_ROUTE);
 | |
|       });
 | |
|     },
 | |
|   },
 | |
| });
 |