All files / modules/72-templates-library/components/TemplateTags TemplateTags.tsx

93.75% Statements 15/16
66.67% Branches 8/12
100% Functions 3/3
93.33% Lines 14/15

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              42x 42x 42x 42x   42x 48x 48x 48x   48x 23x     48x 23x 23x         48x                            
/*
 * 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 } from '@wings-software/uicore'
import TagsRenderer, { ListTagsProps } from '@common/components/TagsRenderer/TagsRenderer'
import css from './TemplateTags.module.scss'
 
export const TemplateTags: React.FC<ListTagsProps> = (props): JSX.Element => {
  const { tags } = props
  const [length, setLength] = React.useState(Object.keys(tags).length)
  const ref = React.useRef<HTMLDivElement | null>(null)
 
  React.useLayoutEffect(() => {
    setLength(Object.keys(tags).length)
  }, [JSON.stringify(tags)])
 
  React.useLayoutEffect(() => {
    const currentHeight = ref?.current?.clientHeight
    Iif (currentHeight && currentHeight > 24) {
      setLength(length - 1)
    }
  }, [length])
 
  return (
    <Container className={css.container}>
      <Container ref={ref}>
        <TagsRenderer
          className={css.tagsContainer}
          tagClassName={css.tag}
          targetClassName={css.count}
          {...props}
          length={length}
        />
      </Container>
    </Container>
  )
}