mirror of
https://github.com/optim-enterprises-bv/vault.git
synced 2025-10-29 17:52:32 +00: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
57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
TypeScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import Route from '@ember/routing/route';
|
|
import { service } from '@ember/service';
|
|
import { hash } from 'rsvp';
|
|
|
|
import type PaginationService from 'vault/services/pagination';
|
|
import type SyncDestinationModel from 'vault/vault/models/sync/destination';
|
|
import type SyncAssociationModel from 'vault/vault/models/sync/association';
|
|
import type Controller from '@ember/controller';
|
|
|
|
interface SyncDestinationSecretsRouteParams {
|
|
page?: string;
|
|
}
|
|
|
|
interface SyncDestinationSecretsRouteModel {
|
|
destination: SyncDestinationModel;
|
|
associations: SyncAssociationModel[];
|
|
}
|
|
|
|
interface SyncDestinationSecretsController extends Controller {
|
|
model: SyncDestinationSecretsRouteModel;
|
|
page: number | undefined;
|
|
}
|
|
|
|
export default class SyncDestinationSecretsRoute extends Route {
|
|
@service declare readonly pagination: PaginationService;
|
|
|
|
queryParams = {
|
|
page: {
|
|
refreshModel: true,
|
|
},
|
|
};
|
|
|
|
model(params: SyncDestinationSecretsRouteParams) {
|
|
const destination = this.modelFor('secrets.destinations.destination') as SyncDestinationModel;
|
|
return hash({
|
|
destination,
|
|
associations: this.pagination.lazyPaginatedQuery('sync/association', {
|
|
responsePath: 'data.keys',
|
|
page: Number(params.page) || 1,
|
|
destinationType: destination.type,
|
|
destinationName: destination.name,
|
|
}),
|
|
});
|
|
}
|
|
|
|
resetController(controller: SyncDestinationSecretsController, isExiting: boolean) {
|
|
if (isExiting) {
|
|
controller.set('page', undefined);
|
|
}
|
|
}
|
|
}
|