-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtabs-messages.tsx
123 lines (111 loc) · 3.13 KB
/
tabs-messages.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
import { isConversationWithMaliciousAlerts } from '../../../lib/is-alert-malicious'
import { multiFilter } from '@/lib/multi-filter'
import { isConversationWithSecretAlerts } from '../../../lib/is-alert-secret'
import { V1GetWorkspaceMessagesResponse } from '@/api/generated'
import {
Tab as BaseTab,
Tabs,
TabList,
TabPanel,
Badge,
Card,
CardBody,
} from '@stacklok/ui-kit'
import {
AlertsFilterView,
useMessagesFilterSearchParams,
} from '../hooks/use-messages-filter-search-params'
import { SearchFieldMessages } from './search-field-messages'
import { tv } from 'tailwind-variants'
import { useQueryGetWorkspaceMessages } from '@/hooks/use-query-get-workspace-messages'
import { isConversationWithPII } from '@/lib/is-alert-pii'
type AlertsCount = {
all: number
malicious: number
secrets: number
pii: number
}
function select(data: V1GetWorkspaceMessagesResponse): AlertsCount {
const all: number = data?.length ?? 0
const malicious: number = multiFilter(data, [
isConversationWithMaliciousAlerts,
]).length
const secrets: number = multiFilter(data, [
isConversationWithSecretAlerts,
]).length
const pii: number = multiFilter(data, [isConversationWithPII]).length
return {
all,
malicious,
secrets,
pii,
}
}
const tabStyle = tv({
base: [
'mx-0.5 my-1 first:ml-1 last:mr-1',
`flex h-[calc(2rem-2px)] items-center gap-1 rounded !border-0 bg-transparent
text-secondary`,
'hover:bg-gray-50 hover:text-secondary',
`selected:border-gray-200 selected:bg-base selected:text-secondary
selected:shadow-sm hover:selected:bg-base`,
],
})
function Tab({
id,
title,
count,
}: {
title: string
id: AlertsFilterView
count: number
}) {
return (
<BaseTab className={tabStyle()} id={id}>
<span className="block">{title}</span>
<Badge
data-testid={`tab-${id}-count`}
size="sm"
className="max-h-5 text-[11px]"
>
{count}
</Badge>
</BaseTab>
)
}
export function TabsMessages({ children }: { children: React.ReactNode }) {
const { state, setView } = useMessagesFilterSearchParams()
const { data } = useQueryGetWorkspaceMessages({
select,
})
return (
<Tabs
onSelectionChange={(key) => setView(key.toString() as AlertsFilterView)}
selectedKey={state.view}
defaultSelectedKey={AlertsFilterView.ALL}
>
<div className="mb-4 flex items-center gap-2">
<TabList className="overflow-hidden rounded-sm bg-gray-100">
<Tab title="All" count={data?.all ?? 0} id={AlertsFilterView.ALL} />
<Tab
title="Malicious"
count={data?.malicious ?? 0}
id={AlertsFilterView.MALICIOUS}
/>
<Tab
title="Secrets"
count={data?.secrets ?? 0}
id={AlertsFilterView.SECRETS}
/>
<Tab title="PII" count={data?.pii ?? 0} id={AlertsFilterView.PII} />
</TabList>
<SearchFieldMessages className="ml-auto" />
</div>
<TabPanel id={state.view}>
<Card>
<CardBody className="p-0">{children}</CardBody>
</Card>
</TabPanel>
</Tabs>
)
}