mirror of
https://github.com/glitch-soc/mastodon.git
synced 2025-12-13 15:58:50 +00:00
49 lines
1.5 KiB
TypeScript
49 lines
1.5 KiB
TypeScript
import { useCallback } from 'react';
|
|
import type { FC } from 'react';
|
|
|
|
import { defineMessages, useIntl } from 'react-intl';
|
|
|
|
import { cancelPasteLinkCompose } from '@/flavours/glitch/actions/compose_typed';
|
|
import { useAppDispatch } from '@/flavours/glitch/store';
|
|
import CancelFillIcon from '@/material-icons/400-24px/cancel-fill.svg?react';
|
|
import { DisplayName } from 'flavours/glitch/components/display_name';
|
|
import { IconButton } from 'flavours/glitch/components/icon_button';
|
|
import { Skeleton } from 'flavours/glitch/components/skeleton';
|
|
|
|
const messages = defineMessages({
|
|
quote_cancel: { id: 'status.quote.cancel', defaultMessage: 'Cancel quote' },
|
|
});
|
|
|
|
export const QuotePlaceholder: FC = () => {
|
|
const intl = useIntl();
|
|
const dispatch = useAppDispatch();
|
|
const handleQuoteCancel = useCallback(() => {
|
|
dispatch(cancelPasteLinkCompose());
|
|
}, [dispatch]);
|
|
|
|
return (
|
|
<div className='status__quote'>
|
|
<div className='status'>
|
|
<div className='status__info'>
|
|
<div className='status__avatar'>
|
|
<Skeleton width='32px' height='32px' />
|
|
</div>
|
|
<div className='status__display-name'>
|
|
<DisplayName />
|
|
</div>
|
|
<IconButton
|
|
onClick={handleQuoteCancel}
|
|
className='status__quote-cancel'
|
|
title={intl.formatMessage(messages.quote_cancel)}
|
|
icon='cancel-fill'
|
|
iconComponent={CancelFillIcon}
|
|
/>
|
|
</div>
|
|
<div className='status__content'>
|
|
<Skeleton />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|