604 lines
21 KiB
TypeScript
604 lines
21 KiB
TypeScript
"use client"
|
|
|
|
import { CalendarPlusIcon, GripVerticalIcon } from "lucide-react"
|
|
import { useState, type PointerEvent as ReactPointerEvent } from "react"
|
|
|
|
import type {
|
|
AdminAgentTeam,
|
|
AdminAgentTeamSchedule,
|
|
CreateAdminAgentTeamSchedulePayload,
|
|
UpdateAdminAgentTeamSchedulePayload,
|
|
} from "@/lib/api/admin"
|
|
import { cn, formatDateTime } from "@/lib/utils"
|
|
import { isSameLocalDay } from "./calendar-date-range"
|
|
import { buildDayTimeLayout } from "./calendar-time-layout"
|
|
|
|
type TFunction = (key: string, values?: Record<string, string | number>) => string
|
|
|
|
const weekDayKeys = [
|
|
"weekdayShortMon",
|
|
"weekdayShortTue",
|
|
"weekdayShortWed",
|
|
"weekdayShortThu",
|
|
"weekdayShortFri",
|
|
"weekdayShortSat",
|
|
"weekdayShortSun",
|
|
] as const
|
|
const dayMs = 24 * 60 * 60 * 1000
|
|
const minuteMs = 60 * 1000
|
|
const minDurationMs = 15 * minuteMs
|
|
|
|
type ScheduleCalendarProps = {
|
|
variant?: "month" | "week"
|
|
monthStart: Date
|
|
calendarStart: Date
|
|
calendarEnd: Date
|
|
teams: AdminAgentTeam[]
|
|
schedules: AdminAgentTeamSchedule[]
|
|
loading: boolean
|
|
savingId: number | null
|
|
onCreate: (defaults: Partial<CreateAdminAgentTeamSchedulePayload>) => void
|
|
onEdit: (item: AdminAgentTeamSchedule) => void
|
|
onMove: (payload: UpdateAdminAgentTeamSchedulePayload) => Promise<void>
|
|
onResize: (payload: UpdateAdminAgentTeamSchedulePayload) => Promise<void>
|
|
t: TFunction
|
|
}
|
|
|
|
type DragState =
|
|
| {
|
|
type: "move"
|
|
item: AdminAgentTeamSchedule
|
|
startX: number
|
|
startY: number
|
|
moved: boolean
|
|
}
|
|
| {
|
|
type: "resize"
|
|
edge: "start" | "end"
|
|
item: AdminAgentTeamSchedule
|
|
moved: boolean
|
|
}
|
|
|
|
type InteractionPreview = {
|
|
itemId: number
|
|
date: string | null
|
|
label: string
|
|
invalid: boolean
|
|
x: number
|
|
y: number
|
|
}
|
|
|
|
function addDays(date: Date, days: number) {
|
|
const ret = new Date(date)
|
|
ret.setDate(ret.getDate() + days)
|
|
return ret
|
|
}
|
|
|
|
function startOfDay(date: Date) {
|
|
const ret = new Date(date)
|
|
ret.setHours(0, 0, 0, 0)
|
|
return ret
|
|
}
|
|
|
|
function parseLocalDateTime(value: string) {
|
|
const match = value.match(/^(\d{4})-(\d{2})-(\d{2})[ T](\d{2}):(\d{2})(?::(\d{2}))?/)
|
|
if (!match) {
|
|
return new Date(value)
|
|
}
|
|
return new Date(
|
|
Number(match[1]),
|
|
Number(match[2]) - 1,
|
|
Number(match[3]),
|
|
Number(match[4]),
|
|
Number(match[5]),
|
|
Number(match[6] ?? 0)
|
|
)
|
|
}
|
|
|
|
function formatDate(date: Date) {
|
|
const month = String(date.getMonth() + 1).padStart(2, "0")
|
|
const day = String(date.getDate()).padStart(2, "0")
|
|
return `${date.getFullYear()}-${month}-${day}`
|
|
}
|
|
|
|
function formatDateTimeValue(date: Date) {
|
|
const month = String(date.getMonth() + 1).padStart(2, "0")
|
|
const day = String(date.getDate()).padStart(2, "0")
|
|
const hour = String(date.getHours()).padStart(2, "0")
|
|
const minute = String(date.getMinutes()).padStart(2, "0")
|
|
const second = String(date.getSeconds()).padStart(2, "0")
|
|
return `${date.getFullYear()}-${month}-${day} ${hour}:${minute}:${second}`
|
|
}
|
|
|
|
function formatTime(dateTime: string) {
|
|
return formatDateTime(dateTime).slice(11, 16)
|
|
}
|
|
|
|
function clamp(value: number, min: number, max: number) {
|
|
return Math.min(Math.max(value, min), max)
|
|
}
|
|
|
|
function roundToQuarterHour(date: Date) {
|
|
const ret = new Date(date)
|
|
ret.setSeconds(0, 0)
|
|
const minutes = ret.getHours() * 60 + ret.getMinutes()
|
|
const rounded = Math.round(minutes / 15) * 15
|
|
ret.setHours(Math.floor(rounded / 60), rounded % 60, 0, 0)
|
|
return ret
|
|
}
|
|
|
|
function getPointerDateInCell(event: PointerEvent, cell: Element) {
|
|
const rect = cell.getBoundingClientRect()
|
|
const day = startOfDay(parseLocalDateTime(`${cell.getAttribute("data-date")} 00:00:00`))
|
|
const ratio = clamp((event.clientX - rect.left) / rect.width, 0, 1)
|
|
return roundToQuarterHour(new Date(day.getTime() + ratio * dayMs))
|
|
}
|
|
|
|
function getDropCell(event: PointerEvent) {
|
|
const element = document.elementFromPoint(event.clientX, event.clientY)
|
|
return element?.closest("[data-schedule-cell]")
|
|
}
|
|
|
|
function isHistoricalDay(day: Date) {
|
|
return startOfDay(day).getTime() < startOfDay(new Date()).getTime()
|
|
}
|
|
|
|
function buildMovePayload(item: AdminAgentTeamSchedule, date: string): UpdateAdminAgentTeamSchedulePayload {
|
|
const originalStart = parseLocalDateTime(item.startAt)
|
|
const originalEnd = parseLocalDateTime(item.endAt)
|
|
const duration = originalEnd.getTime() - originalStart.getTime()
|
|
const nextDay = startOfDay(parseLocalDateTime(`${date} 00:00:00`))
|
|
const nextStart = new Date(nextDay)
|
|
nextStart.setHours(originalStart.getHours(), originalStart.getMinutes(), originalStart.getSeconds(), 0)
|
|
const nextEnd = new Date(nextStart.getTime() + duration)
|
|
|
|
return {
|
|
id: item.id,
|
|
teamId: item.teamId,
|
|
startAt: formatDateTimeValue(nextStart),
|
|
endAt: formatDateTimeValue(nextEnd),
|
|
remark: item.remark,
|
|
}
|
|
}
|
|
|
|
function buildResizePayload(
|
|
item: AdminAgentTeamSchedule,
|
|
edge: "start" | "end",
|
|
nextTime: Date
|
|
): UpdateAdminAgentTeamSchedulePayload | null {
|
|
const startAt = parseLocalDateTime(item.startAt)
|
|
const endAt = parseLocalDateTime(item.endAt)
|
|
if (!isSameLocalDay(startAt, nextTime)) {
|
|
return null
|
|
}
|
|
if (edge === "start") {
|
|
if (endAt.getTime() - nextTime.getTime() < minDurationMs) {
|
|
return null
|
|
}
|
|
startAt.setTime(nextTime.getTime())
|
|
} else {
|
|
if (nextTime.getTime() - startAt.getTime() < minDurationMs) {
|
|
return null
|
|
}
|
|
endAt.setTime(nextTime.getTime())
|
|
}
|
|
return {
|
|
id: item.id,
|
|
teamId: item.teamId,
|
|
startAt: formatDateTimeValue(startAt),
|
|
endAt: formatDateTimeValue(endAt),
|
|
remark: item.remark,
|
|
}
|
|
}
|
|
|
|
function buildPreviewFromPayload(
|
|
itemId: number,
|
|
date: string | null,
|
|
payload: UpdateAdminAgentTeamSchedulePayload | null,
|
|
point: { x: number; y: number },
|
|
fallbackLabel: string
|
|
): InteractionPreview {
|
|
return {
|
|
itemId,
|
|
date,
|
|
label: payload ? `${formatTime(payload.startAt)} - ${formatTime(payload.endAt)}` : fallbackLabel,
|
|
invalid: !payload,
|
|
x: point.x,
|
|
y: point.y,
|
|
}
|
|
}
|
|
|
|
function intersectsDay(item: AdminAgentTeamSchedule, day: Date) {
|
|
const dayStart = startOfDay(day)
|
|
const dayEnd = addDays(dayStart, 1)
|
|
const scheduleStart = parseLocalDateTime(item.startAt)
|
|
const scheduleEnd = parseLocalDateTime(item.endAt)
|
|
return scheduleStart < dayEnd && scheduleEnd > dayStart
|
|
}
|
|
|
|
function buildCalendarDays(calendarStart: Date, calendarEnd: Date) {
|
|
const days: Date[] = []
|
|
for (let current = startOfDay(calendarStart); current < calendarEnd; current = addDays(current, 1)) {
|
|
days.push(current)
|
|
}
|
|
return days
|
|
}
|
|
|
|
export function ScheduleCalendar({
|
|
variant = "month",
|
|
monthStart,
|
|
calendarStart,
|
|
calendarEnd,
|
|
teams,
|
|
schedules,
|
|
loading,
|
|
savingId,
|
|
onCreate,
|
|
onEdit,
|
|
onMove,
|
|
onResize,
|
|
t,
|
|
}: ScheduleCalendarProps) {
|
|
const days = buildCalendarDays(calendarStart, calendarEnd)
|
|
const defaultTeamID = teams[0]?.id ?? 0
|
|
const [interactionPreview, setInteractionPreview] = useState<InteractionPreview | null>(null)
|
|
|
|
function handleBlankCellClick(day: Date) {
|
|
const startAt = new Date(day)
|
|
startAt.setHours(9, 0, 0, 0)
|
|
const endAt = new Date(day)
|
|
endAt.setHours(18, 0, 0, 0)
|
|
onCreate({
|
|
teamId: defaultTeamID || undefined,
|
|
startAt: formatDateTimeValue(startAt),
|
|
endAt: formatDateTimeValue(endAt),
|
|
remark: "",
|
|
})
|
|
}
|
|
|
|
function buildInteractionPreview(state: DragState, pointerEvent: PointerEvent): InteractionPreview | null {
|
|
const cell = getDropCell(pointerEvent)
|
|
if (!cell) {
|
|
return {
|
|
itemId: state.item.id,
|
|
date: null,
|
|
label: t("agentTeamSchedule.dropInsideCalendar"),
|
|
invalid: true,
|
|
x: pointerEvent.clientX,
|
|
y: pointerEvent.clientY,
|
|
}
|
|
}
|
|
|
|
const date = cell.getAttribute("data-date")
|
|
if (!date) {
|
|
return null
|
|
}
|
|
if (isHistoricalDay(parseLocalDateTime(`${date} 00:00:00`))) {
|
|
return {
|
|
itemId: state.item.id,
|
|
date,
|
|
label: t("agentTeamSchedule.historyReadonly"),
|
|
invalid: true,
|
|
x: pointerEvent.clientX,
|
|
y: pointerEvent.clientY,
|
|
}
|
|
}
|
|
|
|
const point = { x: pointerEvent.clientX, y: pointerEvent.clientY }
|
|
if (state.type === "move") {
|
|
return buildPreviewFromPayload(state.item.id, date, buildMovePayload(state.item, date), point, t("agentTeamSchedule.cannotMoveHere"))
|
|
}
|
|
|
|
const payload = buildResizePayload(state.item, state.edge, getPointerDateInCell(pointerEvent, cell))
|
|
return buildPreviewFromPayload(state.item.id, date, payload, point, t("agentTeamSchedule.resizeInvalid"))
|
|
}
|
|
|
|
function cleanupPointerInteraction(
|
|
target: HTMLElement,
|
|
pointerId: number,
|
|
handlePointerMove: (moveEvent: PointerEvent) => void,
|
|
handlePointerUp: (upEvent: PointerEvent) => void,
|
|
handlePointerCancel: () => void
|
|
) {
|
|
if (target.hasPointerCapture(pointerId)) {
|
|
target.releasePointerCapture(pointerId)
|
|
}
|
|
window.removeEventListener("pointermove", handlePointerMove)
|
|
window.removeEventListener("pointerup", handlePointerUp)
|
|
window.removeEventListener("pointercancel", handlePointerCancel)
|
|
setInteractionPreview(null)
|
|
}
|
|
|
|
function handlePointerDown(event: ReactPointerEvent, item: AdminAgentTeamSchedule, type: DragState["type"], edge?: "start" | "end") {
|
|
event.preventDefault()
|
|
event.stopPropagation()
|
|
const target = event.currentTarget as HTMLElement
|
|
if (target.isConnected) {
|
|
try {
|
|
target.setPointerCapture(event.pointerId)
|
|
} catch {
|
|
// Some synthetic/browser edge events do not expose a capturable pointer id.
|
|
}
|
|
}
|
|
const state: DragState =
|
|
type === "resize"
|
|
? { type: "resize", edge: edge ?? "end", item, moved: false }
|
|
: { type: "move", item, startX: event.clientX, startY: event.clientY, moved: false }
|
|
|
|
function handlePointerMove(moveEvent: PointerEvent) {
|
|
if (state.type === "move") {
|
|
if (Math.abs(moveEvent.clientX - state.startX) > 4 || Math.abs(moveEvent.clientY - state.startY) > 4) {
|
|
state.moved = true
|
|
} else {
|
|
return
|
|
}
|
|
} else {
|
|
state.moved = true
|
|
}
|
|
setInteractionPreview(buildInteractionPreview(state, moveEvent))
|
|
}
|
|
|
|
async function handlePointerUp(upEvent: PointerEvent) {
|
|
cleanupPointerInteraction(target, event.pointerId, handlePointerMove, handlePointerUp, handlePointerCancel)
|
|
if (!state.moved) {
|
|
onEdit(item)
|
|
return
|
|
}
|
|
const cell = getDropCell(upEvent)
|
|
if (!cell) {
|
|
return
|
|
}
|
|
if (state.type === "move") {
|
|
const date = cell.getAttribute("data-date")
|
|
if (!date) {
|
|
return
|
|
}
|
|
if (isHistoricalDay(parseLocalDateTime(`${date} 00:00:00`))) {
|
|
return
|
|
}
|
|
await onMove(buildMovePayload(item, date))
|
|
return
|
|
}
|
|
const payload = buildResizePayload(item, state.edge, getPointerDateInCell(upEvent, cell))
|
|
if (payload) {
|
|
await onResize(payload)
|
|
}
|
|
}
|
|
|
|
function handlePointerCancel() {
|
|
cleanupPointerInteraction(target, event.pointerId, handlePointerMove, handlePointerUp, handlePointerCancel)
|
|
}
|
|
|
|
window.addEventListener("pointermove", handlePointerMove)
|
|
window.addEventListener("pointerup", handlePointerUp)
|
|
window.addEventListener("pointercancel", handlePointerCancel)
|
|
}
|
|
|
|
if (teams.length === 0 && !loading) {
|
|
return (
|
|
<div className="flex min-h-64 items-center justify-center rounded-lg border bg-background text-sm text-muted-foreground">
|
|
{t("agentTeamSchedule.noTeamsCalendar")}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
function renderDayCell(day: Date, dayIndex: number, options?: { inMonth?: boolean; className?: string; showFullDate?: boolean }) {
|
|
const date = formatDate(day)
|
|
const inMonth = options?.inMonth ?? day.getMonth() === monthStart.getMonth()
|
|
const historical = isHistoricalDay(day)
|
|
const today = isSameLocalDay(day, new Date())
|
|
const daySchedules = schedules
|
|
.filter((item) => intersectsDay(item, day))
|
|
.sort((a, b) => parseLocalDateTime(a.startAt).getTime() - parseLocalDateTime(b.startAt).getTime())
|
|
const dayTimeLayout = buildDayTimeLayout(daySchedules, day)
|
|
return (
|
|
<div
|
|
key={date}
|
|
data-schedule-cell
|
|
data-date={date}
|
|
role="button"
|
|
tabIndex={0}
|
|
className={cn(
|
|
"border-l border-t bg-background p-2 text-left outline-none transition-colors first:border-l-0 hover:bg-muted/20 focus-visible:ring-2 focus-visible:ring-ring",
|
|
dayIndex % 7 === 0 && "border-l-0",
|
|
!inMonth && "bg-muted/20 text-muted-foreground",
|
|
historical && "cursor-not-allowed bg-muted/30 hover:bg-muted/30",
|
|
interactionPreview?.date === date &&
|
|
(interactionPreview.invalid ? "bg-destructive/5 ring-2 ring-destructive/30" : "bg-primary/5 ring-2 ring-primary/35"),
|
|
options?.className
|
|
)}
|
|
onClick={(event) => {
|
|
if ((event.target as HTMLElement).closest("[data-schedule-block]")) {
|
|
return
|
|
}
|
|
if (historical) {
|
|
return
|
|
}
|
|
handleBlankCellClick(day)
|
|
}}
|
|
onKeyDown={(event) => {
|
|
if (historical) {
|
|
return
|
|
}
|
|
if (event.key === "Enter" || event.key === " ") {
|
|
event.preventDefault()
|
|
handleBlankCellClick(day)
|
|
}
|
|
}}
|
|
>
|
|
<div className="mb-2 flex items-start justify-between gap-2">
|
|
<div>
|
|
<div className={cn("text-sm font-medium", !inMonth && "text-muted-foreground")}>
|
|
{options?.showFullDate ? date : day.getDate()}
|
|
</div>
|
|
{dayTimeLayout.rangeLabel ? (
|
|
<div className="mt-0.5 text-[10px] leading-none text-muted-foreground">{dayTimeLayout.rangeLabel}</div>
|
|
) : null}
|
|
</div>
|
|
<div className="flex shrink-0 items-center gap-1">
|
|
{today ? (
|
|
<span className="rounded-sm bg-primary px-1.5 py-0.5 text-[10px] font-medium leading-none text-primary-foreground">
|
|
{t("agentTeamSchedule.today")}
|
|
</span>
|
|
) : null}
|
|
{historical ? null : <CalendarPlusIcon className="size-3.5 text-muted-foreground" />}
|
|
</div>
|
|
</div>
|
|
<div className="space-y-1">
|
|
{daySchedules.slice(0, 5).map((item) => {
|
|
const teamName = item.teamName || teams.find((team) => team.id === item.teamId)?.name || t("agentTeamSchedule.teamFallback", { id: item.teamId })
|
|
const busy = savingId === item.id
|
|
const active = interactionPreview?.itemId === item.id
|
|
const timeLayout = dayTimeLayout.items.get(item.id)
|
|
const readonly = historical || isHistoricalDay(parseLocalDateTime(item.startAt))
|
|
return (
|
|
<div key={`${item.id}-${date}`} className="relative h-10 rounded-sm bg-muted/25">
|
|
<div
|
|
data-schedule-block
|
|
data-time-left={timeLayout?.leftPercent ?? 0}
|
|
data-time-width={timeLayout?.widthPercent ?? 100}
|
|
role="button"
|
|
tabIndex={0}
|
|
className={cn(
|
|
"absolute inset-y-0 cursor-grab overflow-hidden rounded-md border border-primary/20 bg-primary/10 px-2 py-1.5 pl-4 pr-4 text-primary shadow-sm outline-none transition active:cursor-grabbing",
|
|
active && "scale-[0.98] border-primary/50 bg-primary/15 opacity-80 ring-2 ring-primary/30",
|
|
readonly && "cursor-not-allowed opacity-60",
|
|
busy && "pointer-events-none opacity-60"
|
|
)}
|
|
style={{
|
|
left: `${timeLayout?.leftPercent ?? 0}%`,
|
|
width: `${timeLayout?.widthPercent ?? 100}%`,
|
|
minWidth: 34,
|
|
}}
|
|
onPointerDown={(event) => {
|
|
if (readonly) {
|
|
event.preventDefault()
|
|
event.stopPropagation()
|
|
return
|
|
}
|
|
handlePointerDown(event, item, "move")
|
|
}}
|
|
onKeyDown={(event) => {
|
|
if (readonly) {
|
|
return
|
|
}
|
|
if (event.key === "Enter" || event.key === " ") {
|
|
event.preventDefault()
|
|
onEdit(item)
|
|
}
|
|
}}
|
|
>
|
|
<div
|
|
className="absolute left-0 top-0 flex h-full w-3 cursor-ew-resize items-center justify-center bg-primary/15"
|
|
onPointerDown={(event) => {
|
|
if (readonly) {
|
|
event.preventDefault()
|
|
event.stopPropagation()
|
|
return
|
|
}
|
|
handlePointerDown(event, item, "resize", "start")
|
|
}}
|
|
>
|
|
<GripVerticalIcon className="size-3" />
|
|
</div>
|
|
<div
|
|
className="absolute right-0 top-0 flex h-full w-3 cursor-ew-resize items-center justify-center bg-primary/15"
|
|
onPointerDown={(event) => {
|
|
if (readonly) {
|
|
event.preventDefault()
|
|
event.stopPropagation()
|
|
return
|
|
}
|
|
handlePointerDown(event, item, "resize", "end")
|
|
}}
|
|
>
|
|
<GripVerticalIcon className="size-3" />
|
|
</div>
|
|
<div className="truncate text-xs font-medium">{teamName}</div>
|
|
<div className="truncate text-xs">
|
|
{timeLayout ? `${timeLayout.startLabel} - ${timeLayout.endLabel}` : `${formatTime(item.startAt)} - ${formatTime(item.endAt)}`}
|
|
</div>
|
|
{item.remark ? <div className="truncate text-[11px] text-primary/80">{item.remark}</div> : null}
|
|
</div>
|
|
</div>
|
|
)
|
|
})}
|
|
{daySchedules.length > 5 ? (
|
|
<div className="text-xs text-muted-foreground">{t("agentTeamSchedule.moreItems", { count: daySchedules.length - 5 })}</div>
|
|
) : null}
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
if (variant === "week") {
|
|
return (
|
|
<div className="min-w-[760px] overflow-hidden rounded-lg border bg-background">
|
|
<div className={cn("divide-y", loading && "opacity-60")}>
|
|
{days.map((day, dayIndex) => {
|
|
const date = formatDate(day)
|
|
return (
|
|
<div key={date} className="grid grid-cols-[112px_minmax(0,1fr)]">
|
|
<div className="border-r bg-muted/40 px-3 py-3 text-sm font-medium">
|
|
<div>{t(`agentTeamSchedule.${weekDayKeys[dayIndex] ?? "weekdayShortMon"}`)}</div>
|
|
<div className="mt-1 text-xs font-normal text-muted-foreground">{date.slice(5)}</div>
|
|
</div>
|
|
{renderDayCell(day, dayIndex, {
|
|
inMonth: true,
|
|
className: "min-h-24 border-l-0 border-t-0",
|
|
showFullDate: false,
|
|
})}
|
|
</div>
|
|
)
|
|
})}
|
|
</div>
|
|
{interactionPreview ? (
|
|
<div
|
|
data-schedule-preview
|
|
className={cn(
|
|
"pointer-events-none fixed z-50 rounded-md border bg-popover px-3 py-2 text-xs font-medium text-popover-foreground shadow-md",
|
|
interactionPreview.invalid && "border-destructive/40 bg-destructive text-destructive-foreground"
|
|
)}
|
|
style={{
|
|
left: interactionPreview.x + 12,
|
|
top: interactionPreview.y + 12,
|
|
}}
|
|
>
|
|
{interactionPreview.label}
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
return (
|
|
<div className="min-w-[960px] overflow-hidden rounded-lg border bg-background">
|
|
<div className="grid grid-cols-7 border-b bg-muted/40">
|
|
{weekDayKeys.map((key) => (
|
|
<div key={key} className="flex h-10 items-center justify-center border-l first:border-l-0 text-sm font-medium">
|
|
{t(`agentTeamSchedule.${key}`)}
|
|
</div>
|
|
))}
|
|
</div>
|
|
<div className={cn("grid grid-cols-7", loading && "opacity-60")}>
|
|
{days.map((day, dayIndex) => renderDayCell(day, dayIndex, { className: "min-h-36" }))}
|
|
</div>
|
|
{interactionPreview ? (
|
|
<div
|
|
data-schedule-preview
|
|
className={cn(
|
|
"pointer-events-none fixed z-50 rounded-md border bg-popover px-3 py-2 text-xs font-medium text-popover-foreground shadow-md",
|
|
interactionPreview.invalid && "border-destructive/40 bg-destructive text-destructive-foreground"
|
|
)}
|
|
style={{
|
|
left: interactionPreview.x + 12,
|
|
top: interactionPreview.y + 12,
|
|
}}
|
|
>
|
|
{interactionPreview.label}
|
|
</div>
|
|
) : null}
|
|
</div>
|
|
)
|
|
}
|