* Add filter search logic WIP Filter search Implement filters test: fix sorts tests test: fix filter test feature: search person and display firstname in results feature: fix test for filter component test: mock search filters refactor: create a useSearch hook refactor: move debounce in useSearch and reset status of filter selection feature: debounce set filters refactor: remove useless setSorts feature: add where variable to people query feature: strongly type Filters feature: update WhereTemplate method feature: implement filtering on full name feature: type the useSearch hook feature: use where reducer refactor: create a type for readability feature: use query and mapper from filters feature: implement filter by company feature: search filter results on filter select feature: add loading and results to search results in filters refactor: move render search results in a function feature: display a LOADING when it loads feature: split search input and search filter for different debounce refactor: remove some warnings refactor: remove some warnings * Write test 1 * Write test 2 * test: useSearch is tested * test: update names of default people data * test: add a filter search * Test 3 * Fix tests --------- Co-authored-by: Charles Bochet <charles@twenty.com>
52 lines
1.2 KiB
TypeScript
52 lines
1.2 KiB
TypeScript
import styled from '@emotion/styled';
|
|
import { Workspace } from '../../interfaces/workspace.interface';
|
|
|
|
type OwnProps = {
|
|
workspace: Workspace;
|
|
};
|
|
|
|
const StyledContainer = styled.button`
|
|
display: inline-flex;
|
|
width: min-content;
|
|
height: 34px;
|
|
align-items: center;
|
|
cursor: pointer;
|
|
border: 0;
|
|
background: inherit;
|
|
border: 1px solid ${(props) => props.theme.primaryBorder};
|
|
border-radius: ${(props) => props.theme.spacing(1)};
|
|
padding: ${(props) => props.theme.spacing(2)};
|
|
margin-left: ${(props) => props.theme.spacing(1)};
|
|
`;
|
|
|
|
type StyledLogoProps = {
|
|
logo: string;
|
|
};
|
|
|
|
const StyledLogo = styled.div<StyledLogoProps>`
|
|
background: url(${(props) => props.logo});
|
|
background-size: cover;
|
|
width: 16px;
|
|
height: 16px;
|
|
border-radius: 2px;
|
|
`;
|
|
|
|
const StyledName = styled.div`
|
|
margin-left: ${(props) => props.theme.spacing(1)};
|
|
font-family: 'Inter';
|
|
font-weight: 500;
|
|
font-size: ${(props) => props.theme.fontSizeLarge};
|
|
font-color: ${(props) => props.theme.text0};
|
|
`;
|
|
|
|
function WorkspaceContainer({ workspace }: OwnProps) {
|
|
return (
|
|
<StyledContainer>
|
|
<StyledLogo logo={workspace.logo}></StyledLogo>
|
|
<StyledName>{workspace?.displayName}</StyledName>
|
|
</StyledContainer>
|
|
);
|
|
}
|
|
|
|
export default WorkspaceContainer;
|