aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/page-container/page-container-footer/page-container-footer.component.js
diff options
context:
space:
mode:
Diffstat (limited to 'ui/app/components/page-container/page-container-footer/page-container-footer.component.js')
-rw-r--r--ui/app/components/page-container/page-container-footer/page-container-footer.component.js68
1 files changed, 0 insertions, 68 deletions
diff --git a/ui/app/components/page-container/page-container-footer/page-container-footer.component.js b/ui/app/components/page-container/page-container-footer/page-container-footer.component.js
deleted file mode 100644
index 85b16cefe..000000000
--- a/ui/app/components/page-container/page-container-footer/page-container-footer.component.js
+++ /dev/null
@@ -1,68 +0,0 @@
-import React, { Component } from 'react'
-import PropTypes from 'prop-types'
-import Button from '../../button'
-
-export default class PageContainerFooter extends Component {
-
- static propTypes = {
- children: PropTypes.node,
- onCancel: PropTypes.func,
- cancelText: PropTypes.string,
- onSubmit: PropTypes.func,
- submitText: PropTypes.string,
- disabled: PropTypes.bool,
- submitButtonType: PropTypes.string,
- hideCancel: PropTypes.bool,
- }
-
- static contextTypes = {
- t: PropTypes.func,
- }
-
- render () {
- const {
- children,
- onCancel,
- cancelText,
- onSubmit,
- submitText,
- disabled,
- submitButtonType,
- hideCancel,
- } = this.props
-
- return (
- <div className="page-container__footer">
-
- <header>
- {!hideCancel && <Button
- type="default"
- large
- className="page-container__footer-button"
- onClick={e => onCancel(e)}
- >
- { cancelText || this.context.t('cancel') }
- </Button>}
-
- <Button
- type={submitButtonType || 'primary'}
- large
- className="page-container__footer-button"
- disabled={disabled}
- onClick={e => onSubmit(e)}
- >
- { submitText || this.context.t('next') }
- </Button>
- </header>
-
- {children && (
- <footer>
- {children}
- </footer>
- )}
-
- </div>
- )
- }
-
-}