mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 09:49:57 +08:00
46 lines
1013 B
TypeScript
46 lines
1013 B
TypeScript
|
import * as React from 'react';
|
||
|
import Hitu, { HiTuRefObject } from '@ant-design/hitu';
|
||
|
import { Shape } from '@ant-design/hitu/lib/interface';
|
||
|
|
||
|
const HOVER_LOOP = false;
|
||
|
|
||
|
export interface InteractiveIconProps {
|
||
|
shapes: Shape[];
|
||
|
debug?: boolean;
|
||
|
frames?: number;
|
||
|
}
|
||
|
|
||
|
export default function InteractiveIcon({ shapes, debug, frames }: InteractiveIconProps) {
|
||
|
const hituRef = React.useRef<HiTuRefObject>(null);
|
||
|
const [loop, setLoop] = React.useState(false);
|
||
|
|
||
|
return (
|
||
|
<span
|
||
|
onMouseEnter={() => {
|
||
|
if (HOVER_LOOP) {
|
||
|
setLoop(true);
|
||
|
}
|
||
|
|
||
|
if (hituRef.current) {
|
||
|
hituRef.current.triggerMotion(true);
|
||
|
}
|
||
|
}}
|
||
|
onMouseLeave={() => {
|
||
|
setLoop(false);
|
||
|
}}
|
||
|
>
|
||
|
<Hitu
|
||
|
debug={debug}
|
||
|
loop={loop}
|
||
|
defaultPlay={false}
|
||
|
ref={hituRef}
|
||
|
frames={frames || 120}
|
||
|
width={120}
|
||
|
height={120}
|
||
|
style={{ width: 120, height: 120 }}
|
||
|
shapes={shapes}
|
||
|
/>
|
||
|
</span>
|
||
|
);
|
||
|
}
|