wwf
2 天以前 a430284aa21e3ae1f0d5654e55b2ad2852519cc2
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
import React from 'react'
import { useTranslation } from 'react-i18next'
import {
  SkeletonContainer,
  SkeletonPoint,
  SkeletonRectangle,
  SkeletonRow,
} from '@/app/components/base/skeleton'
 
const ParentChunkCardSkelton = () => {
  const { t } = useTranslation()
  return (
    <div className='flex flex-col pb-2'>
      <SkeletonContainer className='p-1 pb-0 gap-y-0'>
        <SkeletonContainer className='px-2 pt-1.5 gap-y-0.5'>
          <SkeletonRow className='py-0.5'>
            <SkeletonRectangle className='w-[72px] bg-text-quaternary' />
            <SkeletonPoint className='opacity-20' />
            <SkeletonRectangle className='w-24 bg-text-quaternary' />
            <SkeletonPoint className='opacity-20' />
            <SkeletonRectangle className='w-24 bg-text-quaternary' />
          </SkeletonRow>
          <SkeletonRow className='py-0.5'>
            <SkeletonRectangle className='w-full bg-text-quaternary' />
          </SkeletonRow>
          <SkeletonRow className='py-0.5'>
            <SkeletonRectangle className='w-full bg-text-quaternary' />
          </SkeletonRow>
          <SkeletonRow className='py-0.5'>
            <SkeletonRectangle className='w-2/3 bg-text-quaternary' />
          </SkeletonRow>
        </SkeletonContainer>
      </SkeletonContainer>
      <div className='flex items-center px-3 mt-0.5'>
        <button type='button' className='pt-0.5 text-components-button-secondary-accent-text-disabled system-xs-semibold-uppercase' disabled>
          {t('common.operation.viewMore')}
        </button>
      </div>
    </div>
  )
}
 
ParentChunkCardSkelton.displayName = 'ParentChunkCardSkelton'
 
export default React.memo(ParentChunkCardSkelton)