mirror of
				https://github.com/langgenius/dify.git
				synced 2025-11-03 20:33:00 +00:00 
			
		
		
		
	Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: jZonG <jzongcode@gmail.com>
		
			
				
	
	
		
			32 lines
		
	
	
		
			683 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			683 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
import type { FC } from 'react'
 | 
						|
import React, { useMemo } from 'react'
 | 
						|
import cn from '@/utils/classnames'
 | 
						|
 | 
						|
type Props = {
 | 
						|
  className?: string
 | 
						|
  text: string
 | 
						|
  descriptionLineRows: number
 | 
						|
}
 | 
						|
 | 
						|
const Description: FC<Props> = ({
 | 
						|
  className,
 | 
						|
  text,
 | 
						|
  descriptionLineRows,
 | 
						|
}) => {
 | 
						|
  const lineClassName = useMemo(() => {
 | 
						|
    if (descriptionLineRows === 1)
 | 
						|
      return 'h-4 truncate'
 | 
						|
    else if (descriptionLineRows === 2)
 | 
						|
      return 'h-8 line-clamp-2'
 | 
						|
    else
 | 
						|
      return 'h-12 line-clamp-3'
 | 
						|
  }, [descriptionLineRows])
 | 
						|
  return (
 | 
						|
    <div className={cn('system-xs-regular text-text-tertiary', lineClassName, className)}>
 | 
						|
      {text}
 | 
						|
    </div>
 | 
						|
  )
 | 
						|
}
 | 
						|
 | 
						|
export default Description
 |