theluyuan 38ba663466
Some checks failed
Close stale issues and PRs / stale (push) Has been cancelled
init
2025-09-02 14:49:16 +08:00

44 lines
979 B
TypeScript

import React, { useCallback } from 'react';
import { useDispatch } from 'react-redux';
import { makeStyles } from 'tss-react/mui';
import { reloadNow } from '../../../app/actions.web';
import Button from '../../../base/ui/components/web/Button';
/**
* The type of the React {@code Component} props of {@link ReloadButton}.
*/
interface IProps {
/**
* The translation key for the text in the button.
*/
textKey: string;
}
const useStyles = makeStyles()(theme => {
return {
button: {
margin: `${theme.spacing(2)} auto 0`
}
};
});
const ReloadButton = ({ textKey }: IProps) => {
const dispatch = useDispatch();
const { classes } = useStyles();
const onClick = useCallback(() => {
dispatch(reloadNow());
}, []);
return (
<Button
className = { classes.button }
labelKey = { textKey }
onClick = { onClick } />
);
};
export default ReloadButton;