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 | 101x 101x 101x 101x 101x 101x 101x 101x 1x 1x 1x 1x | /*
* 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 from 'react'
import { Container, Icon, Layout, Text } from '@wings-software/uicore'
import { Color } from '@harness/design-system'
import { useStrings } from 'framework/strings'
import {
ModeEntityNameMap,
ParentModeEntityNameMap,
PipelineOrStageStatus,
WhenConditionStatus
} from '@pipeline/components/PipelineSteps/AdvancedSteps/ConditionalExecutionPanel/ConditionalExecutionPanelUtils'
import { StepMode as Modes } from '@pipeline/utils/stepUtils'
import type { ResolvedVariableInterface } from './ConditionalExecutionTooltipWrapper'
export interface ConditionalExecutionTooltipProps {
mode: Modes
status?: WhenConditionStatus
condition?: string
resolvedVariables?: ResolvedVariableInterface[]
}
const statusMapping: any = {
Success: 'pipeline.conditionalExecution.statusOption.success',
Failure: 'pipeline.conditionalExecution.statusOption.failure',
All: 'pipeline.conditionalExecution.statusOption.all'
}
export default function ConditionalExecutionTooltip(props: ConditionalExecutionTooltipProps): React.ReactElement {
const { mode, status = PipelineOrStageStatus.All, condition, resolvedVariables } = props
const { getString } = useStrings()
return (
<Layout.Horizontal
border={{ top: true, width: 0.5, color: Color.GREY_100 }}
padding={{ right: 'xlarge', top: 'small', bottom: 'small', left: 'small' }}
>
<Container flex={{ justifyContent: 'center', alignItems: 'start' }} width={32}>
<Icon name="conditional-execution" color={Color.GREY_600} size={20} />
</Container>
<Layout.Vertical
spacing={'xsmall'}
style={{ flex: 1 }}
data-testid="hovercard-service"
padding={{ top: 'xsmall', bottom: 'xsmall' }}
>
<Text font={{ size: 'small', weight: 'semi-bold' }} color={Color.BLACK}>
{mode === Modes.STAGE && getString('pipeline.conditionalExecution.toolTip.stageTitle')}
{mode === Modes.STEP && getString('pipeline.conditionalExecution.toolTip.stepTitle')}
</Text>
<Text
padding={{
top: condition ? 'xsmall' : 'none',
bottom: condition ? 'xsmall' : 'none'
}}
font={{ size: 'xsmall' }}
style={{ lineHeight: '16px' }}
color={Color.GREY_900}
>
{getString(statusMapping[status], {
entity: ModeEntityNameMap[mode],
parentEntity: ParentModeEntityNameMap[mode]
})}
{!!condition && (
<Text
inline={true}
color={Color.BLACK}
font={{ size: 'xsmall', weight: 'semi-bold' }}
padding={{ left: 'xsmall', right: 'xsmall' }}
margin={{ left: 'xsmall', right: 'xsmall' }}
background={Color.GREY_100}
border={{ radius: 3, color: Color.GREY_100 }}
>
{getString('pipeline.and')}
</Text>
)}
{!!condition && getString('pipeline.conditionalExecution.belowExpression')}
</Text>
{!!condition && (
<Container
padding={'small'}
color={Color.GREY_900}
font={{ size: 'small' }}
style={{ wordBreak: 'break-word', background: '#FAFBFC' }}
border={{ width: 0.5, color: Color.GREY_100, radius: 4 }}
>
{condition}
</Container>
)}
{!!resolvedVariables && resolvedVariables.length > 0 && (
<Layout.Vertical spacing={'xsmall'} padding={{ top: 'medium' }}>
<Text padding={{ bottom: 'xsmall' }} font={{ size: 'xsmall', weight: 'semi-bold' }} color={Color.GREY_500}>
{getString('pipeline.conditionalExecution.toolTip.resolvedVariables')}
</Text>
{resolvedVariables.map(resolvedVariable => {
return (
<Text
key={resolvedVariable.fullExpression}
style={{ wordBreak: 'break-word' }}
font={{ size: 'xsmall' }}
color={Color.GREY_900}
>
{resolvedVariable.fullExpression !== resolvedVariable.trimmedExpression ? (
<Text font={{ size: 'xsmall' }} color={Color.GREY_900} tooltip={resolvedVariable.fullExpression}>
{resolvedVariable.trimmedExpression}
</Text>
) : (
resolvedVariable.trimmedExpression
)}
{' = '}
{resolvedVariable.expressionValue}
</Text>
)
})}
</Layout.Vertical>
)}
</Layout.Vertical>
</Layout.Horizontal>
)
}
|