vault/ui/lib/pki/addon/components/page/pki-overview.ts
Jordan Reimer c1754f5f97
[UI] Types Linting (#29702)
* 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
2025-02-25 16:08:51 -07:00

74 lines
1.9 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 { service } from '@ember/service';
import type Store from '@ember-data/store';
import type RouterService from '@ember/routing/router-service';
import type PkiIssuerModel from 'vault/models/pki/issuer';
import type PkiRoleModel from 'vault/models/pki/role';
interface Args {
issuers: PkiIssuerModel[] | number;
roles: PkiRoleModel[] | number;
engine: string;
}
export default class PkiOverview extends Component<Args> {
@service('app-router') declare readonly router: RouterService;
@service declare readonly store: Store;
@tracked rolesValue = '';
@tracked certificateValue = '';
@tracked issuerValue = '';
@action
transitionToViewCertificates() {
this.router.transitionTo(
'vault.cluster.secrets.backend.pki.certificates.certificate.details',
this.certificateValue
);
}
@action
transitionToIssueCertificates() {
this.router.transitionTo('vault.cluster.secrets.backend.pki.roles.role.generate', this.rolesValue);
}
@action
transitionToIssuerDetails() {
this.router.transitionTo('vault.cluster.secrets.backend.pki.issuers.issuer.details', this.issuerValue);
}
@action
handleRolesInput(roles: string) {
if (Array.isArray(roles)) {
this.rolesValue = roles[0];
} else {
this.rolesValue = roles;
}
}
@action
handleCertificateInput(certificate: string) {
if (Array.isArray(certificate)) {
this.certificateValue = certificate[0];
} else {
this.certificateValue = certificate;
}
}
@action
handleIssuerSearch(issuers: string) {
if (Array.isArray(issuers)) {
this.issuerValue = issuers[0];
} else {
this.issuerValue = issuers;
}
}
}