2020-11-21 14:15:58 +01:00
|
|
|
import React, { useState, MouseEvent, ChangeEvent, useEffect, useRef } from 'react';
|
2020-11-08 18:05:21 +01:00
|
|
|
import { ReactComponent as Close } from '../assets/close.svg';
|
2020-10-30 00:42:40 +01:00
|
|
|
import ProfileIcon from '../assets/account.svg';
|
2020-08-17 22:05:13 +02:00
|
|
|
import { Profile } from './Profile';
|
2020-08-17 23:56:34 +02:00
|
|
|
import { Dropdown } from './Dropdown';
|
2020-10-30 00:42:40 +01:00
|
|
|
import PolishIcon from '../assets/poland.svg';
|
|
|
|
import EnglishIcon from '../assets/united-kingdom.svg';
|
|
|
|
import styled from 'styled-components/macro';
|
2020-11-02 00:15:30 +01:00
|
|
|
import ClickAwayListener from 'react-click-away-listener';
|
2020-08-17 22:05:13 +02:00
|
|
|
|
2020-08-20 18:14:28 +02:00
|
|
|
const Topbar = styled.div`
|
2020-11-21 14:15:58 +01:00
|
|
|
background-color: #e3e5ed;
|
2020-08-17 22:05:13 +02:00
|
|
|
height: 80px;
|
|
|
|
padding: 5px;
|
|
|
|
font-size: 24px;
|
|
|
|
font-weight: bold;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
`;
|
|
|
|
|
2020-10-30 00:42:40 +01:00
|
|
|
const LogoWrapper = styled.div`
|
2020-08-17 22:05:13 +02:00
|
|
|
display: flex;
|
2020-11-08 18:05:21 +01:00
|
|
|
justify-content: flex-start;
|
2020-08-17 22:05:13 +02:00
|
|
|
align-items: center;
|
2020-11-08 13:40:11 +01:00
|
|
|
flex: 2;
|
2020-11-08 18:05:21 +01:00
|
|
|
margin-left: 10px;
|
2020-08-17 22:05:13 +02:00
|
|
|
`;
|
|
|
|
|
2020-10-30 00:42:40 +01:00
|
|
|
const Logo = styled.img`
|
|
|
|
width: 70px;
|
|
|
|
height: 70px;
|
2020-08-17 22:05:13 +02:00
|
|
|
@media only screen and (max-width: 670px) {
|
|
|
|
width: 60px;
|
|
|
|
height: 60px;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2020-10-30 00:42:40 +01:00
|
|
|
const Text = styled.div`
|
2020-11-21 14:15:58 +01:00
|
|
|
margin-left: 10px;
|
|
|
|
font-size: 1.4rem;
|
|
|
|
user-select: none;
|
2020-10-30 00:42:40 +01:00
|
|
|
@media only screen and (max-width: 670px) {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2020-11-02 00:15:30 +01:00
|
|
|
const FlexboxColumn = styled.div`
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2020-11-08 18:05:21 +01:00
|
|
|
flex: 12;
|
2020-11-02 00:15:30 +01:00
|
|
|
`;
|
|
|
|
|
2020-10-30 00:42:40 +01:00
|
|
|
const InputWrapper = styled.div`
|
2020-08-17 22:05:13 +02:00
|
|
|
display: flex;
|
2020-11-02 00:15:30 +01:00
|
|
|
margin-top: 15px;
|
|
|
|
background-color: #f2f4f7;
|
|
|
|
border-radius: 6px;
|
2020-11-08 18:05:21 +01:00
|
|
|
align-items: center;
|
2020-08-17 22:05:13 +02:00
|
|
|
`;
|
|
|
|
|
2020-11-02 00:15:30 +01:00
|
|
|
const Input = styled.input`
|
2020-11-21 14:15:58 +01:00
|
|
|
font-family: 'Roboto', sans-serif;
|
|
|
|
font-size: 18px;
|
2020-11-02 00:15:30 +01:00
|
|
|
background-color: #f1f2f5;
|
|
|
|
height: 40px;
|
|
|
|
width: 100%;
|
|
|
|
border: none;
|
2020-11-08 18:05:21 +01:00
|
|
|
margin-left: 5px;
|
|
|
|
border-top-left-radius: 6px;
|
|
|
|
border-bottom-left-radius: 6px;
|
2020-11-02 00:15:30 +01:00
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
2020-08-17 22:05:13 +02:00
|
|
|
`;
|
|
|
|
|
2020-11-08 18:05:21 +01:00
|
|
|
const CloseIcon = styled(Close)`
|
2020-10-30 00:42:40 +01:00
|
|
|
width: 30px;
|
2020-11-08 18:05:21 +01:00
|
|
|
height: 30px;
|
|
|
|
margin-right: 5px;
|
2020-08-17 22:05:13 +02:00
|
|
|
@media only screen and (max-width: 670px) {
|
|
|
|
width: 25px;
|
|
|
|
}
|
2020-08-20 18:14:28 +02:00
|
|
|
cursor: pointer;
|
2020-11-08 18:05:21 +01:00
|
|
|
:hover {
|
|
|
|
fill: grey;
|
|
|
|
}
|
2020-08-17 22:05:13 +02:00
|
|
|
`;
|
|
|
|
|
2020-10-30 00:42:40 +01:00
|
|
|
const IconWrapper = styled.div`
|
|
|
|
display: flex;
|
2020-11-08 18:05:21 +01:00
|
|
|
justify-content: flex-end;
|
2020-10-30 00:42:40 +01:00
|
|
|
align-items: center;
|
2020-11-08 18:05:21 +01:00
|
|
|
width: 335px;
|
2020-10-30 00:42:40 +01:00
|
|
|
`;
|
|
|
|
|
|
|
|
const Icon = styled.img`
|
|
|
|
width: 40px;
|
2020-11-08 18:05:21 +01:00
|
|
|
margin: 5px;
|
2020-08-17 22:05:13 +02:00
|
|
|
cursor: pointer;
|
|
|
|
@media only screen and (max-width: 670px) {
|
|
|
|
width: 35px;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
|
|
|
interface TopbarProps {
|
2020-08-17 23:56:34 +02:00
|
|
|
handleTransfer: (e: MouseEvent) => void;
|
2020-08-17 22:05:13 +02:00
|
|
|
}
|
|
|
|
|
2020-08-20 18:14:28 +02:00
|
|
|
export default function ({ handleTransfer }: TopbarProps) {
|
|
|
|
const [clearInput, setClearInput] = useState(false);
|
2020-08-17 22:05:13 +02:00
|
|
|
const [isPolish, setIsPolish] = useState(false);
|
|
|
|
const [anchorEl, setAnchorEl] = useState<HTMLImageElement | null>(null);
|
2020-11-02 00:15:30 +01:00
|
|
|
const [open, setOpen] = useState(false);
|
|
|
|
const [input, setInput] = useState('');
|
2020-08-17 22:05:13 +02:00
|
|
|
|
2020-08-17 23:56:34 +02:00
|
|
|
const onLangChange = () => setIsPolish(!isPolish);
|
2020-08-17 22:05:13 +02:00
|
|
|
|
2020-08-17 23:56:34 +02:00
|
|
|
const handleProfile = (event: MouseEvent<HTMLImageElement>) => setAnchorEl(event.currentTarget);
|
2020-08-17 22:05:13 +02:00
|
|
|
|
2020-11-21 14:15:58 +01:00
|
|
|
const handleCloseProfile = () => setAnchorEl(null);
|
2020-08-17 22:05:13 +02:00
|
|
|
|
2020-08-20 18:14:28 +02:00
|
|
|
const handleClearInput = () => setClearInput(!clearInput);
|
|
|
|
|
2020-11-02 00:15:30 +01:00
|
|
|
const handleChange = (event: ChangeEvent<HTMLInputElement>) => setInput(event.target.value);
|
|
|
|
|
2020-11-21 14:15:58 +01:00
|
|
|
const handleShowDropdown = () => {
|
|
|
|
console.log('show dropdown');
|
|
|
|
setOpen(true);
|
|
|
|
};
|
2020-11-02 00:15:30 +01:00
|
|
|
|
|
|
|
const handleCloseDropdown = () => setOpen(false);
|
|
|
|
|
|
|
|
useEffect(() => {
|
2020-11-21 14:15:58 +01:00
|
|
|
if (clearInput) {
|
|
|
|
setInput('');
|
|
|
|
handleClearInput();
|
|
|
|
}
|
2020-11-02 00:15:30 +01:00
|
|
|
}, [clearInput]);
|
|
|
|
|
2020-11-21 14:15:58 +01:00
|
|
|
// useEffect(() => {
|
|
|
|
// console.log('input changed');
|
|
|
|
// if (!open) {
|
|
|
|
// setOpen(true);
|
|
|
|
// }
|
|
|
|
// }, [input]);
|
|
|
|
|
2020-08-17 22:05:13 +02:00
|
|
|
return (
|
2020-08-20 18:14:28 +02:00
|
|
|
<Topbar>
|
2020-10-30 00:42:40 +01:00
|
|
|
<LogoWrapper>
|
|
|
|
<Logo alt="logo" src="https://plannaplan.pl/img/logo.svg" />
|
|
|
|
<Text> plan na plan </Text>
|
|
|
|
</LogoWrapper>
|
2020-11-02 00:15:30 +01:00
|
|
|
<FlexboxColumn>
|
2020-11-21 14:15:58 +01:00
|
|
|
<ClickAwayListener onClickAway={handleCloseDropdown}>
|
2020-11-02 00:15:30 +01:00
|
|
|
<InputWrapper>
|
2020-11-21 14:15:58 +01:00
|
|
|
<Input
|
|
|
|
placeholder="Wyszukaj przedmiot..."
|
|
|
|
onChange={handleChange}
|
|
|
|
value={input}
|
|
|
|
onFocus={() => {
|
|
|
|
console.log('i am in on focus');
|
|
|
|
handleShowDropdown();
|
|
|
|
}}
|
|
|
|
/>
|
2020-11-08 18:05:21 +01:00
|
|
|
<CloseIcon onClick={handleClearInput} />
|
2020-11-02 00:15:30 +01:00
|
|
|
</InputWrapper>
|
|
|
|
<Dropdown open={open} input={input} handleCloseDropdown={handleCloseDropdown} />
|
|
|
|
</ClickAwayListener>
|
|
|
|
</FlexboxColumn>
|
|
|
|
|
2020-10-30 00:42:40 +01:00
|
|
|
<IconWrapper>
|
2020-11-08 18:05:21 +01:00
|
|
|
{/* <Text>Maciej Głowacki</Text> */}
|
|
|
|
{/* <Icon alt="transfer" src={Transfer} onClick={handleTransfer} /> */}
|
2020-10-30 00:42:40 +01:00
|
|
|
<Icon alt="change_language" src={isPolish ? EnglishIcon : PolishIcon} onClick={onLangChange} />
|
|
|
|
<Icon alt="profile" src={ProfileIcon} onClick={handleProfile} />
|
2020-11-21 14:15:58 +01:00
|
|
|
<Profile anchorEl={anchorEl} handleClose={handleCloseProfile} />
|
2020-10-30 00:42:40 +01:00
|
|
|
</IconWrapper>
|
2020-08-20 18:14:28 +02:00
|
|
|
</Topbar>
|
2020-08-17 22:05:13 +02:00
|
|
|
);
|
2020-08-29 18:52:03 +02:00
|
|
|
}
|