Files
DndGamePlayer/app/renderer/shared/ui/controls.tsx
T
Ivan Fontosh f270812219 feat(tokens): app-local non-player tokens with session moves and UI polish
Add token library/placements, keep play-time moves for the session, lock presentation interactions, and fix export/import modal layout plus freeform trap label.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-27 11:04:12 +08:00

139 lines
3.7 KiB
TypeScript

import React, { useCallback, useRef, useState } from 'react';
import { createPortal } from 'react-dom';
import styles from './Controls.module.css';
export { Select, type SelectOption, type SelectProps } from './Select';
type ButtonProps = {
children: React.ReactNode;
onClick?: () => void;
variant?: 'primary' | 'ghost';
disabled?: boolean;
title?: string | undefined;
/** Подпись для скринридеров (иконки без текста). */
ariaLabel?: string | undefined;
/** Компактная кнопка под одну иконку. */
iconOnly?: boolean;
/** Позиция тултипа относительно кнопки. */
tooltipPlacement?: 'top' | 'bottom' | 'bottom-left';
};
export function Button({
children,
onClick,
variant = 'ghost',
disabled = false,
title,
ariaLabel,
iconOnly = false,
tooltipPlacement = 'top',
}: ButtonProps) {
const btnRef = useRef<HTMLButtonElement | null>(null);
const hostRef = useRef<HTMLSpanElement | null>(null);
const [tipPos, setTipPos] = useState<{ x: number; y: number } | null>(null);
const showTip = useCallback(() => {
if (!title) return;
const el = disabled ? hostRef.current : btnRef.current;
if (!el) return;
const r = el.getBoundingClientRect();
if (tooltipPlacement === 'bottom-left') {
setTipPos({ x: r.right, y: r.bottom });
return;
}
if (tooltipPlacement === 'bottom') {
setTipPos({ x: r.left + r.width / 2, y: r.bottom });
return;
}
setTipPos({ x: r.left + r.width / 2, y: r.top });
}, [disabled, title, tooltipPlacement]);
const hideTip = useCallback(() => {
setTipPos(null);
}, []);
const btnClass = [
styles.button,
variant === 'primary' ? styles.buttonPrimary : '',
iconOnly ? styles.iconOnly : '',
]
.filter(Boolean)
.join(' ');
const tipClass =
tooltipPlacement === 'bottom-left'
? styles.tooltipBottomLeft
: tooltipPlacement === 'bottom'
? styles.tooltipBottom
: styles.tooltipTop;
const tip =
title && tipPos && typeof document !== 'undefined'
? createPortal(
<div role="tooltip" className={tipClass} style={{ left: tipPos.x, top: tipPos.y }}>
{title}
</div>,
document.body,
)
: null;
const button = (
<button
ref={btnRef}
type="button"
className={btnClass}
disabled={disabled}
aria-label={ariaLabel}
onClick={disabled ? undefined : onClick}
onMouseEnter={disabled ? undefined : showTip}
onMouseLeave={disabled ? undefined : hideTip}
onFocus={showTip}
onBlur={hideTip}
>
{children}
</button>
);
// Disabled buttons don't receive mouse events — host span keeps tooltip usable.
// Single DOM root (not Fragment) so flex/grid parents don't mis-place the button.
if (disabled && title) {
return (
<span className={styles.buttonHost}>
<span ref={hostRef} className={styles.disabledTipHost} onMouseEnter={showTip} onMouseLeave={hideTip}>
{button}
</span>
{tip}
</span>
);
}
return (
<span className={styles.buttonHost}>
{button}
{tip}
</span>
);
}
type InputProps = {
value: string;
placeholder?: string;
onChange: (v: string) => void;
autoFocus?: boolean;
onKeyDown?: (e: React.KeyboardEvent<HTMLInputElement>) => void;
};
export function Input({ value, placeholder, onChange, autoFocus, onKeyDown }: InputProps) {
return (
<input
className={styles.input}
value={value}
placeholder={placeholder}
autoFocus={autoFocus}
onChange={(e) => onChange(e.target.value)}
onKeyDown={onKeyDown}
/>
);
}