bigbuffet-rw/app/soapbox/features/placeholder/components/placeholder-notification.tsx
marcin mikołajczak c1179f0475 Lint, cleanup, styles…
Signed-off-by: marcin mikołajczak <git@mkljczk.pl>
2022-11-25 19:28:43 +01:00

36 lines
1.1 KiB
TypeScript

import React from 'react';
import { HStack } from 'soapbox/components/ui';
import PlaceholderAvatar from './placeholder-avatar';
import PlaceholderDisplayName from './placeholder-display-name';
import PlaceholderStatusContent from './placeholder-status-content';
/** Fake notification to display while data is loading. */
const PlaceholderNotification = () => (
<div className='bg-white dark:bg-primary-900 px-4 py-6 sm:p-6'>
<div className='w-full animate-pulse'>
<div className='mb-2'>
<PlaceholderStatusContent minLength={20} maxLength={20} />
</div>
<div>
<HStack space={3} alignItems='center'>
<div className='flex-shrink-0'>
<PlaceholderAvatar size={48} />
</div>
<div className='min-w-0 flex-1'>
<PlaceholderDisplayName minLength={3} maxLength={25} />
</div>
</HStack>
</div>
<div className='mt-4'>
<PlaceholderStatusContent minLength={5} maxLength={120} />
</div>
</div>
</div>
);
export default React.memo(PlaceholderNotification);