mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
[WEB-4860] dev: propel animated counter component (#7740)
* dev: animated counter added to propel * chore: animated counter story added * chore: propel config updated * chore: code refactor * chore: code refactor * fix: format error
This commit is contained in:
parent
43b7a6ad0a
commit
45688bdc72
@ -17,6 +17,7 @@
|
|||||||
},
|
},
|
||||||
"exports": {
|
"exports": {
|
||||||
"./accordion": "./dist/accordion/index.js",
|
"./accordion": "./dist/accordion/index.js",
|
||||||
|
"./animated-counter": "./dist/animated-counter/index.js",
|
||||||
"./avatar": "./dist/avatar/index.js",
|
"./avatar": "./dist/avatar/index.js",
|
||||||
"./calendar": "./dist/calendar/index.js",
|
"./calendar": "./dist/calendar/index.js",
|
||||||
"./card": "./dist/card/index.js",
|
"./card": "./dist/card/index.js",
|
||||||
|
|||||||
@ -0,0 +1,55 @@
|
|||||||
|
import { useState } from "react";
|
||||||
|
import type { Meta, StoryObj } from "@storybook/react-vite";
|
||||||
|
import { AnimatedCounter } from "./animated-counter";
|
||||||
|
|
||||||
|
const meta: Meta<typeof AnimatedCounter> = {
|
||||||
|
title: "AnimatedCounter",
|
||||||
|
component: AnimatedCounter,
|
||||||
|
parameters: {
|
||||||
|
layout: "centered",
|
||||||
|
},
|
||||||
|
tags: ["autodocs"],
|
||||||
|
argTypes: {
|
||||||
|
size: {
|
||||||
|
control: { type: "select" },
|
||||||
|
options: ["sm", "md", "lg"],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
export default meta;
|
||||||
|
type Story = StoryObj<typeof AnimatedCounter>;
|
||||||
|
|
||||||
|
const AnimatedCounterDemo = (args: React.ComponentProps<typeof AnimatedCounter>) => {
|
||||||
|
const [count, setCount] = useState(args.count || 0);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="space-y-6 p-4">
|
||||||
|
<div className="flex items-center justify-center gap-6">
|
||||||
|
<button
|
||||||
|
className="px-4 py-2 bg-red-500 text-white font-medium rounded-lg hover:bg-red-600 focus:outline-none focus:ring-2 focus:ring-red-400 focus:ring-offset-2 transition-colors shadow-md"
|
||||||
|
onClick={() => setCount((prev) => Math.max(0, prev - 1))}
|
||||||
|
>
|
||||||
|
-1
|
||||||
|
</button>
|
||||||
|
<div className="flex items-center justify-center min-w-[60px] h-12 bg-gray-50 border border-gray-200 rounded-lg">
|
||||||
|
<AnimatedCounter {...args} count={count} />
|
||||||
|
</div>
|
||||||
|
<button
|
||||||
|
className="px-4 py-2 bg-green-500 text-white font-medium rounded-lg hover:bg-green-600 focus:outline-none focus:ring-2 focus:ring-green-400 focus:ring-offset-2 transition-colors shadow-md"
|
||||||
|
onClick={() => setCount((prev) => prev + 1)}
|
||||||
|
>
|
||||||
|
+1
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export const Default: Story = {
|
||||||
|
render: (args) => <AnimatedCounterDemo {...args} />,
|
||||||
|
args: {
|
||||||
|
count: 5,
|
||||||
|
size: "md",
|
||||||
|
},
|
||||||
|
};
|
||||||
95
packages/propel/src/animated-counter/animated-counter.tsx
Normal file
95
packages/propel/src/animated-counter/animated-counter.tsx
Normal file
@ -0,0 +1,95 @@
|
|||||||
|
import { useState, useEffect } from "react";
|
||||||
|
import { cn } from "../utils";
|
||||||
|
|
||||||
|
export interface AnimatedCounterProps {
|
||||||
|
count: number;
|
||||||
|
className?: string;
|
||||||
|
size?: "sm" | "md" | "lg";
|
||||||
|
}
|
||||||
|
|
||||||
|
const sizeClasses = {
|
||||||
|
sm: "text-xs h-4 w-4",
|
||||||
|
md: "text-sm h-5 w-5",
|
||||||
|
lg: "text-base h-6 w-6",
|
||||||
|
};
|
||||||
|
|
||||||
|
export const AnimatedCounter: React.FC<AnimatedCounterProps> = ({ count, className, size = "md" }) => {
|
||||||
|
// states
|
||||||
|
const [displayCount, setDisplayCount] = useState(count);
|
||||||
|
const [prevCount, setPrevCount] = useState(count);
|
||||||
|
const [isAnimating, setIsAnimating] = useState(false);
|
||||||
|
const [direction, setDirection] = useState<"up" | "down" | null>(null);
|
||||||
|
const [animationKey, setAnimationKey] = useState(0);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (count !== prevCount) {
|
||||||
|
setDirection(count > prevCount ? "up" : "down");
|
||||||
|
setIsAnimating(true);
|
||||||
|
setAnimationKey((prev) => prev + 1);
|
||||||
|
|
||||||
|
// Update the display count immediately, animation will show the transition
|
||||||
|
setDisplayCount(count);
|
||||||
|
|
||||||
|
// End animation after CSS transition
|
||||||
|
const timer = setTimeout(() => {
|
||||||
|
setIsAnimating(false);
|
||||||
|
setDirection(null);
|
||||||
|
setPrevCount(count);
|
||||||
|
}, 250);
|
||||||
|
|
||||||
|
return () => clearTimeout(timer);
|
||||||
|
}
|
||||||
|
}, [count, prevCount]);
|
||||||
|
|
||||||
|
const sizeClass = sizeClasses[size];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className={cn("relative inline-flex items-center justify-center overflow-hidden", sizeClass)}>
|
||||||
|
{/* Previous number sliding out */}
|
||||||
|
{isAnimating && (
|
||||||
|
<span
|
||||||
|
key={`prev-${animationKey}`}
|
||||||
|
className={cn(
|
||||||
|
"absolute inset-0 flex items-center justify-center font-medium",
|
||||||
|
"animate-[slideOut_0.25s_ease-out_forwards]",
|
||||||
|
direction === "up" && "[--slide-out-dir:-100%]",
|
||||||
|
direction === "down" && "[--slide-out-dir:100%]",
|
||||||
|
sizeClass
|
||||||
|
)}
|
||||||
|
style={{
|
||||||
|
animation:
|
||||||
|
direction === "up"
|
||||||
|
? "slideOut 0.25s ease-out forwards, fadeOut 0.25s ease-out forwards"
|
||||||
|
: "slideOutDown 0.25s ease-out forwards, fadeOut 0.25s ease-out forwards",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{prevCount}
|
||||||
|
</span>
|
||||||
|
)}
|
||||||
|
|
||||||
|
{/* New number sliding in */}
|
||||||
|
<span
|
||||||
|
key={`current-${animationKey}`}
|
||||||
|
className={cn(
|
||||||
|
"flex items-center justify-center font-medium",
|
||||||
|
isAnimating && "animate-[slideIn_0.25s_ease-out_forwards]",
|
||||||
|
!isAnimating && "opacity-100",
|
||||||
|
sizeClass,
|
||||||
|
className
|
||||||
|
)}
|
||||||
|
style={
|
||||||
|
isAnimating
|
||||||
|
? {
|
||||||
|
animation:
|
||||||
|
direction === "up"
|
||||||
|
? "slideInFromBottom 0.25s ease-out forwards"
|
||||||
|
: "slideInFromTop 0.25s ease-out forwards",
|
||||||
|
}
|
||||||
|
: undefined
|
||||||
|
}
|
||||||
|
>
|
||||||
|
{displayCount}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
||||||
2
packages/propel/src/animated-counter/index.ts
Normal file
2
packages/propel/src/animated-counter/index.ts
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
export { AnimatedCounter } from "./animated-counter";
|
||||||
|
export type { AnimatedCounterProps } from "./animated-counter";
|
||||||
@ -3,6 +3,7 @@ import { defineConfig } from "tsdown";
|
|||||||
export default defineConfig({
|
export default defineConfig({
|
||||||
entry: [
|
entry: [
|
||||||
"src/accordion/index.ts",
|
"src/accordion/index.ts",
|
||||||
|
"src/animated-counter/index.ts",
|
||||||
"src/avatar/index.ts",
|
"src/avatar/index.ts",
|
||||||
"src/calendar/index.ts",
|
"src/calendar/index.ts",
|
||||||
"src/card/index.ts",
|
"src/card/index.ts",
|
||||||
|
|||||||
@ -694,3 +694,57 @@ div.web-view-spinner div.bar12 {
|
|||||||
.disable-autofill-style:-webkit-autofill:active {
|
.disable-autofill-style:-webkit-autofill:active {
|
||||||
-webkit-background-clip: text;
|
-webkit-background-clip: text;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@keyframes slideInFromBottom {
|
||||||
|
0% {
|
||||||
|
transform: translateY(100%);
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: translateY(0);
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes slideInFromTop {
|
||||||
|
0% {
|
||||||
|
transform: translateY(-100%);
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: translateY(0);
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes slideOut {
|
||||||
|
0% {
|
||||||
|
transform: translateY(0);
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: translateY(-100%);
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes slideOutDown {
|
||||||
|
0% {
|
||||||
|
transform: translateY(0);
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: translateY(100%);
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes fadeOut {
|
||||||
|
0% {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user