mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-22 23:21:08 +02:00
* adds linting for types to scripts and lint staged * fixes issue with AdapterError type * moves lint-staged setup out of package.json and into config file * fixes ember data store service type * fixes route params types * fixes model types * fixes general type errors * fixes ts declaration errors in js files * adds missing copyright headers * fixes issue accessing capabilities model properties * ignores AdapterError import type error * more updates to AdapterError type * adds comment to lint-staged config * moves ember data store type to @ember-data namespace * updates store import * moves AdapterError type to @ember-data namespace * turns ember-data import eslint rule back on
55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Route from '@ember/routing/route';
|
|
import { service } from '@ember/service';
|
|
import { withConfig } from 'core/decorators/fetch-secrets-engine-config';
|
|
|
|
import type Store from '@ember-data/store';
|
|
import type SecretMountPath from 'vault/services/secret-mount-path';
|
|
import type Transition from '@ember/routing/transition';
|
|
import type LdapConfigModel from 'vault/models/ldap/config';
|
|
import type SecretEngineModel from 'vault/models/secret-engine';
|
|
import type Controller from '@ember/controller';
|
|
import type { Breadcrumb } from 'vault/vault/app-types';
|
|
import type AdapterError from '@ember-data/adapter/error';
|
|
|
|
interface RouteModel {
|
|
backendModel: SecretEngineModel;
|
|
configModel: LdapConfigModel;
|
|
configError: AdapterError;
|
|
}
|
|
interface RouteController extends Controller {
|
|
breadcrumbs: Array<Breadcrumb>;
|
|
model: RouteModel;
|
|
}
|
|
|
|
@withConfig('ldap/config')
|
|
export default class LdapConfigurationRoute extends Route {
|
|
@service declare readonly store: Store;
|
|
@service declare readonly secretMountPath: SecretMountPath;
|
|
|
|
declare configModel: LdapConfigModel;
|
|
declare configError: AdapterError;
|
|
|
|
model() {
|
|
return {
|
|
backendModel: this.modelFor('application'),
|
|
configModel: this.configModel,
|
|
configError: this.configError,
|
|
};
|
|
}
|
|
|
|
setupController(controller: RouteController, resolvedModel: RouteModel, transition: Transition) {
|
|
super.setupController(controller, resolvedModel, transition);
|
|
|
|
controller.breadcrumbs = [
|
|
{ label: 'Secrets', route: 'secrets', linkExternal: true },
|
|
{ label: resolvedModel.backendModel.id, route: 'overview', model: resolvedModel.backendModel.id },
|
|
{ label: 'Configuration' },
|
|
];
|
|
}
|
|
}
|