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.
34 lines
849 B
34 lines
849 B
4 years ago
|
import React, { Component } from 'react';
|
||
|
import PropTypes from 'prop-types';
|
||
|
import PageContainerHeader from '../../../components/ui/page-container/page-container-header';
|
||
7 years ago
|
|
||
|
export default class SendHeader extends Component {
|
||
|
static propTypes = {
|
||
|
clearSend: PropTypes.func,
|
||
7 years ago
|
history: PropTypes.object,
|
||
5 years ago
|
mostRecentOverviewPage: PropTypes.string,
|
||
7 years ago
|
titleKey: PropTypes.string,
|
||
4 years ago
|
};
|
||
7 years ago
|
|
||
6 years ago
|
static contextTypes = {
|
||
|
t: PropTypes.func,
|
||
4 years ago
|
};
|
||
6 years ago
|
|
||
4 years ago
|
onClose() {
|
||
4 years ago
|
const { clearSend, history, mostRecentOverviewPage } = this.props;
|
||
|
clearSend();
|
||
|
history.push(mostRecentOverviewPage);
|
||
7 years ago
|
}
|
||
7 years ago
|
|
||
4 years ago
|
render() {
|
||
7 years ago
|
return (
|
||
|
<PageContainerHeader
|
||
5 years ago
|
className="send__header"
|
||
7 years ago
|
onClose={() => this.onClose()}
|
||
7 years ago
|
title={this.context.t(this.props.titleKey)}
|
||
5 years ago
|
headerCloseText={this.context.t('cancel')}
|
||
7 years ago
|
/>
|
||
4 years ago
|
);
|
||
7 years ago
|
}
|
||
|
}
|