forked from stakwork/sphinx-nav-fiber
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request stakwork#2352 from stakwork/feature/fast-filters
Feature/fast filters
- Loading branch information
Showing
8 changed files
with
363 additions
and
353 deletions.
There are no files selected for viewing
100 changes: 100 additions & 0 deletions
100
src/components/App/SideBar/FilterSearch/FastFilters/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,100 @@ | ||
import { useState } from 'react' | ||
import styled from 'styled-components' | ||
import { Flex } from '~/components/common/Flex' | ||
import { colors } from '~/utils' | ||
import { PopoverBody } from '..' | ||
|
||
type Props = { | ||
handleFastFiltersSelect: (types: string[]) => void | ||
} | ||
|
||
const FAST_FILTERS: { [key: string]: string[] } = { | ||
Monitoring: ['Bugevent', 'Trace', 'Application', 'Report', 'Stacktrace'], | ||
} | ||
|
||
export const FastFilters = ({ handleFastFiltersSelect }: Props) => { | ||
const [selected, setSelected] = useState('') | ||
|
||
const handleSelection = (filter: string) => { | ||
if (selected === filter) { | ||
handleFastFiltersSelect([]) | ||
setSelected('') | ||
|
||
return | ||
} | ||
|
||
if (FAST_FILTERS[filter]) { | ||
handleFastFiltersSelect(FAST_FILTERS[filter]) | ||
setSelected(filter) | ||
} | ||
} | ||
|
||
return ( | ||
<> | ||
<PopoverHeader> | ||
<div>Fast Filters</div> | ||
</PopoverHeader> | ||
<PopoverBody> | ||
<SchemaTypeWrapper> | ||
{Object.keys(FAST_FILTERS).map((filter) => ( | ||
<SchemaType key={filter} isSelected={filter === selected} onClick={() => handleSelection(filter)}> | ||
{filter} | ||
</SchemaType> | ||
))} | ||
</SchemaTypeWrapper> | ||
</PopoverBody> | ||
</> | ||
) | ||
} | ||
|
||
const PopoverHeader = styled.div` | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding-bottom: 8px; | ||
font-family: Barlow; | ||
font-size: 18px; | ||
font-weight: 500; | ||
` | ||
|
||
const SchemaTypeWrapper = styled(Flex).attrs({ | ||
align: 'center', | ||
direction: 'row', | ||
grow: 1, | ||
justify: 'flex-start', | ||
})` | ||
flex-wrap: wrap; | ||
gap: 10px; | ||
max-height: 400px; | ||
overflow-y: auto; | ||
padding-right: 10px; | ||
margin-right: calc(0px - 16px); | ||
` | ||
|
||
const SchemaType = styled(Flex).attrs({ | ||
align: 'center', | ||
direction: 'row', | ||
justify: 'flex-start', | ||
})<{ isSelected: boolean }>` | ||
color: ${({ isSelected }) => (isSelected ? colors.black : colors.white)}; | ||
background: ${({ isSelected }) => (isSelected ? colors.white : colors.BUTTON1_PRESS)}; | ||
padding: 6px 10px 6px 8px; | ||
font-family: Barlow; | ||
font-size: 13px; | ||
font-style: normal; | ||
font-weight: 500; | ||
line-height: 15px; | ||
letter-spacing: 0.78px; | ||
margin: 0 3px; | ||
border-radius: 200px; | ||
cursor: pointer; | ||
&:hover { | ||
background: ${({ isSelected }) => (isSelected ? colors.white : colors.BUTTON1_PRESS)}; | ||
} | ||
&:active { | ||
background: ${colors.white}; | ||
color: ${colors.black}; | ||
} | ||
` |
155 changes: 155 additions & 0 deletions
155
src/components/App/SideBar/FilterSearch/NodeTypes/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
import { useState } from 'react' | ||
import styled from 'styled-components' | ||
import { Flex } from '~/components/common/Flex' | ||
import PlusIcon from '~/components/Icons/PlusIcon' | ||
import { SchemaExtended } from '~/components/ModalsContainer/BlueprintModal/types' | ||
import { colors } from '~/utils' | ||
import { PopoverBody } from '..' | ||
|
||
type Props = { | ||
handleSchemaTypeClick: (type: string) => void | ||
selectedTypes: string[] | ||
schemaAll: SchemaExtended[] | ||
} | ||
|
||
export const NodeTypes = ({ handleSchemaTypeClick, selectedTypes, schemaAll }: Props) => { | ||
const [showAllSchemas, setShowAllSchemas] = useState(false) | ||
|
||
const uniqueSchemas = (showAllSchemas ? schemaAll : schemaAll.slice(0, 4)).filter( | ||
(schema, index, self) => index === self.findIndex((s) => s.type === schema.type), | ||
) | ||
|
||
return ( | ||
<> | ||
<PopoverHeader> | ||
<div>Type</div> | ||
<CountSelectedWrapper> | ||
<Count>{selectedTypes.length}</Count> | ||
<SelectedText>Selected</SelectedText> | ||
</CountSelectedWrapper> | ||
</PopoverHeader> | ||
<PopoverBody> | ||
<SchemaTypeWrapper> | ||
{uniqueSchemas.map((schema) => ( | ||
<SchemaType | ||
key={schema.type} | ||
isSelected={selectedTypes.includes(schema.type as string)} | ||
onClick={() => handleSchemaTypeClick(schema?.type as string)} | ||
> | ||
{schema.type} | ||
</SchemaType> | ||
))} | ||
</SchemaTypeWrapper> | ||
{!showAllSchemas && schemaAll.length > 4 && ( | ||
<ViewMoreButton onClick={() => setShowAllSchemas(true)}> | ||
<PlusIconWrapper> | ||
<PlusIcon /> View More | ||
</PlusIconWrapper> | ||
</ViewMoreButton> | ||
)} | ||
</PopoverBody> | ||
</> | ||
) | ||
} | ||
|
||
const PopoverHeader = styled.div` | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
padding-bottom: 8px; | ||
font-family: Barlow; | ||
font-size: 18px; | ||
font-weight: 500; | ||
` | ||
|
||
const CountSelectedWrapper = styled.div` | ||
font-size: 13px; | ||
display: flex; | ||
align-items: center; | ||
` | ||
|
||
const Count = styled.span` | ||
color: ${colors.white}; | ||
` | ||
|
||
const SelectedText = styled.span` | ||
color: ${colors.GRAY3}; | ||
margin-left: 4px; | ||
` | ||
|
||
const PlusIconWrapper = styled.span` | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
gap: 6px; | ||
svg { | ||
width: 23px; | ||
height: 23px; | ||
fill: none; | ||
margin-top: 2px; | ||
} | ||
` | ||
|
||
const SchemaTypeWrapper = styled(Flex).attrs({ | ||
align: 'center', | ||
direction: 'row', | ||
grow: 1, | ||
justify: 'flex-start', | ||
})` | ||
flex-wrap: wrap; | ||
gap: 10px; | ||
max-height: 400px; | ||
overflow-y: auto; | ||
padding-right: 10px; | ||
margin-right: calc(0px - 16px); | ||
` | ||
|
||
const SchemaType = styled(Flex).attrs({ | ||
align: 'center', | ||
direction: 'row', | ||
justify: 'flex-start', | ||
})<{ isSelected: boolean }>` | ||
color: ${({ isSelected }) => (isSelected ? colors.black : colors.white)}; | ||
background: ${({ isSelected }) => (isSelected ? colors.white : colors.BUTTON1_PRESS)}; | ||
padding: 6px 10px 6px 8px; | ||
font-family: Barlow; | ||
font-size: 13px; | ||
font-style: normal; | ||
font-weight: 500; | ||
line-height: 15px; | ||
letter-spacing: 0.78px; | ||
margin: 0 3px; | ||
border-radius: 200px; | ||
cursor: pointer; | ||
&:hover { | ||
background: ${({ isSelected }) => (isSelected ? colors.white : colors.BUTTON1_PRESS)}; | ||
} | ||
&:active { | ||
background: ${colors.white}; | ||
color: ${colors.black}; | ||
} | ||
` | ||
|
||
const ViewMoreButton = styled.button` | ||
background: transparent; | ||
color: ${colors.white}; | ||
border: none; | ||
padding: 6px 12px 6px 3px; | ||
margin-top: 20px; | ||
cursor: pointer; | ||
border-radius: 4px; | ||
font-family: Barlow; | ||
font-size: 13px; | ||
font-weight: 500; | ||
&:hover { | ||
background: ${colors.BUTTON1_HOVER}; | ||
} | ||
&:active { | ||
background: ${colors.BUTTON1_PRESS}; | ||
} | ||
` |
Oops, something went wrong.