You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
import { useCallback, useState } 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'; |
|
import { LoadingIndicator } from 'mastodon/components/loading_indicator'; |
|
|
|
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 [loading, setLoading] = useState(false); |
|
|
|
const handleClick = useCallback(() => { |
|
setLoading(true); |
|
onClick(param); |
|
}, [setLoading, param, onClick]); |
|
|
|
return ( |
|
<button |
|
className='load-more load-gap' |
|
disabled={disabled} |
|
onClick={handleClick} |
|
aria-label={intl.formatMessage(messages.load_more)} |
|
title={intl.formatMessage(messages.load_more)} |
|
> |
|
{loading ? ( |
|
<LoadingIndicator /> |
|
) : ( |
|
<Icon id='ellipsis-h' icon={MoreHorizIcon} /> |
|
)} |
|
</button> |
|
); |
|
};
|
|
|