This repository was archived by the owner on Jul 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtable-messages.tsx
More file actions
232 lines (215 loc) · 6.08 KB
/
Copy pathtable-messages.tsx
File metadata and controls
232 lines (215 loc) · 6.08 KB
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
import {
Cell,
Column,
Row,
Table,
TableBody,
TableHeader,
Button,
ResizableTableContainer,
Tooltip,
TooltipTrigger,
} from '@stacklok/ui-kit'
import { Alert, Conversation, QuestionType } from '@/api/generated'
import { remark } from 'remark'
import strip from 'strip-markdown'
import { useClientSidePagination } from '@/hooks/useClientSidePagination'
import { TableAlertTokenUsage } from './table-alert-token-usage'
import { useMessagesFilterSearchParams } from '../hooks/use-messages-filter-search-params'
import { Key01, PackageX, Passport } from '@untitled-ui/icons-react'
import {
EmptyStateError,
TableMessagesEmptyState,
} from './table-messages-empty-state'
import { hrefs } from '@/lib/hrefs'
import { isAlertMalicious } from '../../../lib/is-alert-malicious'
import { isAlertSecret } from '../../../lib/is-alert-secret'
import { twMerge } from 'tailwind-merge'
import { useQueryGetWorkspaceMessagesTable } from '../hooks/use-query-get-workspace-messages-table'
import {
TABLE_MESSAGES_COLUMNS,
TableMessagesColumn,
} from '../constants/table-messages-columns'
import { formatTime } from '@/lib/format-time'
import { isAlertPii } from '@/lib/is-alert-pii'
const getPromptText = (conversation: Conversation) => {
const markdownSource =
conversation.question_answers[0]?.question?.message ?? 'N/A'
const fullText = remark().use(strip).processSync(markdownSource)
return fullText.toString().trim().slice(0, 200) // arbitrary slice to prevent long prompts
}
function getTypeText(type: QuestionType) {
switch (type) {
case QuestionType.CHAT:
return 'Chat'
case QuestionType.FIM:
return 'Fill in the middle (FIM)'
default:
return 'Unknown'
}
}
function countAlerts(alerts: Alert[]): {
secrets: number
malicious: number
pii: number
} {
return {
secrets: alerts.filter(isAlertSecret).length,
malicious: alerts.filter(isAlertMalicious).length,
pii: alerts.filter(isAlertPii).length,
}
}
function AlertsSummaryCount({
count,
icon: Icon,
strings,
}: {
count: number
icon: (props: React.SVGProps<SVGSVGElement>) => React.JSX.Element
strings: {
singular: string
plural: string
}
}) {
const tooltipText = `${count} ${count === 1 ? strings.singular : strings.plural} detected`
return (
<TooltipTrigger delay={0}>
<Button
aria-label={`${strings?.plural} count`}
variant="tertiary"
isIcon
className={twMerge(
'flex items-center gap-1',
count > 0 ? 'text-secondary' : 'text-disabled'
)}
>
<Icon className="size-4" />
{count}
</Button>
<Tooltip>{tooltipText}</Tooltip>
</TooltipTrigger>
)
}
function AlertsSummaryCellContent({ alerts }: { alerts: Alert[] }) {
const { malicious, secrets, pii } = countAlerts(alerts)
return (
<div className="flex items-center gap-2">
<AlertsSummaryCount
strings={{
singular: 'malicious package',
plural: 'malicious packages',
}}
count={malicious}
icon={PackageX}
/>
<AlertsSummaryCount
strings={{
singular: 'secret',
plural: 'secrets',
}}
count={secrets}
icon={Key01}
/>
<AlertsSummaryCount
strings={{
singular: 'personally identifiable information (PII)',
plural: 'personally identifiable information (PII)',
}}
count={pii}
icon={Passport}
/>
</div>
)
}
function CellRenderer({
column,
row,
}: {
column: TableMessagesColumn
row: Conversation
}) {
switch (column.id) {
case 'time':
return (
<span className="whitespace-nowrap text-secondary">
{formatTime(new Date(row.conversation_timestamp))}
</span>
)
case 'type':
return getTypeText(row.type)
case 'prompt':
return getPromptText(row)
case 'alerts':
return <AlertsSummaryCellContent alerts={row.alerts ?? []} />
case 'token_usage':
return <TableAlertTokenUsage usage={row.token_usage_agg} />
default:
return column.id satisfies never
}
}
export function TableMessages() {
const { state, prevPage, nextPage } = useMessagesFilterSearchParams()
const { data = [], isError } = useQueryGetWorkspaceMessagesTable()
const { dataView, hasNextPage, hasPreviousPage } = useClientSidePagination(
data,
state.page,
15
)
return (
<>
<ResizableTableContainer>
<Table data-testid="messages-table" aria-label="Alerts table">
<TableHeader columns={TABLE_MESSAGES_COLUMNS}>
{(column) => <Column {...column} id={column.id} />}
</TableHeader>
<TableBody
renderEmptyState={() => {
if (isError) return <EmptyStateError />
return <TableMessagesEmptyState />
}}
items={dataView}
>
{(row) => (
<Row
columns={TABLE_MESSAGES_COLUMNS}
id={row.chat_id}
href={hrefs.prompt(row.chat_id)}
data-timestamp={row.conversation_timestamp}
>
{(column) => (
<Cell
className="h-5 truncate py-1 group-last/row:border-b-0"
alignment={column.alignment}
id={column.id}
>
<CellRenderer column={column} row={row} />
</Cell>
)}
</Row>
)}
</TableBody>
</Table>
</ResizableTableContainer>
{hasNextPage || hasPreviousPage ? (
<div className="flex w-full justify-center p-4">
<div className="grid grid-cols-2 gap-2">
<Button
variant="secondary"
isDisabled={!hasPreviousPage}
onPress={prevPage}
>
Previous
</Button>
<Button
variant="secondary"
isDisabled={!hasNextPage}
onPress={nextPage}
>
Next
</Button>
</div>
</div>
) : null}
</>
)
}