aboutsummaryrefslogtreecommitdiff
path: root/src/Header
diff options
context:
space:
mode:
authoreug-vs <eug-vs@keemail.me>2020-06-07 19:11:22 +0300
committereug-vs <eug-vs@keemail.me>2020-06-07 19:11:22 +0300
commitdcb9b3aeb6dec55b133afa5748233494e8374fcd (patch)
tree594040b22ffd54bb14017e81746b54ce3a9bb1fb /src/Header
parentf20db9b746b5e09878fd032f54e7c5cde2767b80 (diff)
downloadwhich-ui-dcb9b3aeb6dec55b133afa5748233494e8374fcd.tar.gz
feat: add searchbar and improve header
Diffstat (limited to 'src/Header')
-rw-r--r--src/Header/Header.tsx52
-rw-r--r--src/Header/SearchBar.tsx32
2 files changed, 59 insertions, 25 deletions
diff --git a/src/Header/Header.tsx b/src/Header/Header.tsx
index 8e8a301..5ce79be 100644
--- a/src/Header/Header.tsx
+++ b/src/Header/Header.tsx
@@ -2,45 +2,47 @@ import React from 'react';
import {
AppBar,
Toolbar,
- Tabs,
- Tab
+ IconButton,
+ Typography
} from '@material-ui/core';
import { makeStyles } from '@material-ui/core/styles';
+import AccountCircle from '@material-ui/icons/AccountCircle';
+import NotificationsIcon from '@material-ui/icons/Notifications';
-interface PropTypes {
- page: string;
- setPage: (newPage: string) => void;
-}
+import SearchBar from './SearchBar';
const useStyles = makeStyles(theme => ({
- tab: {
- '& .MuiTab-wrapper': {
- padding: theme.spacing(2),
- flexDirection: 'row',
- fontSize: '0.8125rem'
- }
+ root: {
+ display: 'flex',
+ justifyContent: 'space-around',
+ width: '60%',
+ margin: 'auto'
+ },
+ logo: {
+ fontWeight: 'bold',
}
}));
-const tabs = ['Profile', 'Feed'];
-
-const Header: React.FC<PropTypes> = ({ page /* , setPage */ }) => {
+const Header: React.FC = () => {
const classes = useStyles();
const handleChange = () => {};
return (
<AppBar position="static">
- <Toolbar>
- <Tabs onChange={handleChange} value={page}>
- {tabs.map((tab: string) => (
- <Tab
- label={tab}
- key={tab}
- className={classes.tab}
- />
- ))}
- </Tabs>
+ <Toolbar className={classes.root}>
+ <Typography variant="h5" className={classes.logo}>
+ Which
+ </Typography>
+ <SearchBar />
+ <div>
+ <IconButton>
+ <NotificationsIcon />
+ </IconButton>
+ <IconButton>
+ <AccountCircle />
+ </IconButton>
+ </div>
</Toolbar>
</AppBar>
);
diff --git a/src/Header/SearchBar.tsx b/src/Header/SearchBar.tsx
new file mode 100644
index 0000000..ed59874
--- /dev/null
+++ b/src/Header/SearchBar.tsx
@@ -0,0 +1,32 @@
+import React from 'react';
+import SearchIcon from '@material-ui/icons/Search';
+import { InputBase } from '@material-ui/core';
+import { makeStyles } from '@material-ui/core/styles';
+
+const useStyles = makeStyles(theme => ({
+ root: {
+ background: 'rgba(255, 255, 255, 0.5)',
+ borderRadius: '2px',
+ padding: theme.spacing(0.5),
+ display: 'flex',
+ alignItems: 'center',
+ // marginRight: theme.spacing(8),
+ }
+}));
+
+const SearchBar: React.FC = () => {
+ const classes = useStyles();
+
+ return (
+ <div className={classes.root}>
+ <SearchIcon />
+ <InputBase
+ placeholder="Search..."
+ />
+ </div>
+ );
+};
+
+
+export default SearchBar;
+