From 805cc41bce1759ab97875d8cbb329e63acd38f6e Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Thu, 24 Aug 2023 20:36:59 +0100 Subject: [PATCH] TLS features --- src/components/misc/Loader.tsx | 12 +++++++++++- src/components/misc/ProgressBar.tsx | 5 ++++- src/utils/docs.ts | 8 ++++++++ 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/src/components/misc/Loader.tsx b/src/components/misc/Loader.tsx index 02230cc..0661368 100644 --- a/src/components/misc/Loader.tsx +++ b/src/components/misc/Loader.tsx @@ -16,6 +16,12 @@ const LoaderContainer = styled(StyledCard)` gap: 2rem; height: 50vh; transition: all 0.3s ease-in-out; + p.loadTimeInfo { + text-align: center; + margin: 0; + color: ${colors.textColorSecondary}; + opacity: 0.5; + } &.flex { display: flex; } @@ -46,7 +52,7 @@ const StyledSvg = styled.svg` const Loader = (props: { show: boolean }): JSX.Element => { return ( - Fetching data... + Crunching data... +

+ It may take up-to a minute for all jobs to complete
+ You can view preliminary results as they come in below +

); } diff --git a/src/components/misc/ProgressBar.tsx b/src/components/misc/ProgressBar.tsx index 81eb98e..bf0b29e 100644 --- a/src/components/misc/ProgressBar.tsx +++ b/src/components/misc/ProgressBar.tsx @@ -195,7 +195,7 @@ const jobNames = [ 'quality', 'cookies', 'ssl', - // 'server-info', + 'server-info', 'redirects', 'robots-txt', 'dnssec', @@ -219,6 +219,9 @@ const jobNames = [ 'archives', 'block-lists', 'threats', + 'tls-cipher-suites', + 'tls-security-config', + 'tls-client-support', ] as const; export const initialJobs = jobNames.map((job: string) => { diff --git a/src/utils/docs.ts b/src/utils/docs.ts index ea4cbd8..0b2a753 100644 --- a/src/utils/docs.ts +++ b/src/utils/docs.ts @@ -481,6 +481,14 @@ const docs: Doc[] = [ ], screenshot: '', }, + { + id: 'tls', + title: 'TLS Configuration', + description: '', + use: '', + resources: [], + screenshot: '', + }, // { // id: '', // title: '',