5c2a08de6d
* Update browserslist * Add browserslistrc * ember-cli-update --to 3.26, fix conflicts * Run codemodes that start with ember-* * More codemods - before cp* * More codemods (curly data-test-*) * WIP ember-basic-dropdown template errors * updates ember-basic-dropdown and related deps to fix build issues * updates basic dropdown instances to new version API * updates more deps -- ember-template-lint is working again * runs no-implicit-this codemod * creates and runs no-quoteless-attributes codemod * runs angle brackets codemod * updates lint:hbs globs to only touch hbs files * removes yield only templates * creates and runs deprecated args transform * supresses lint error for invokeAction on LinkTo component * resolves remaining ambiguous path lint errors * resolves simple-unless lint errors * adds warnings for deprecated tagName arg on LinkTo components * adds warnings for remaining curly component invocation * updates global template lint rules * resolves remaining template lint errors * disables some ember specfic lint rules that target pre octane patterns * js lint fix run * resolves remaining js lint errors * fixes test run * adds npm-run-all dep * fixes test attribute issues * fixes console acceptance tests * fixes tests * adds yield only wizard/tutorial-active template * fixes more tests * attempts to fix more flaky tests * removes commented out settled in transit test * updates deprecations workflow and adds initializer to filter by version * updates flaky policies acl old test * updates to flaky transit test * bumps ember deps down to LTS version * runs linters after main merge * fixes client count tests after bad merge conflict fixes * fixes client count history test * more updates to lint config * another round of hbs lint fixes after extending stylistic rule * updates lint-staged commands * removes indent eslint rule since it seems to break things * fixes bad attribute in transform-edit-form template * test fixes * fixes enterprise tests * adds changelog * removes deprecated ember-concurrency-test-waiters dep and adds @ember/test-waiters * flaky test fix Co-authored-by: hashishaw <cshaw@hashicorp.com>
109 lines
3.4 KiB
JavaScript
109 lines
3.4 KiB
JavaScript
/**
|
|
* @module SecretEditToolbar
|
|
* SecretEditToolbar component is the toolbar component displaying the JSON toggle and the actions like delete in the show mode.
|
|
*
|
|
* @example
|
|
* ```js
|
|
* <SecretEditToolbar
|
|
* @mode={{mode}}
|
|
* @model={{this.model}}
|
|
* @isV2={{isV2}}
|
|
* @isWriteWithoutRead={{isWriteWithoutRead}}
|
|
* @secretDataIsAdvanced={{secretDataIsAdvanced}}
|
|
* @showAdvancedMode={{showAdvancedMode}}
|
|
* @modelForData={{this.modelForData}}
|
|
* @navToNearestAncestor={{this.navToNearestAncestor}}
|
|
* @canUpdateSecretData={{canUpdateSecretData}}
|
|
* @codemirrorString={{codemirrorString}}
|
|
* @wrappedData={{wrappedData}}
|
|
* @editActions={{hash
|
|
toggleAdvanced=(action "toggleAdvanced")
|
|
refresh=(action "refresh")
|
|
}}
|
|
* />
|
|
* ```
|
|
|
|
* @param {string} mode - show, create, edit. The view.
|
|
* @param {object} model - the model passed from the parent secret-edit
|
|
* @param {boolean} isV2 - KV type
|
|
* @param {boolean} isWriteWithoutRead - boolean describing permissions
|
|
* @param {boolean} secretDataIsAdvanced - used to determine if show JSON toggle
|
|
* @param {boolean} showAdvacnedMode - used for JSON toggle
|
|
* @param {object} modelForData - a modified version of the model with secret data
|
|
* @param {string} navToNearestAncestor - route to nav to if press cancel
|
|
* @param {boolean} canUpdateSecretData - permissions that show the create new version button or not.
|
|
* @param {string} codemirrorString - used to copy the JSON
|
|
* @param {object} wrappedData - when copy the data it's the token of the secret returned.
|
|
* @param {object} editActions - actions passed from parent to child
|
|
*/
|
|
/* eslint ember/no-computed-properties-in-native-classes: 'warn' */
|
|
import Component from '@glimmer/component';
|
|
import { action } from '@ember/object';
|
|
import { not } from '@ember/object/computed';
|
|
import { inject as service } from '@ember/service';
|
|
import { tracked } from '@glimmer/tracking';
|
|
|
|
export default class SecretEditToolbar extends Component {
|
|
@service store;
|
|
@service flashMessages;
|
|
|
|
@tracked wrappedData = null;
|
|
@tracked isWrapping = false;
|
|
@not('wrappedData') showWrapButton;
|
|
|
|
@action
|
|
clearWrappedData() {
|
|
this.wrappedData = null;
|
|
}
|
|
|
|
@action
|
|
handleCopyError() {
|
|
this.flashMessages.danger('Could Not Copy Wrapped Data');
|
|
this.send('clearWrappedData');
|
|
}
|
|
|
|
@action
|
|
handleCopySuccess() {
|
|
this.flashMessages.success('Copied Wrapped Data!');
|
|
this.send('clearWrappedData');
|
|
}
|
|
|
|
@action
|
|
handleWrapClick() {
|
|
this.isWrapping = true;
|
|
if (this.args.isV2) {
|
|
this.store
|
|
.adapterFor('secret-v2-version')
|
|
.queryRecord(this.args.modelForData.id, { wrapTTL: 1800 })
|
|
.then((resp) => {
|
|
this.wrappedData = resp.wrap_info.token;
|
|
this.flashMessages.success('Secret Successfully Wrapped!');
|
|
})
|
|
.catch(() => {
|
|
this.flashMessages.danger('Could Not Wrap Secret');
|
|
})
|
|
.finally(() => {
|
|
this.isWrapping = false;
|
|
});
|
|
} else {
|
|
this.store
|
|
.adapterFor('secret')
|
|
.queryRecord(null, null, {
|
|
backend: this.args.model.backend,
|
|
id: this.args.modelForData.id,
|
|
wrapTTL: 1800,
|
|
})
|
|
.then((resp) => {
|
|
this.wrappedData = resp.wrap_info.token;
|
|
this.flashMessages.success('Secret Successfully Wrapped!');
|
|
})
|
|
.catch(() => {
|
|
this.flashMessages.danger('Could Not Wrap Secret');
|
|
})
|
|
.finally(() => {
|
|
this.isWrapping = false;
|
|
});
|
|
}
|
|
}
|
|
}
|