2019-12-26 15:27:52 +08:00
|
|
|
import * as React from 'react';
|
2022-05-07 14:31:54 +08:00
|
|
|
import type { HiTuRefObject } from '@ant-design/hitu';
|
|
|
|
import Hitu from '@ant-design/hitu';
|
|
|
|
import type { Shape } from '@ant-design/hitu/lib/interface';
|
2019-12-26 15:27:52 +08:00
|
|
|
|
|
|
|
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>
|
|
|
|
);
|
|
|
|
}
|