[Glitch] Rewrite <LoadPending /> as FC and TS
Port dfaf59d99a to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
			
			
This commit is contained in:
		
							parent
							
								
									f815bd5fd9
								
							
						
					
					
						commit
						cdec45eca9
					
				| 
						 | 
					@ -1,23 +0,0 @@
 | 
				
			||||||
import PropTypes from 'prop-types';
 | 
					 | 
				
			||||||
import { PureComponent } from 'react';
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
import { FormattedMessage } from 'react-intl';
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
export default class LoadPending extends PureComponent {
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  static propTypes = {
 | 
					 | 
				
			||||||
    onClick: PropTypes.func,
 | 
					 | 
				
			||||||
    count: PropTypes.number,
 | 
					 | 
				
			||||||
  };
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
  render() {
 | 
					 | 
				
			||||||
    const { count } = this.props;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
    return (
 | 
					 | 
				
			||||||
      <button className='load-more load-gap' onClick={this.props.onClick}>
 | 
					 | 
				
			||||||
        <FormattedMessage id='load_pending' defaultMessage='{count, plural, one {# new item} other {# new items}}' values={{ count }} />
 | 
					 | 
				
			||||||
      </button>
 | 
					 | 
				
			||||||
    );
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
| 
						 | 
					@ -0,0 +1,18 @@
 | 
				
			||||||
 | 
					import { FormattedMessage } from 'react-intl';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					interface Props {
 | 
				
			||||||
 | 
					  onClick: (event: React.MouseEvent) => void;
 | 
				
			||||||
 | 
					  count: number;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export const LoadPending: React.FC<Props> = ({ onClick, count }) => {
 | 
				
			||||||
 | 
					  return (
 | 
				
			||||||
 | 
					    <button className='load-more load-gap' onClick={onClick}>
 | 
				
			||||||
 | 
					      <FormattedMessage
 | 
				
			||||||
 | 
					        id='load_pending'
 | 
				
			||||||
 | 
					        defaultMessage='{count, plural, one {# new item} other {# new items}}'
 | 
				
			||||||
 | 
					        values={{ count }}
 | 
				
			||||||
 | 
					      />
 | 
				
			||||||
 | 
					    </button>
 | 
				
			||||||
 | 
					  );
 | 
				
			||||||
 | 
					};
 | 
				
			||||||
| 
						 | 
					@ -16,7 +16,7 @@ import IntersectionObserverWrapper from 'flavours/glitch/features/ui/util/inters
 | 
				
			||||||
import { attachFullscreenListener, detachFullscreenListener, isFullscreen } from '../features/ui/util/fullscreen';
 | 
					import { attachFullscreenListener, detachFullscreenListener, isFullscreen } from '../features/ui/util/fullscreen';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import { LoadMore } from './load_more';
 | 
					import { LoadMore } from './load_more';
 | 
				
			||||||
import LoadPending from './load_pending';
 | 
					import { LoadPending } from './load_pending';
 | 
				
			||||||
import LoadingIndicator from './loading_indicator';
 | 
					import LoadingIndicator from './loading_indicator';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const MOUSE_IDLE_DELAY = 300;
 | 
					const MOUSE_IDLE_DELAY = 300;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in New Issue