Complete search component

This commit is contained in:
Hazem Krimi
2021-04-21 00:26:22 +01:00
parent ed5ec0f5e2
commit 1fec8671f1
3 changed files with 222 additions and 4 deletions
+39 -2
View File
@@ -1,7 +1,44 @@
import { Wrapper } from './styles';
import { Search as SearchIcon } from '../../assets';
const Search = () => {
return <Wrapper></Wrapper>;
type SearchProps = {
className?: string;
color?:
| 'client'
| 'productOwner'
| 'developer'
| 'admin'
| 'success'
| 'warning'
| 'error'
| 'black'
| 'white';
value: string;
fullWidth?: boolean;
onChange: (event: React.ChangeEvent<HTMLInputElement>) => void;
};
const Search = ({
color = 'client',
value,
onChange,
...props
}: SearchProps) => {
return (
<Wrapper color={color} {...props}>
<div className='search'>
<span className='icon left'>
<SearchIcon />
</span>
<input
type='text'
value={value}
onChange={onChange}
placeholder='Search'
/>
</div>
</Wrapper>
);
};
export default Search;
+181 -2
View File
@@ -1,3 +1,182 @@
import styled from 'styled-components';
import styled, { css } from 'styled-components';
export const Wrapper = styled.div``;
type WrapperProps = {
color?:
| 'client'
| 'productOwner'
| 'developer'
| 'admin'
| 'success'
| 'warning'
| 'error'
| 'black'
| 'gray'
| 'white';
type?: 'text' | 'email' | 'password' | 'file' | 'number';
fullWidth?: boolean;
};
export const Wrapper = styled.div<WrapperProps>`
.search {
width: inherit;
height: inherit;
border-radius: 5px;
padding: 1rem;
position: relative;
color: ${({ theme }) => theme.colors.black.main};
background: ${({ theme }) => theme.colors.white.main};
background-clip: padding-box;
border: 2px solid transparent;
display: flex;
flex-direction: row;
align-items: center;
&:before {
content: '';
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
width: inherit;
height: inherit;
z-index: -1;
margin: -2px;
border-radius: inherit;
}
}
input {
width: 100%;
background: none;
border: none;
color: ${({ theme }) => theme.colors.black.main};
}
.icon {
cursor: pointer;
display: inline-flex;
align-items: center;
}
.icon.left {
margin-right: 0.5rem;
}
${({ color, theme }) => {
switch (color) {
case 'client':
return css`
.search:before {
background: ${theme.colors.client.light};
}
.icon svg path {
stroke: ${theme.colors.client.main};
}
`;
case 'productOwner':
return css`
.search:before {
background: ${theme.colors.productOwner.light};
}
.icon svg path {
stroke: ${theme.colors.productOwner.main};
}
`;
case 'developer':
return css`
.search:before {
background: ${theme.colors.developer.light};
}
.icon svg path {
stroke: ${theme.colors.developer.main};
}
`;
case 'admin':
return css`
.search:before {
background: ${theme.colors.admin.light};
}
.icon svg path {
stroke: ${theme.colors.admin.main};
}
`;
case 'success':
return css`
.search:before {
background: ${theme.colors.success.main};
}
.icon svg path {
stroke: ${theme.colors.success.main};
}
`;
case 'warning':
return css`
.search:before {
background: ${theme.colors.warning.main};
}
.icon svg path {
stroke: ${theme.colors.warning.main};
}
`;
case 'error':
return css`
.search:before {
background: ${theme.colors.error.main};
}
.icon svg path {
stroke: ${theme.colors.error.main};
}
`;
case 'black':
return css`
.search:before {
background: ${theme.colors.black.main};
}
.icon svg path {
stroke: ${theme.colors.black.main};
}
`;
case 'white':
return css`
.search:before {
background: ${theme.colors.white.main};
}
.icon svg path {
stroke: ${theme.colors.white.main};
}
`;
default:
return css`
.search:before {
background: ${theme.colors.client.light};
}
.icon svg path {
stroke: ${theme.colors.client.main};
}
`;
}
}}
${({ fullWidth }) =>
fullWidth &&
css`
width: 100%;
font-size: 1.25rem;
.icon svg {
width: 1.25rem;
height: 1.25rem;
}
`};
`;
+2
View File
@@ -5,6 +5,8 @@ import Link from './Link';
import Input from './Input';
import TextArea from './TextArea';
import Select from './Select';
import Search from './Search';
import ContextMenu from './ContextMenu';
Search,
ContextMenu,