( messageId: string, partId: string, target: HoverTarget | null, )
| 57 | } |
| 58 | |
| 59 | export function isPartHighlighted( |
| 60 | messageId: string, |
| 61 | partId: string, |
| 62 | target: HoverTarget | null, |
| 63 | ): boolean { |
| 64 | if (!target) return false |
| 65 | return ( |
| 66 | target.partIds.includes(partId) || target.messageIds.includes(messageId) |
| 67 | ) |
| 68 | } |
| 69 | |
| 70 | export function isMessageOrPartHighlighted( |
| 71 | messageId: string, |