Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 9x 2x 2x 2x 2x 2x 2x 2x 2x 2x 10x 2x 2x 2x 2x 2x 2x 2x 2x 10x 10x 10x 10x 10x 2x 2x 2x 1x 2x 2x 9x | /* * Copyright 2021 Harness Inc. All rights reserved. * Use of this source code is governed by the PolyForm Shield 1.0.0 license * that can be found in the licenses directory at the root of this repository, also available at * https://polyformproject.org/wp-content/uploads/2020/06/PolyForm-Shield-1.0.0.txt. */ import React, { useState } from 'react' import { HarnessIcons, Container, Text, Layout, Heading, IconName } from '@wings-software/uicore' import { Color } from '@harness/design-system' import { useStrings } from 'framework/strings' import { useTelemetry } from '@common/hooks/useTelemetry' import { useFeatureFlags } from '@common/hooks/useFeatureFlag' import { Category, PageNames } from '@common/constants/TrackingConstants' import type { Module } from '@common/interfaces/RouteInterfaces' import SelectModuleList from './SelectModuleList' import bgImageUrl from './images/background.svg' import ribbon from './images/ribbon.svg' import ribbon_ff from './images/ribbon_ff.svg' import ribbon_ci from './images/ribbon_ci.svg' import ribbon_ccm from './images/ribbon_ccm.svg' import ribbon_cd from './images/ribbon_cd.svg' import css from './WelcomePage.module.scss' interface ModuleProps { enabled: boolean titleIcon: IconName bodyIcon: IconName module: Module description: string className?: string } const WelcomePage: React.FC = () => { const HarnessLogo = HarnessIcons['harness-logo-white'] const { getString } = useStrings() const [ribbonImg, setRibbonImg] = useState<string>(ribbon) const { CVNG_ENABLED, CING_ENABLED, CFNG_ENABLED, CENG_ENABLED } = useFeatureFlags() const CDNG_OPTIONS: ModuleProps = { enabled: true, // Continous delivery is enabled in CG titleIcon: 'cd-with-text', bodyIcon: 'cd-sketch', module: 'cd', description: getString('common.purpose.cd.description') } const CVNG_OPTIONS: ModuleProps = { enabled: !!CVNG_ENABLED, titleIcon: 'cv-with-text', bodyIcon: 'cv-sketch', module: 'cv', description: getString('common.purpose.cv.description'), className: css.cvIconText } const CING_OPTIONS: ModuleProps = { enabled: !!CING_ENABLED, titleIcon: 'ci-with-text', bodyIcon: 'ci-sketch', module: 'ci', description: getString('common.purpose.ci.descriptionOnly') } const CENG_OPTIONS: ModuleProps = { enabled: !!CENG_ENABLED, // Continous efficiency is enabled in CG titleIcon: 'ccm-with-text', bodyIcon: 'ccm-sketch', module: 'ce', description: getString('common.purpose.ce.descriptionOnly') } const CFNG_OPTIONS: ModuleProps = { enabled: !!CFNG_ENABLED, titleIcon: 'ff-with-text', bodyIcon: 'ff-sketch', module: 'cf', description: getString('common.purpose.cf.descriptionOnly') } function getModuleProps(_module: Module): ModuleProps | undefined { switch (_module) { case 'cd': return { ...CDNG_OPTIONS } case 'cv': return { ...CVNG_OPTIONS } case 'ce': return { ...CENG_OPTIONS } case 'cf': return { ...CFNG_OPTIONS } case 'ci': return { ...CING_OPTIONS } } } const getOptions = (): ModuleProps[] => { const options: ModuleProps[] = [] ;[CDNG_OPTIONS, CING_OPTIONS, CVNG_OPTIONS, CFNG_OPTIONS, CENG_OPTIONS].forEach(option => { Eif (option.enabled) { const { module: _module } = option const moduleProps = getModuleProps(_module) Eif (moduleProps) { options.push(moduleProps) } } }) return options } useTelemetry({ pageName: PageNames.Purpose, category: Category.SIGNUP }) const body = ( <Layout.Vertical width={'80vw'}> <Heading color={Color.WHITE} font={{ size: 'large', weight: 'bold' }} padding={{ top: 'xxlarge' }}> {getString('common.purpose.welcome')} </Heading> <Text padding={{ top: 'small', bottom: 'xxxlarge' }} color={Color.WHITE}> {getString('common.purpose.selectAModule')} </Text> <SelectModuleList onModuleClick={(_module?: Module) => { setRibbonImg(ribbonMap[_module?.toString() || 'default']) }} moduleList={getOptions()} /> </Layout.Vertical> ) const ribbonMap: Record<string, string> = { cd: ribbon_cd, ce: ribbon_ccm, cf: ribbon_ff, ci: ribbon_ci, default: ribbon } return ( <Container padding={{ left: 'xxxlarge', top: 'xxxlarge' }} flex={{ alignItems: 'start' }} style={{ backgroundImage: `url(${ribbonImg}), url(${bgImageUrl})`, backgroundRepeat: 'no-repeat', backgroundPosition: 'center', backgroundSize: 'cover , cover' }} className={css.container} > <Layout.Vertical padding={{ left: 'xxlarge', top: 'xxlarge' }} spacing="large" width="100%"> <HarnessLogo height={30} style={{ alignSelf: 'start' }} /> {body} </Layout.Vertical> </Container> ) } export default WelcomePage |