pleroma/app/soapbox/features/ads/components/ad.tsx

67 lines
1.9 KiB
TypeScript
Raw Normal View History

2022-08-01 15:55:13 -07:00
import React, { useEffect } from 'react';
2022-08-01 15:35:04 -07:00
import { FormattedMessage } from 'react-intl';
import { Stack, HStack, Card, Avatar, Text, Icon } from 'soapbox/components/ui';
import { useAppSelector } from 'soapbox/hooks';
import type { Card as CardEntity } from 'soapbox/types/entities';
interface IAd {
2022-08-01 15:55:13 -07:00
/** Embedded ad data in Card format (almost like OEmbed). */
2022-08-01 15:35:04 -07:00
card: CardEntity,
2022-08-01 15:55:13 -07:00
/** Impression URL to fetch upon display. */
impression?: string,
2022-08-01 15:35:04 -07:00
}
/** Displays an ad in sponsored post format. */
2022-08-01 15:55:13 -07:00
const Ad: React.FC<IAd> = ({ card, impression }) => {
2022-08-01 15:35:04 -07:00
const instance = useAppSelector(state => state.instance);
2022-08-01 15:55:13 -07:00
// Fetch the impression URL (if any) upon displaying the ad.
// It's common for ad providers to provide this.
useEffect(() => {
if (impression) {
fetch(impression);
}
}, [impression]);
2022-08-01 15:35:04 -07:00
return (
<Card className='p-5' variant='rounded'>
<Stack space={4}>
<HStack alignItems='center' space={3}>
<Avatar src={instance.thumbnail} size={42} />
<Stack>
<HStack space={1}>
<Text size='sm' weight='semibold' truncate>
{instance.title}
</Text>
<Icon
className='w-5 h-5 stroke-accent-500'
src={require('@tabler/icons/timeline.svg')}
/>
</HStack>
<Stack>
<HStack alignItems='center' space={1}>
<Text theme='muted' size='sm' truncate>
<FormattedMessage id='sponsored.subtitle' defaultMessage='Sponsored post' />
</Text>
</HStack>
</Stack>
</Stack>
</HStack>
{card.image && (
<a href={card.url} className='rounded-[10px] overflow-hidden' target='_blank'>
<img className='w-full' src={card.image} alt='' />
</a>
)}
</Stack>
</Card>
);
};
export default Ad;