Initial commit

This commit is contained in:
dk
2026-04-20 13:32:40 +00:00
commit df45590944
648 changed files with 80256 additions and 0 deletions

56
src/tag/Tag.tsx Normal file
View File

@@ -0,0 +1,56 @@
"use client";
import { useRive, useStateMachineInput, Layout, Fit } from "@rive-app/react-canvas";
import { useTagEffects } from "./useTagEffects";
const STATE_MACHINE_NAME = "State Machine 1";
const HOVER_INPUT_NAME = "Hover";
const Tag = () => {
const { shouldShow, handleMouseEnter, handleClick } = useTagEffects();
const { rive, RiveComponent } = useRive({
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/watermark-bob2.riv",
stateMachines: STATE_MACHINE_NAME,
autoplay: true,
layout: new Layout({
fit: Fit.Contain,
}),
});
const hoverInput = useStateMachineInput(rive, STATE_MACHINE_NAME, HOVER_INPUT_NAME);
const handleTagClick = () => {
window.open('https://webild.io', '_blank');
};
const onMouseEnter = () => {
handleMouseEnter();
if (hoverInput) {
hoverInput.value = true;
}
};
const onMouseLeave = () => {
if (hoverInput) {
hoverInput.value = false;
}
};
if (!shouldShow) {
return null;
}
return (
<button
className="fixed z-[99999] bottom-6 right-6 w-[160px] h-[92px] cursor-pointer"
onClick={(e) => handleClick(e, handleTagClick)}
onMouseEnter={onMouseEnter}
onMouseLeave={onMouseLeave}
>
<RiveComponent className="w-full h-full" />
</button>
);
};
export default Tag;

54
src/tag/useTagEffects.ts Normal file
View File

@@ -0,0 +1,54 @@
import { useRef, useEffect, useCallback, useState } from "react";
export function useTagEffects<T extends HTMLElement = HTMLButtonElement>() {
const audioRef = useRef<HTMLAudioElement | null>(null);
const [shouldShow, setShouldShow] = useState(true);
useEffect(() => {
audioRef.current = new Audio("https://webuild-dev.s3.eu-north-1.amazonaws.com/default/audio/click.mp3");
audioRef.current.volume = 0.75;
}, []);
useEffect(() => {
if (window.self !== window.top) {
try {
const parentHostname = window.top?.location.hostname;
if (parentHostname?.includes('webild.io')) {
setShouldShow(false);
}
} catch {
setShouldShow(true);
}
}
}, []);
const playSound = useCallback(() => {
if (audioRef.current) {
audioRef.current.currentTime = 0;
audioRef.current.play().catch(() => {});
}
}, []);
const handleMouseEnter = useCallback(() => {
if (window.innerWidth > 768) {
playSound();
}
}, [playSound]);
const handleClick = useCallback(
(e: React.MouseEvent<T>, onClick?: (e: React.MouseEvent<T>) => void) => {
playSound();
if (onClick) {
onClick(e);
}
},
[playSound]
);
return {
shouldShow,
handleMouseEnter,
handleClick,
buttonClassName: "transition-all duration-200 hover:-translate-y-[3px]",
};
}