You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
849 B
33 lines
849 B
import React, { Component } from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import PageContainerHeader from '../../../components/ui/page-container/page-container-header';
|
|
|
|
export default class SendHeader extends Component {
|
|
static propTypes = {
|
|
clearSend: PropTypes.func,
|
|
history: PropTypes.object,
|
|
mostRecentOverviewPage: PropTypes.string,
|
|
titleKey: PropTypes.string,
|
|
};
|
|
|
|
static contextTypes = {
|
|
t: PropTypes.func,
|
|
};
|
|
|
|
onClose() {
|
|
const { clearSend, history, mostRecentOverviewPage } = this.props;
|
|
clearSend();
|
|
history.push(mostRecentOverviewPage);
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<PageContainerHeader
|
|
className="send__header"
|
|
onClose={() => this.onClose()}
|
|
title={this.context.t(this.props.titleKey)}
|
|
headerCloseText={this.context.t('cancel')}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|