All files / modules/75-cd/components/DeploymentTypeIcons DeploymentTypeIcons.tsx

90.91% Statements 10/11
66.67% Branches 4/6
100% Functions 3/3
90% Lines 9/10

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              5x 5x     5x 1x   1x                       5x 3x 3x     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 { Icon, Layout, Text } from '@wings-software/uicore'
import type { IconName } from '@blueprintjs/core'
 
const getIconName = (deploymentType: string): string => {
  switch (deploymentType.toLowerCase()) {
    case 'kubernetes':
      return 'app-kubernetes'
    default:
      return 'question'
  }
}
 
export interface DeploymentTypeIconsProps {
  deploymentTypes: string[]
  limit?: number
  size?: number
}
 
export const DeploymentTypeIcons: React.FC<DeploymentTypeIconsProps> = props => {
  const { deploymentTypes, size = 18, limit = 2 } = props
  return (
    <Layout.Horizontal flex={{ alignItems: 'center' }}>
      {deploymentTypes.slice(0, limit).map(deploymentType => {
        return (
          <Icon
            key={deploymentType}
            name={getIconName(deploymentType) as IconName}
            size={size}
            padding={{ left: 'xsmall', right: 'xsmall' }}
          />
        )
      })}
      {deploymentTypes.length > limit ? <Text>{`+ ${deploymentTypes.length - limit}`}</Text> : <></>}
    </Layout.Horizontal>
  )
}