summaryrefslogtreecommitdiffstats
path: root/front/odiparpack/app/components/Contact/ContactHeader.js
diff options
context:
space:
mode:
Diffstat (limited to 'front/odiparpack/app/components/Contact/ContactHeader.js')
-rw-r--r--front/odiparpack/app/components/Contact/ContactHeader.js62
1 files changed, 62 insertions, 0 deletions
diff --git a/front/odiparpack/app/components/Contact/ContactHeader.js b/front/odiparpack/app/components/Contact/ContactHeader.js
new file mode 100644
index 0000000..f17a1a4
--- /dev/null
+++ b/front/odiparpack/app/components/Contact/ContactHeader.js
@@ -0,0 +1,62 @@
+import React from 'react';
+import PropTypes from 'prop-types';
+import { withStyles } from '@material-ui/core/styles';
+import ArrowBack from '@material-ui/icons/ArrowBack';
+import PermContactCalendar from '@material-ui/icons/PermContactCalendar';
+import Add from '@material-ui/icons/Add';
+import { AppBar, Toolbar, Typography, Button, IconButton } from '@material-ui/core';
+import styles from './contact-jss';
+
+
+class ContactHeader extends React.Component {
+ render() {
+ const {
+ classes,
+ addContact,
+ total,
+ hideDetail,
+ showMobileDetail
+ } = this.props;
+ return (
+ <AppBar
+ position="absolute"
+ className={classes.appBar}
+ >
+ <Toolbar>
+ {showMobileDetail && (
+ <IconButton
+ color="inherit"
+ aria-label="open drawer"
+ onClick={() => hideDetail()}
+ className={classes.navIconHide}
+ >
+ <ArrowBack />
+ </IconButton>
+ )}
+ <Typography variant="subtitle1" className={classes.title} color="inherit" noWrap>
+ <PermContactCalendar />
+ {' '}
+Contacts (
+ {total}
+)
+ </Typography>
+ <Button onClick={() => addContact()} variant="outlined" color="inherit" className={classes.button}>
+ <Add />
+ {' '}
+Add New
+ </Button>
+ </Toolbar>
+ </AppBar>
+ );
+ }
+}
+
+ContactHeader.propTypes = {
+ classes: PropTypes.object.isRequired,
+ showMobileDetail: PropTypes.bool.isRequired,
+ addContact: PropTypes.func.isRequired,
+ hideDetail: PropTypes.func.isRequired,
+ total: PropTypes.number.isRequired,
+};
+
+export default withStyles(styles)(ContactHeader);