/** @jsx jsx */ import type { CSSProperties } from 'react'; import { css, jsx } from '@emotion/react'; import type { Instruction } from '@atlaskit/drag-and-drop-hitbox/experimental/tree-item'; import { token } from '@atlaskit/tokens'; import { DropIndicator } from '../../src/experimental/tree-item'; const itemStyles = css({ display: 'flex', minWidth: 120, padding: 8, alignItems: 'center', gap: 4, borderRadius: 3, position: 'relative', paddingLeft: 'calc(var(--horizontal-indent) + 1ch)', background: token('elevation.surface.sunken', '#F7F8F9'), }); function getLabel(instruction: Instruction): string { if (instruction.type === 'instruction-blocked') { return `[Blocked] ${getLabel(instruction.desired)}`; } if (instruction.type === 'reparent') { return `reparent (lvl${instruction.currentLevel} → lvl${instruction.desiredLevel})`; } return instruction.type; } export default function TreeItem({ instruction, indentPerLevel, currentLevel, }: { instruction: Instruction; indentPerLevel: number; currentLevel: number; }) { return (
{getLabel(instruction)}