From 62abb12ae4678832d30d0c112c7c57bad6c8d073 Mon Sep 17 00:00:00 2001
From: Cma <33190610+cma2819@users.noreply.github.com>
Date: Mon, 12 Aug 2024 05:35:12 +0900
Subject: [PATCH] feat: Fan art on setup (#754)
---
src/browser/graphics/views/break.tsx | 38 ++++++++++++++++++++++++++--
1 file changed, 36 insertions(+), 2 deletions(-)
diff --git a/src/browser/graphics/views/break.tsx b/src/browser/graphics/views/break.tsx
index 1c52e472..2965beed 100644
--- a/src/browser/graphics/views/break.tsx
+++ b/src/browser/graphics/views/break.tsx
@@ -21,6 +21,7 @@ import {swipeEnter, swipeExit} from "../components/lib/blur-swipe";
import {newlineString} from "../components/lib/util";
import {useFitViewport} from "../components/lib/use-fit-viewport";
import {render} from "../../render.js";
+import {FanArtTweet} from "../components/fan-art-tweet.js";
const Spacer = () => ;
@@ -216,6 +217,7 @@ const TweetContainer = () => {
const tweetTag = useRef(null);
const fanartTag = useRef(null);
const tweetRef = useRef(null);
+ const fanArtRef = useRef(null);
const transitionTimeline = useCallback(() => {
const tl = gsap.timeline();
tl.to([tweetTag.current, tweetRef.current], {
@@ -226,7 +228,22 @@ const TweetContainer = () => {
tl.to(
[tweetTag.current, tweetRef.current],
{x: 0, duration: 1, ease: Power2.easeOut},
- "+=10",
+ "+=15",
+ );
+ return tl;
+ }, []);
+
+ const transitionFanArtTimeline = useCallback((width: number) => {
+ const tl = gsap.timeline();
+ tl.to([fanartTag.current, fanArtRef.current], {
+ x: (width + 490) * -1,
+ duration: 1,
+ ease: Power2.easeOut,
+ });
+ tl.to(
+ [fanartTag.current, fanArtRef.current],
+ {x: 0, duration: 1, ease: Power2.easeOut},
+ "+=20",
);
return tl;
}, []);
@@ -261,7 +278,6 @@ const TweetContainer = () => {
width={30}
height={98}
style={{
- display: "none", // TODO: remove after adding fanart
gridRow: "2 / 3",
gridColumn: "1 / 2",
alignSelf: "start",
@@ -286,6 +302,24 @@ const TweetContainer = () => {
>