36 lines
		
	
	
		
			863 B
		
	
	
	
		
			TypeScript
		
	
	
	
			
		
		
	
	
			36 lines
		
	
	
		
			863 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 'flavours/glitch/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>
 | 
						|
  );
 | 
						|
};
 |