mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-29 17:52:32 +00:00
* updates destination name filter to use FilterInput component * simplifies destinations list redirect condition * fixes issue with sync destination type filter and issue filtering by both name and type * unsets page query param in sync destination secrets route
104 lines
3.3 KiB
TypeScript
104 lines
3.3 KiB
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Component from '@glimmer/component';
|
|
import { action } from '@ember/object';
|
|
import { tracked } from '@glimmer/tracking';
|
|
import { task } from 'ember-concurrency';
|
|
import { waitFor } from '@ember/test-waiters';
|
|
import { inject as service } from '@ember/service';
|
|
import errorMessage from 'vault/utils/error-message';
|
|
|
|
import type SyncDestinationModel from 'vault/models/sync/destination';
|
|
import { ValidationMap } from 'vault/vault/app-types';
|
|
import type FlashMessageService from 'vault/services/flash-messages';
|
|
import type RouterService from '@ember/routing/router-service';
|
|
import type StoreService from 'vault/services/store';
|
|
|
|
interface Args {
|
|
destination: SyncDestinationModel;
|
|
}
|
|
|
|
export default class DestinationsCreateForm extends Component<Args> {
|
|
@service declare readonly flashMessages: FlashMessageService;
|
|
@service declare readonly router: RouterService;
|
|
@service declare readonly store: StoreService;
|
|
|
|
@tracked modelValidations: ValidationMap | null = null;
|
|
@tracked invalidFormMessage = '';
|
|
@tracked error = '';
|
|
|
|
get header() {
|
|
const { isNew, typeDisplayName, name } = this.args.destination;
|
|
return isNew
|
|
? {
|
|
title: `Create Destination for ${typeDisplayName}`,
|
|
breadcrumbs: [
|
|
{ label: 'Secrets Sync', route: 'secrets.overview' },
|
|
{ label: 'Select Destination', route: 'secrets.destinations.create' },
|
|
{ label: 'Create Destination' },
|
|
],
|
|
}
|
|
: {
|
|
title: `Edit ${name}`,
|
|
breadcrumbs: [
|
|
{ label: 'Secrets Sync', route: 'secrets.overview' },
|
|
{
|
|
label: 'Destination',
|
|
route: 'secrets.destinations.destination.secrets',
|
|
model: this.args.destination,
|
|
},
|
|
{ label: 'Edit Destination' },
|
|
],
|
|
};
|
|
}
|
|
|
|
@task
|
|
@waitFor
|
|
*save(event: Event) {
|
|
event.preventDefault();
|
|
this.error = '';
|
|
// clear out validation warnings
|
|
this.modelValidations = null;
|
|
const { destination } = this.args;
|
|
const { isValid, state, invalidFormMessage } = destination.validate();
|
|
|
|
this.modelValidations = isValid ? null : state;
|
|
this.invalidFormMessage = isValid ? '' : invalidFormMessage;
|
|
|
|
if (isValid) {
|
|
try {
|
|
const verb = destination.isNew ? 'created' : 'updated';
|
|
yield destination.save();
|
|
this.flashMessages.success(`Successfully ${verb} the destination ${destination.name}`);
|
|
this.store.clearDataset('sync/destination');
|
|
this.router.transitionTo(
|
|
'vault.cluster.sync.secrets.destinations.destination.details',
|
|
destination.type,
|
|
destination.name
|
|
);
|
|
} catch (error) {
|
|
this.error = errorMessage(error, 'Error saving destination. Please try again or contact support.');
|
|
}
|
|
}
|
|
}
|
|
|
|
@action
|
|
updateWarningValidation() {
|
|
if (this.args.destination.isNew) return;
|
|
// check for warnings on change
|
|
const { state } = this.args.destination.validate();
|
|
this.modelValidations = state;
|
|
}
|
|
|
|
@action
|
|
cancel() {
|
|
const { isNew } = this.args.destination;
|
|
const method = isNew ? 'unloadRecord' : 'rollbackAttributes';
|
|
this.args.destination[method]();
|
|
this.router.transitionTo(`vault.cluster.sync.secrets.destinations.${isNew ? 'create' : 'destination'}`);
|
|
}
|
|
}
|