757afb4de9
* add no-jquery rule and move event listeners to ember-concurrency tasks * remove unnecessary onchange and handleKeyDown actions * add element.closest polyfill and convert linked-block to use native dom apis * update pretender, fetch, page-object, add optional-features, remove ember/jquery * turn off jquery inclusion * remove jQuery.isPlainObject usage * violatedDirective isn't always formatted the same * use fetch and the ember-fetch adapter mixin * move to fetch and lowercase headers for pretender * display non-ember-data errors * use new async fn test style and lowercase headers in auth service test * setContext is not necessary with the new style tests and ember-cli-page-object - it actually triggers jquery usage * update ember-fetch, ember-cli-pretender * wait for permissions check * lowercase header name in auth test * refactor transit tests to one test per key type * simplify pollCluster helper * stop flakey tests by prefering the native fetch * avoid uncaught TransitionAborted error by navigating directly to unseal * unset model on controller after unloading it because controllers are singletons * update yarn.lock
130 lines
3.4 KiB
JavaScript
130 lines
3.4 KiB
JavaScript
import { inject as service } from '@ember/service';
|
|
import { or } from '@ember/object/computed';
|
|
import { isBlank } from '@ember/utils';
|
|
import { task, waitForEvent } from 'ember-concurrency';
|
|
import Component from '@ember/component';
|
|
import { set, get } from '@ember/object';
|
|
import FocusOnInsertMixin from 'vault/mixins/focus-on-insert';
|
|
import keys from 'vault/lib/keycodes';
|
|
|
|
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(),
|
|
wizard: service(),
|
|
|
|
mode: null,
|
|
emptyData: '{\n}',
|
|
onDataChange() {},
|
|
onRefresh() {},
|
|
model: null,
|
|
requestInFlight: or('model.isLoading', 'model.isReloading', 'model.isSaving'),
|
|
|
|
didReceiveAttrs() {
|
|
this._super(...arguments);
|
|
if (
|
|
(this.get('wizard.featureState') === 'details' && this.get('mode') === 'create') ||
|
|
(this.get('wizard.featureState') === 'role' && this.get('mode') === 'show')
|
|
) {
|
|
this.get('wizard').transitionFeatureMachine(
|
|
this.get('wizard.featureState'),
|
|
'CONTINUE',
|
|
this.get('backendType')
|
|
);
|
|
}
|
|
if (this.get('wizard.featureState') === 'displayRole') {
|
|
this.get('wizard').transitionFeatureMachine(
|
|
this.get('wizard.featureState'),
|
|
'NOOP',
|
|
this.get('backendType')
|
|
);
|
|
}
|
|
},
|
|
|
|
willDestroyElement() {
|
|
this._super(...arguments);
|
|
if (this.model && this.model.isError) {
|
|
this.model.rollbackAttributes();
|
|
}
|
|
},
|
|
|
|
waitForKeyUp: task(function*() {
|
|
while (true) {
|
|
let event = yield waitForEvent(document.body, 'keyup');
|
|
this.onEscape(event);
|
|
}
|
|
})
|
|
.on('didInsertElement')
|
|
.cancelOn('willDestroyElement'),
|
|
|
|
transitionToRoute() {
|
|
this.get('router').transitionTo(...arguments);
|
|
},
|
|
|
|
onEscape(e) {
|
|
if (e.keyCode !== keys.ESC || this.get('mode') !== 'show') {
|
|
return;
|
|
}
|
|
this.transitionToRoute(LIST_ROOT_ROUTE);
|
|
},
|
|
|
|
hasDataChanges() {
|
|
get(this, 'onDataChange')(get(this, 'model.hasDirtyAttributes'));
|
|
},
|
|
|
|
persist(method, successCallback) {
|
|
const model = get(this, 'model');
|
|
return model[method]().then(() => {
|
|
if (!get(model, 'isError')) {
|
|
if (this.get('wizard.featureState') === 'role') {
|
|
this.get('wizard').transitionFeatureMachine('role', 'CONTINUE', this.get('backendType'));
|
|
}
|
|
successCallback(model);
|
|
}
|
|
});
|
|
},
|
|
|
|
actions: {
|
|
createOrUpdate(type, event) {
|
|
event.preventDefault();
|
|
|
|
const modelId = this.get('model.id');
|
|
// prevent from submitting if there's no key
|
|
// maybe do something fancier later
|
|
if (type === 'create' && isBlank(modelId)) {
|
|
return;
|
|
}
|
|
|
|
this.persist('save', () => {
|
|
this.hasDataChanges();
|
|
this.transitionToRoute(SHOW_ROUTE, modelId);
|
|
});
|
|
},
|
|
|
|
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);
|
|
});
|
|
},
|
|
|
|
codemirrorUpdated(attr, val, codemirror) {
|
|
codemirror.performLint();
|
|
const hasErrors = codemirror.state.lint.marked.length > 0;
|
|
|
|
if (!hasErrors) {
|
|
set(this.get('model'), attr, JSON.parse(val));
|
|
}
|
|
},
|
|
},
|
|
});
|