feat: 全员一致时增加 confetti 粒子特效、庆祝音效和默契度文案

This commit is contained in:
2026-02-24 22:03:49 +08:00
parent 43d3ff0fa3
commit 801e922bb6
5 changed files with 159 additions and 11 deletions
+19
View File
@@ -9,6 +9,7 @@
"version": "0.1.0", "version": "0.1.0",
"dependencies": { "dependencies": {
"@prisma/client": "^6.19.2", "@prisma/client": "^6.19.2",
"canvas-confetti": "^1.9.4",
"framer-motion": "^12.34.3", "framer-motion": "^12.34.3",
"lucide-react": "^0.575.0", "lucide-react": "^0.575.0",
"next": "16.1.6", "next": "16.1.6",
@@ -20,6 +21,7 @@
}, },
"devDependencies": { "devDependencies": {
"@tailwindcss/postcss": "^4", "@tailwindcss/postcss": "^4",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^20", "@types/node": "^20",
"@types/react": "^19", "@types/react": "^19",
"@types/react-dom": "^19", "@types/react-dom": "^19",
@@ -1616,6 +1618,13 @@
"tslib": "^2.4.0" "tslib": "^2.4.0"
} }
}, },
"node_modules/@types/canvas-confetti": {
"version": "1.9.0",
"resolved": "https://registry.npmjs.org/@types/canvas-confetti/-/canvas-confetti-1.9.0.tgz",
"integrity": "sha512-aBGj/dULrimR1XDZLtG9JwxX1b4HPRF6CX9Yfwh3NvstZEm1ZL7RBnel4keCPSqs1ANRu1u2Aoz9R+VmtjYuTg==",
"dev": true,
"license": "MIT"
},
"node_modules/@types/estree": { "node_modules/@types/estree": {
"version": "1.0.8", "version": "1.0.8",
"resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz",
@@ -2706,6 +2715,16 @@
], ],
"license": "CC-BY-4.0" "license": "CC-BY-4.0"
}, },
"node_modules/canvas-confetti": {
"version": "1.9.4",
"resolved": "https://registry.npmjs.org/canvas-confetti/-/canvas-confetti-1.9.4.tgz",
"integrity": "sha512-yxQbJkAVrFXWNbTUjPqjF7G+g6pDotOUHGbkZq2NELZUMDpiJ85rIEazVb8GTaAptNW2miJAXbs1BtioA251Pw==",
"license": "ISC",
"funding": {
"type": "donate",
"url": "https://www.paypal.me/kirilvatev"
}
},
"node_modules/chalk": { "node_modules/chalk": {
"version": "4.1.2", "version": "4.1.2",
"resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz",
+2
View File
@@ -10,6 +10,7 @@
}, },
"dependencies": { "dependencies": {
"@prisma/client": "^6.19.2", "@prisma/client": "^6.19.2",
"canvas-confetti": "^1.9.4",
"framer-motion": "^12.34.3", "framer-motion": "^12.34.3",
"lucide-react": "^0.575.0", "lucide-react": "^0.575.0",
"next": "16.1.6", "next": "16.1.6",
@@ -21,6 +22,7 @@
}, },
"devDependencies": { "devDependencies": {
"@tailwindcss/postcss": "^4", "@tailwindcss/postcss": "^4",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^20", "@types/node": "^20",
"@types/react": "^19", "@types/react": "^19",
"@types/react-dom": "^19", "@types/react-dom": "^19",
+42 -5
View File
@@ -1,6 +1,6 @@
"use client"; "use client";
import { useState, useCallback } from "react"; import { useState, useCallback, useEffect, useRef } from "react";
import { motion, AnimatePresence } from "framer-motion"; import { motion, AnimatePresence } from "framer-motion";
import { useRouter } from "next/navigation"; import { useRouter } from "next/navigation";
import { import {
@@ -18,8 +18,10 @@ import {
Swords, Swords,
RefreshCw, RefreshCw,
Share2, Share2,
Zap,
} from "lucide-react"; } from "lucide-react";
import { Restaurant, MatchType, RunnerUp } from "@/types"; import { Restaurant, MatchType, RunnerUp } from "@/types";
import { fireCelebration, playChime } from "@/lib/celebrate";
interface MatchResultProps { interface MatchResultProps {
restaurant: Restaurant; restaurant: Restaurant;
@@ -173,20 +175,37 @@ export default function MatchResult({
const router = useRouter(); const router = useRouter();
const [showRunnerUps, setShowRunnerUps] = useState(false); const [showRunnerUps, setShowRunnerUps] = useState(false);
const [toast, setToast] = useState(""); const [toast, setToast] = useState("");
const celebratedRef = useRef(false);
const isUnanimous = matchType === "unanimous";
const showToast = useCallback((msg: string) => { const showToast = useCallback((msg: string) => {
setToast(msg); setToast(msg);
setTimeout(() => setToast(""), 2200); setTimeout(() => setToast(""), 2200);
}, []); }, []);
useEffect(() => {
if (isUnanimous && !celebratedRef.current) {
const timer = setTimeout(() => {
celebratedRef.current = true;
fireCelebration();
playChime();
}, 500);
return () => clearTimeout(timer);
}
}, [isUnanimous]);
const handleShare = useCallback(async () => { const handleShare = useCallback(async () => {
const lines = [ const lines = [
`🎉 我们用 NoWhatever 选好了!`, isUnanimous
? `🎉 默契度 100%${userCount} 人全员一致选了同一家!`
: `🎉 我们用 NoWhatever 选好了!`,
``, ``,
`📍 ${restaurant.name}`, `📍 ${restaurant.name}`,
restaurant.rating ? `${restaurant.rating}` : "", restaurant.rating ? `${restaurant.rating}` : "",
restaurant.price && restaurant.price !== "未知" ? `💰 人均${restaurant.price}` : "", restaurant.price && restaurant.price !== "未知" ? `💰 人均${restaurant.price}` : "",
restaurant.address ? `📮 ${restaurant.address}` : "", restaurant.address ? `📮 ${restaurant.address}` : "",
``,
isUnanimous ? `✨ 这就是心有灵犀吧~` : "",
].filter(Boolean); ].filter(Boolean);
const text = lines.join("\n"); const text = lines.join("\n");
@@ -213,14 +232,12 @@ export default function MatchResult({
} catch { } catch {
showToast("复制失败,请手动复制"); showToast("复制失败,请手动复制");
} }
}, [restaurant, showToast]); }, [restaurant, showToast, isUnanimous, userCount]);
if (matchType === "no_match") { if (matchType === "no_match") {
return <NoMatchResult onReset={onReset} resetting={resetting} />; return <NoMatchResult onReset={onReset} resetting={resetting} />;
} }
const isUnanimous = matchType === "unanimous";
const runnerUpRestaurants = runnerUps const runnerUpRestaurants = runnerUps
.map((ru) => { .map((ru) => {
const r = allRestaurants.find((rest) => rest.id === ru.id); const r = allRestaurants.find((rest) => rest.id === ru.id);
@@ -277,6 +294,26 @@ export default function MatchResult({
: `${matchLikes}/${userCount} 人想去这家`} : `${matchLikes}/${userCount} 人想去这家`}
</motion.p> </motion.p>
{isUnanimous && (
<motion.div
className="mt-3 flex items-center gap-2 rounded-full bg-white/20 px-4 py-1.5 backdrop-blur-sm"
initial={{ scale: 0, opacity: 0 }}
animate={{ scale: 1, opacity: 1 }}
transition={{
type: "spring",
stiffness: 300,
damping: 15,
delay: 0.55,
}}
>
<Zap size={14} className="fill-yellow-300 text-yellow-300" />
<span className="text-xs font-bold text-white">
100% · {userCount}
</span>
<Zap size={14} className="fill-yellow-300 text-yellow-300" />
</motion.div>
)}
<motion.div <motion.div
className="mt-6 w-full overflow-hidden rounded-2xl bg-white shadow-2xl" className="mt-6 w-full overflow-hidden rounded-2xl bg-white shadow-2xl"
initial={{ y: 60, opacity: 0 }} initial={{ y: 60, opacity: 0 }}
-6
View File
@@ -98,12 +98,6 @@ export default function QrInviteModal({
level="M" level="M"
bgColor="transparent" bgColor="transparent"
fgColor="#18181b" fgColor="#18181b"
imageSettings={{
src: "",
height: 0,
width: 0,
excavate: false,
}}
/> />
</div> </div>
+96
View File
@@ -0,0 +1,96 @@
import confetti from "canvas-confetti";
type ConfettiFn = confetti.CreateTypes;
let _cannon: ConfettiFn | null = null;
function getCannon(): ConfettiFn {
if (_cannon) return _cannon;
const canvas = document.createElement("canvas");
canvas.style.cssText =
"position:fixed;inset:0;width:100vw;height:100vh;z-index:2147483647;pointer-events:none";
document.body.appendChild(canvas);
canvas.width = canvas.offsetWidth * (window.devicePixelRatio || 1);
canvas.height = canvas.offsetHeight * (window.devicePixelRatio || 1);
_cannon = confetti.create(canvas, { resize: true });
return _cannon;
}
export function fireCelebration() {
const fire = getCannon();
const colors = ["#10b981", "#f59e0b", "#ef4444", "#6366f1", "#ec4899"];
fire({
particleCount: 80,
spread: 100,
origin: { y: 0.35 },
colors,
startVelocity: 45,
ticks: 200,
});
const end = Date.now() + 2500;
const frame = () => {
if (Date.now() > end) return;
fire({
particleCount: 3,
angle: 60,
spread: 55,
origin: { x: 0, y: 0.6 },
colors,
startVelocity: 35,
ticks: 150,
});
fire({
particleCount: 3,
angle: 120,
spread: 55,
origin: { x: 1, y: 0.6 },
colors,
startVelocity: 35,
ticks: 150,
});
requestAnimationFrame(frame);
};
setTimeout(frame, 300);
}
export function playChime() {
try {
const ctx = new AudioContext();
const gain = ctx.createGain();
gain.connect(ctx.destination);
gain.gain.setValueAtTime(0.15, ctx.currentTime);
gain.gain.exponentialRampToValueAtTime(0.001, ctx.currentTime + 1.2);
const notes = [523.25, 659.25, 783.99, 1046.5]; // C5, E5, G5, C6
notes.forEach((freq, i) => {
const osc = ctx.createOscillator();
osc.type = "sine";
osc.frequency.value = freq;
const noteGain = ctx.createGain();
noteGain.connect(gain);
const start = ctx.currentTime + i * 0.12;
noteGain.gain.setValueAtTime(0, start);
noteGain.gain.linearRampToValueAtTime(0.3, start + 0.03);
noteGain.gain.exponentialRampToValueAtTime(0.001, start + 0.6);
osc.connect(noteGain);
osc.start(start);
osc.stop(start + 0.6);
});
setTimeout(() => ctx.close(), 2000);
} catch {
// Audio not available — silent fallback
}
}