f587ff643f
Co-authored-by: Eugen Rochko <eugen@zeonfederated.com> Co-authored-by: Claire <claire.github-309c@sitedethib.com>
35 lines
856 B
TypeScript
35 lines
856 B
TypeScript
import { useCallback } from 'react';
|
|
|
|
import { useIntl, defineMessages } from 'react-intl';
|
|
|
|
import MoreHorizIcon from '@/material-icons/400-24px/more_horiz.svg?react';
|
|
import { Icon } from 'mastodon/components/icon';
|
|
|
|
const messages = defineMessages({
|
|
load_more: { id: 'status.load_more', defaultMessage: 'Load more' },
|
|
});
|
|
|
|
interface Props<T> {
|
|
disabled: boolean;
|
|
param: T;
|
|
onClick: (params: T) => void;
|
|
}
|
|
|
|
export const LoadGap = <T,>({ disabled, param, onClick }: Props<T>) => {
|
|
const intl = useIntl();
|
|
|
|
const handleClick = useCallback(() => {
|
|
onClick(param);
|
|
}, [param, onClick]);
|
|
|
|
return (
|
|
<button
|
|
className='load-more load-gap'
|
|
disabled={disabled}
|
|
onClick={handleClick}
|
|
aria-label={intl.formatMessage(messages.load_more)}
|
|
>
|
|
<Icon id='ellipsis-h' icon={MoreHorizIcon} />
|
|
</button>
|
|
);
|
|
};
|