Files
SCM-Manager/scm-ui-components/packages/ui-components/src/buttons/SubmitButton.js
2019-03-05 16:31:41 +01:00

35 lines
663 B
JavaScript

//@flow
import React from "react";
import Button, { type ButtonProps } from "./Button";
type SubmitButtonProps = ButtonProps & {
scrollToTop: boolean
}
class SubmitButton extends React.Component<SubmitButtonProps> {
static defaultProps = {
scrollToTop: true
};
render() {
const { action, scrollToTop } = this.props;
return (
<Button
type="submit"
color="primary"
{...this.props}
action={(event) => {
if (action) {
action(event);
}
if (scrollToTop) {
window.scrollTo(0, 0);
}
}}
/>
);
}
}
export default SubmitButton;