mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-16 19:47:02 +02:00
* UI: plumbing for pki tidy work (#20611) * update tidy model * Dynamic group on tidy based on version * UI: VAULT-16261 PKI autotidy config view (#20641) * UI: VAULT-16203 tidy status page (#20635) * ui: pki tidy form (#20630) * order routes to match tabs * add tidy routes * add tidy-status page component * update routes rename edit to configure, remove manage * add page component to route template * add comment * finish routing * change to queryRecord, delete old tidy file * remove findRecord * fix serializer name * tidy.index only needs controller empty state logic * build form and page components * update tidy model * alphabetize! * revert model changes * finish adapter * move form out of page folder in tests * refactor to accommodate model changes from chelseas pr * WIP tests * reuse shared fields in model * finish tests * update model hook and breadcrumbs * remove subtext for checkbox * fix tests add ACME fields * Update ui/app/adapters/pki/tidy.js * Update ui/app/adapters/pki/tidy.js * refactor intervalDuration using feedback suggested * move errors to second line, inside conditional brackets * add ternary operator to allByKey attr * surface error message * make polling request longer * UI: VAULT-16368 pki tidy custom method (#20696) * ui: adds empty state and updates modal (#20695) * add empty state to status page * update tidy modal * conditionally change cancel transition route for auto tidy form * teeny copy update * organize tidy-status conditoionals * a couple more template cleanups * fix conditional, change to settings * UI: VAULT-16367 VAULT-16378 Tidy acceptance tests + tidy toolbar cleanup (#20698) * update copy * move tidyRevokedCertIssuerAssociations up to applicable section * add tidy info to readme * update copy * UI: Add tidy as a tab to the error route (#20723) * small cleanup items * fix prettier * cancel polling when we leave tidy.index (status view) * revert changes to declaration file * remove space --------- Co-authored-by: Chelsea Shaw <cshaw@hashicorp.com> Co-authored-by: Chelsea Shaw <82459713+hashishaw@users.noreply.github.com> Co-authored-by: Kianna <30884335+kiannaquach@users.noreply.github.com>
74 lines
2.6 KiB
JavaScript
74 lines
2.6 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*/
|
|
|
|
import { SELECTORS as ROLEFORM } from './pki-role-form';
|
|
import { SELECTORS as GENERATECERT } from './pki-role-generate';
|
|
import { SELECTORS as KEYFORM } from './pki-key-form';
|
|
import { SELECTORS as KEYPAGES } from './page/pki-keys';
|
|
import { SELECTORS as ISSUERDETAILS } from './pki-issuer-details';
|
|
import { SELECTORS as CONFIGURATION } from './pki-configure-create';
|
|
import { SELECTORS as DELETE } from './pki-delete-all-issuers';
|
|
import { SELECTORS as TIDY } from './page/pki-tidy-form';
|
|
|
|
export const SELECTORS = {
|
|
breadcrumbContainer: '[data-test-breadcrumbs]',
|
|
breadcrumbs: '[data-test-breadcrumbs] li',
|
|
overviewBreadcrumb: '[data-test-breadcrumbs] li:nth-of-type(2) > a',
|
|
pageTitle: '[data-test-pki-role-page-title]',
|
|
alertBanner: '[data-test-alert-banner="alert"]',
|
|
emptyState: '[data-test-component="empty-state"]',
|
|
emptyStateTitle: '[data-test-empty-state-title]',
|
|
emptyStateLink: '.empty-state-actions a',
|
|
emptyStateMessage: '[data-test-empty-state-message]',
|
|
// TABS
|
|
overviewTab: '[data-test-secret-list-tab="Overview"]',
|
|
rolesTab: '[data-test-secret-list-tab="Roles"]',
|
|
issuersTab: '[data-test-secret-list-tab="Issuers"]',
|
|
certsTab: '[data-test-secret-list-tab="Certificates"]',
|
|
keysTab: '[data-test-secret-list-tab="Keys"]',
|
|
tidyTab: '[data-test-secret-list-tab="Tidy"]',
|
|
configTab: '[data-test-secret-list-tab="Configuration"]',
|
|
// ROLES
|
|
deleteRoleButton: '[data-test-pki-role-delete]',
|
|
generateCertLink: '[data-test-pki-role-generate-cert]',
|
|
signCertLink: '[data-test-pki-role-sign-cert]',
|
|
editRoleLink: '[data-test-pki-role-edit-link]',
|
|
createRoleLink: '[data-test-pki-role-create-link]',
|
|
roleForm: {
|
|
...ROLEFORM,
|
|
},
|
|
generateCertForm: {
|
|
...GENERATECERT,
|
|
},
|
|
// KEYS
|
|
keyForm: {
|
|
...KEYFORM,
|
|
},
|
|
keyPages: {
|
|
...KEYPAGES,
|
|
},
|
|
// ISSUERS
|
|
importIssuerLink: '[data-test-generate-issuer="import"]',
|
|
generateIssuerDropdown: '[data-test-issuer-generate-dropdown]',
|
|
generateIssuerRoot: '[data-test-generate-issuer="root"]',
|
|
generateIssuerIntermediate: '[data-test-generate-issuer="intermediate"]',
|
|
issuerPopupMenu: '[data-test-popup-menu-trigger]',
|
|
issuerPopupDetails: '[data-test-popup-menu-details] a',
|
|
issuerDetails: {
|
|
title: '[data-test-pki-issuer-page-title]',
|
|
...ISSUERDETAILS,
|
|
},
|
|
// CONFIGURATION
|
|
configuration: {
|
|
title: '[data-test-pki-configuration-page-title]',
|
|
emptyState: '[data-test-configuration-empty-state]',
|
|
pkiBetaBanner: '[data-test-pki-configuration-banner]',
|
|
pkiBetaBannerLink: '[data-test-pki-configuration-banner] a',
|
|
...CONFIGURATION,
|
|
...DELETE,
|
|
...TIDY,
|
|
},
|
|
};
|