Skip to content

Commit

Permalink
Merge pull request stakwork#2352 from stakwork/feature/fast-filters
Browse files Browse the repository at this point in the history
Feature/fast filters
  • Loading branch information
Rassl authored Oct 16, 2024
2 parents 4473203 + 7fa0b15 commit c781de8
Show file tree
Hide file tree
Showing 8 changed files with 363 additions and 353 deletions.
100 changes: 100 additions & 0 deletions src/components/App/SideBar/FilterSearch/FastFilters/index.tsx
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 src/components/App/SideBar/FilterSearch/NodeTypes/index.tsx
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};
}
`
Loading

0 comments on commit c781de8

Please sign in to comment.