standalone ToolTip component
This commit is contained in:
@@ -1,6 +1,7 @@
|
|||||||
'use client';
|
'use client';
|
||||||
import { useRef, useState } from 'react';
|
import { useRef, useState } from 'react';
|
||||||
|
|
||||||
|
import ToolTip from '@/components/ToolTip';
|
||||||
import tarokkaCards from '@/constants/tarokkaCards';
|
import tarokkaCards from '@/constants/tarokkaCards';
|
||||||
import getCardInfo from '@/tools/getCardInfo';
|
import getCardInfo from '@/tools/getCardInfo';
|
||||||
|
|
||||||
@@ -18,37 +19,6 @@ type CardProps = {
|
|||||||
export default function Card({ dm, card, position, flipAction }: CardProps) {
|
export default function Card({ dm, card, position, flipAction }: CardProps) {
|
||||||
const { aria, card: cardName, description, flipped, url } = card;
|
const { aria, card: cardName, description, flipped, url } = card;
|
||||||
|
|
||||||
const [showTooltip, setShowTooltip] = useState(false);
|
|
||||||
const [tooltipPos, setTooltipPos] = useState({ x: 0, y: 0 });
|
|
||||||
const longPressTimeout = useRef<NodeJS.Timeout | null>(null);
|
|
||||||
const delayTimeout = useRef<NodeJS.Timeout | null>(null);
|
|
||||||
|
|
||||||
const handleMouseMove = (e: React.MouseEvent) => {
|
|
||||||
setTooltipPos({ x: e.clientX, y: e.clientY });
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleMouseEnter = () => {
|
|
||||||
delayTimeout.current = setTimeout(() => {
|
|
||||||
setShowTooltip(true);
|
|
||||||
}, 1000);
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleMouseLeave = () => {
|
|
||||||
clearTimeout(delayTimeout.current!);
|
|
||||||
setShowTooltip(false);
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleTouchStart = () => {
|
|
||||||
longPressTimeout.current = setTimeout(() => {
|
|
||||||
setShowTooltip(true);
|
|
||||||
}, 1000);
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleTouchEnd = () => {
|
|
||||||
clearTimeout(longPressTimeout.current!);
|
|
||||||
setShowTooltip(false);
|
|
||||||
};
|
|
||||||
|
|
||||||
const handleClick = () => {
|
const handleClick = () => {
|
||||||
if (dm) {
|
if (dm) {
|
||||||
flipAction();
|
flipAction();
|
||||||
@@ -71,15 +41,10 @@ export default function Card({ dm, card, position, flipAction }: CardProps) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<ToolTip content={getTooltip()}>
|
||||||
<div
|
<div
|
||||||
className={`relative h-[21vh] w-[15vh] perspective transition-transform duration-200 hover:scale-150 z-0 hover:z-10 ${dm ? 'cursor-pointer' : ''} `}
|
className={`relative h-[21vh] w-[15vh] perspective transition-transform duration-200 hover:scale-150 z-0 hover:z-10 ${dm ? 'cursor-pointer' : ''} `}
|
||||||
onClick={handleClick}
|
onClick={handleClick}
|
||||||
onMouseEnter={handleMouseEnter}
|
|
||||||
onMouseLeave={handleMouseLeave}
|
|
||||||
onMouseMove={handleMouseMove}
|
|
||||||
onTouchStart={handleTouchStart}
|
|
||||||
onTouchEnd={handleTouchEnd}
|
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className={`transition-transform duration-500 transform-style-preserve-3d ${flipped ? 'rotate-y-180' : ''}`}
|
className={`transition-transform duration-500 transform-style-preserve-3d ${flipped ? 'rotate-y-180' : ''}`}
|
||||||
@@ -96,15 +61,6 @@ export default function Card({ dm, card, position, flipAction }: CardProps) {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div
|
</ToolTip>
|
||||||
className={`fixed w-[25vh] pointer-events-none duration-300 ease-in z-50 text-xs bg-black text-white rounded border border-gray-300 px-2 py-1 rounded transition-opacity ${showTooltip ? 'opacity-100' : 'opacity-0'}`}
|
|
||||||
style={{
|
|
||||||
top: `${tooltipPos.y + 20}px`,
|
|
||||||
left: `${tooltipPos.x + 20}px`,
|
|
||||||
}}
|
|
||||||
>
|
|
||||||
{getTooltip()}
|
|
||||||
</div>
|
|
||||||
</>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
66
components/ToolTip.tsx
Normal file
66
components/ToolTip.tsx
Normal file
@@ -0,0 +1,66 @@
|
|||||||
|
'use client';
|
||||||
|
import React, { useRef, useState } from 'react';
|
||||||
|
|
||||||
|
type TooltipProps = {
|
||||||
|
children: React.ReactNode;
|
||||||
|
content: React.ReactNode;
|
||||||
|
delay?: number;
|
||||||
|
mobileDelay?: number;
|
||||||
|
};
|
||||||
|
|
||||||
|
export default function Tooltip({
|
||||||
|
children,
|
||||||
|
content,
|
||||||
|
delay = 500,
|
||||||
|
mobileDelay = 500,
|
||||||
|
}: TooltipProps) {
|
||||||
|
const [show, setShow] = useState(false);
|
||||||
|
const [pos, setPos] = useState({ x: 0, y: 0 });
|
||||||
|
const delayTimeout = useRef<NodeJS.Timeout | null>(null);
|
||||||
|
const longPressTimeout = useRef<NodeJS.Timeout | null>(null);
|
||||||
|
|
||||||
|
const handleMouseEnter = () => {
|
||||||
|
delayTimeout.current = setTimeout(() => setShow(true), delay);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleMouseLeave = () => {
|
||||||
|
if (delayTimeout.current) clearTimeout(delayTimeout.current);
|
||||||
|
setShow(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleMouseMove = (e: React.MouseEvent) => {
|
||||||
|
setPos({ x: e.clientX, y: e.clientY });
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleTouchStart = () => {
|
||||||
|
longPressTimeout.current = setTimeout(() => setShow(true), mobileDelay);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleTouchEnd = () => {
|
||||||
|
if (longPressTimeout.current) clearTimeout(longPressTimeout.current);
|
||||||
|
setShow(false);
|
||||||
|
};
|
||||||
|
|
||||||
|
return (
|
||||||
|
<>
|
||||||
|
<div
|
||||||
|
onMouseEnter={handleMouseEnter}
|
||||||
|
onMouseLeave={handleMouseLeave}
|
||||||
|
onMouseMove={handleMouseMove}
|
||||||
|
onTouchStart={handleTouchStart}
|
||||||
|
onTouchEnd={handleTouchEnd}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
</div>
|
||||||
|
<div
|
||||||
|
className={`fixed w-[25vh] pointer-events-none z-50 text-xs bg-black text-white rounded border border-gray-300 px-2 py-1 transition-opacity duration-250 ${show ? 'opacity-100' : 'opacity-0'}`}
|
||||||
|
style={{
|
||||||
|
top: `${pos.y + 20}px`,
|
||||||
|
left: `${pos.x + 20}px`,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{content}
|
||||||
|
</div>
|
||||||
|
</>
|
||||||
|
);
|
||||||
|
}
|
||||||
@@ -24,7 +24,7 @@ export default function getTooltip(card: TarokkaGameCard, position: Layout, dm:
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Low deck Tome, Ravenkind, or Sunsword
|
// Low deck: Tome, Ravenkind, or Sunsword
|
||||||
if (isLowCard(card)) {
|
if (isLowCard(card)) {
|
||||||
if (dm) text.push(card.prophecy.dmText);
|
if (dm) text.push(card.prophecy.dmText);
|
||||||
text.push(card.prophecy.playerText);
|
text.push(card.prophecy.playerText);
|
||||||
|
|||||||
Reference in New Issue
Block a user