save
This commit is contained in:
parent
708d8afdd9
commit
a71b1089f5
10
src/App.tsx
10
src/App.tsx
|
|
@ -1,5 +1,5 @@
|
||||||
// App.js
|
// App.js
|
||||||
import { BrowserRouter as Router, RouterProvider, useRoutes } from 'react-router-dom';
|
import { RouterProvider } from 'react-router-dom';
|
||||||
import "./App.css"
|
import "./App.css"
|
||||||
import routes from "@/Routes";
|
import routes from "@/Routes";
|
||||||
import { useCallback, useEffect, useState } from "react";
|
import { useCallback, useEffect, useState } from "react";
|
||||||
|
|
@ -7,6 +7,7 @@ import appApi from "@/api/app";
|
||||||
import { useStore } from "@/store";
|
import { useStore } from "@/store";
|
||||||
import { parsePageConfig } from "@/utils/parsePageConfig";
|
import { parsePageConfig } from "@/utils/parsePageConfig";
|
||||||
import type { I18nData, SupportLocale } from "@/type";
|
import type { I18nData, SupportLocale } from "@/type";
|
||||||
|
import { destroyLenis, initLenis } from "@/utils/lenis";
|
||||||
|
|
||||||
// function AppRoutes() {
|
// function AppRoutes() {
|
||||||
// return useRoutes(routes);
|
// return useRoutes(routes);
|
||||||
|
|
@ -79,6 +80,11 @@ function App() {
|
||||||
getAppConfig();
|
getAppConfig();
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
initLenis();
|
||||||
|
return () => destroyLenis();
|
||||||
|
}, []);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
const shortName = (appConfig as { company?: { config?: { shortName?: string } } })?.company?.config?.shortName;
|
const shortName = (appConfig as { company?: { config?: { shortName?: string } } })?.company?.config?.shortName;
|
||||||
if (shortName) document.title = shortName;
|
if (shortName) document.title = shortName;
|
||||||
|
|
@ -93,4 +99,4 @@ function App() {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
export default App;
|
export default App;
|
||||||
|
|
|
||||||
|
|
@ -3,6 +3,7 @@ import { useEffect, useRef, useState } from 'react';
|
||||||
import { motion, useInView, type Variants } from 'motion/react';
|
import { motion, useInView, type Variants } from 'motion/react';
|
||||||
import styles from './index.module.css';
|
import styles from './index.module.css';
|
||||||
import { Link } from 'react-router-dom';
|
import { Link } from 'react-router-dom';
|
||||||
|
import { scrollToWithLenis } from '@/utils/lenis';
|
||||||
|
|
||||||
const contentItemVariants: Variants = {
|
const contentItemVariants: Variants = {
|
||||||
hidden: { opacity: 0, x: 80 },
|
hidden: { opacity: 0, x: 80 },
|
||||||
|
|
@ -11,27 +12,6 @@ const contentItemVariants: Variants = {
|
||||||
|
|
||||||
const FALLBACK_GRADIENT = "linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%)";
|
const FALLBACK_GRADIENT = "linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%)";
|
||||||
|
|
||||||
function smoothScrollTo(targetY: number, duration = 1200) {
|
|
||||||
const startY = window.scrollY;
|
|
||||||
const diff = targetY - startY;
|
|
||||||
if (Math.abs(diff) < 1) return;
|
|
||||||
let startTime: number | null = null;
|
|
||||||
|
|
||||||
function easeInOutCubic(t: number) {
|
|
||||||
return t < 0.5 ? 4 * t * t * t : 1 - (-2 * t + 2) ** 3 / 2;
|
|
||||||
}
|
|
||||||
|
|
||||||
function step(timestamp: number) {
|
|
||||||
if (!startTime) startTime = timestamp;
|
|
||||||
const elapsed = timestamp - startTime;
|
|
||||||
const progress = Math.min(elapsed / duration, 1);
|
|
||||||
window.scrollTo(0, startY + diff * easeInOutCubic(progress));
|
|
||||||
if (progress < 1) requestAnimationFrame(step);
|
|
||||||
}
|
|
||||||
|
|
||||||
requestAnimationFrame(step);
|
|
||||||
}
|
|
||||||
|
|
||||||
type Data = {
|
type Data = {
|
||||||
title?: string;
|
title?: string;
|
||||||
items: {
|
items: {
|
||||||
|
|
@ -56,12 +36,12 @@ type Props = {
|
||||||
export default function RowAccordion({ data, placement='bottom' }: Props) {
|
export default function RowAccordion({ data, placement='bottom' }: Props) {
|
||||||
const [activeIndex, setActiveIndex] = useState(0);
|
const [activeIndex, setActiveIndex] = useState(0);
|
||||||
const containerRef = useRef<HTMLDivElement>(null);
|
const containerRef = useRef<HTMLDivElement>(null);
|
||||||
const isInView = useInView(containerRef, { once: true, margin: "0px 0px -20% 0px" });
|
const isInView = useInView(containerRef, { once: true, margin: "0px 0px -30% 0px" });
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (isInView && containerRef.current) {
|
if (isInView && containerRef.current) {
|
||||||
const rect = containerRef.current.getBoundingClientRect();
|
const rect = containerRef.current.getBoundingClientRect();
|
||||||
smoothScrollTo(window.scrollY + rect.top, 800);
|
scrollToWithLenis(window.scrollY + rect.top, { duration: 3 });
|
||||||
}
|
}
|
||||||
}, [isInView]);
|
}, [isInView]);
|
||||||
|
|
||||||
|
|
@ -132,4 +112,4 @@ export default function RowAccordion({ data, placement='bottom' }: Props) {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -22,7 +22,7 @@ type Data = {
|
||||||
export default function SwiperCardSection({ data }: { data: Data }) {
|
export default function SwiperCardSection({ data }: { data: Data }) {
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
const hash = location.hash;
|
const hash = location.hash;
|
||||||
const id = decodeURIComponent(hash.replace('#', ''));
|
const hashId = decodeURIComponent(hash.replace('#', ''));
|
||||||
|
|
||||||
const [swiperRef, setSwiperRef] = useState<SwiperType | null>(null);
|
const [swiperRef, setSwiperRef] = useState<SwiperType | null>(null);
|
||||||
const [activeIndex, setActiveIndex] = useState(0);
|
const [activeIndex, setActiveIndex] = useState(0);
|
||||||
|
|
@ -31,17 +31,15 @@ export default function SwiperCardSection({ data }: { data: Data }) {
|
||||||
}, [])
|
}, [])
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (id && data.cardItems && swiperRef) {
|
if (hashId && data.cardItems && swiperRef) {
|
||||||
const index = data.cardItems.findIndex((item) => item.title === id);
|
const index = data.cardItems.findIndex((item) => item.title === hashId);
|
||||||
if (index !== -1) {
|
if (index !== -1) {
|
||||||
setTimeout(() => {
|
swiperRef.slideTo(index, 0);
|
||||||
swiperRef.slideTo(index);
|
|
||||||
}, 500);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}, [id, data.cardItems, swiperRef])
|
}, [hashId, data.cardItems, swiperRef])
|
||||||
return (
|
return (
|
||||||
<section className={styles.swiperCardSection} id={id}>
|
<section className={styles.swiperCardSection} id={data.cardItems[activeIndex]?.title}>
|
||||||
<SectionTitle title={data.title} />
|
<SectionTitle title={data.title} />
|
||||||
<div className={styles.carouselWrapper} >
|
<div className={styles.carouselWrapper} >
|
||||||
{activeIndex > 0 && (
|
{activeIndex > 0 && (
|
||||||
|
|
@ -90,4 +88,4 @@ export default function SwiperCardSection({ data }: { data: Data }) {
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -25,21 +25,24 @@ type Data = {
|
||||||
export default function TopTabsSection({ data, className }: { data: Data, className?: string }) {
|
export default function TopTabsSection({ data, className }: { data: Data, className?: string }) {
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
const hash = location.hash;
|
const hash = location.hash;
|
||||||
const id = decodeURIComponent(hash.replace('#', ''));
|
const hashId = decodeURIComponent(hash.replace('#', ''));
|
||||||
const [activeIndex, setActiveIndex] = useState(0);
|
const [activeIndex, setActiveIndex] = useState(0);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (id && data.tabItems) {
|
if (hashId && data.tabItems) {
|
||||||
setTimeout(() => {
|
const index = data.tabItems.findIndex((item) => item.tabName === hashId);
|
||||||
const index = data.tabItems.findIndex((item) => item.tabName === id);
|
if (index !== -1) {
|
||||||
if (index !== -1) {
|
setActiveIndex(index);
|
||||||
setActiveIndex(index);
|
}
|
||||||
}
|
|
||||||
}, 300)
|
|
||||||
}
|
}
|
||||||
}, [id, data.tabItems])
|
}, [hashId, data.tabItems])
|
||||||
return (
|
return (
|
||||||
<section id={id} className={`${styles.topTabsSection} ${className}`} style={{ backgroundImage: `url(${data.backgroundImage})` }}>
|
<section className={`${styles.topTabsSection} ${className}`} style={{ backgroundImage: `url(${data.backgroundImage})` }}>
|
||||||
|
<div aria-hidden="true">
|
||||||
|
{data.tabItems.map((item) => (
|
||||||
|
<div key={item.tabName} id={item.tabName} style={{ height: 0, overflow: "hidden" }} />
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
<TopTabs data={data} activeIndex={activeIndex} setActiveIndex={setActiveIndex} />
|
<TopTabs data={data} activeIndex={activeIndex} setActiveIndex={setActiveIndex} />
|
||||||
<div className={styles.topTabsContent}>
|
<div className={styles.topTabsContent}>
|
||||||
{
|
{
|
||||||
|
|
@ -93,4 +96,4 @@ export default function TopTabsSection({ data, className }: { data: Data, classN
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,32 +1,42 @@
|
||||||
import { useEffect } from "react";
|
import { useEffect } from "react";
|
||||||
import { useLocation } from "react-router-dom";
|
import { useLocation } from "react-router-dom";
|
||||||
|
import { scrollToWithLenis } from "@/utils/lenis";
|
||||||
|
|
||||||
const useHashScroll = () => {
|
const useHashScroll = () => {
|
||||||
const location = useLocation();
|
const location = useLocation();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (location.hash) {
|
if (!location.hash) {
|
||||||
setTimeout(() => {
|
scrollToWithLenis(0, { immediate: true });
|
||||||
const element = document.querySelector(decodeURIComponent(location.hash));
|
return;
|
||||||
if (element) {
|
|
||||||
const header = document.querySelector("header");
|
|
||||||
const headerHeight = header?.getBoundingClientRect().height ?? 7.5 * 16;
|
|
||||||
const elementTop = element.getBoundingClientRect().top + window.scrollY;
|
|
||||||
const offsetPosition = elementTop - headerHeight;
|
|
||||||
|
|
||||||
window.scrollTo({
|
|
||||||
top: offsetPosition,
|
|
||||||
behavior: "smooth",
|
|
||||||
});
|
|
||||||
}
|
|
||||||
})
|
|
||||||
} else {
|
|
||||||
window.scrollTo({
|
|
||||||
top: 0,
|
|
||||||
behavior: "smooth",
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
}, [location]);
|
|
||||||
|
let rafId = 0;
|
||||||
|
let attempts = 0;
|
||||||
|
const maxAttempts = 120;
|
||||||
|
const targetId = decodeURIComponent(location.hash.slice(1));
|
||||||
|
|
||||||
|
const tryScrollToHash = () => {
|
||||||
|
const element = targetId ? document.getElementById(targetId) : null;
|
||||||
|
if (element) {
|
||||||
|
const header = document.querySelector("header");
|
||||||
|
const headerHeight = header?.getBoundingClientRect().height ?? 7.5 * 16;
|
||||||
|
scrollToWithLenis(element, {
|
||||||
|
offset: -headerHeight,
|
||||||
|
duration: 1.1,
|
||||||
|
});
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (attempts < maxAttempts) {
|
||||||
|
attempts += 1;
|
||||||
|
rafId = window.requestAnimationFrame(tryScrollToHash);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
rafId = window.requestAnimationFrame(tryScrollToHash);
|
||||||
|
return () => window.cancelAnimationFrame(rafId);
|
||||||
|
}, [location.pathname, location.hash]);
|
||||||
};
|
};
|
||||||
|
|
||||||
export default useHashScroll;
|
export default useHashScroll;
|
||||||
|
|
|
||||||
|
|
@ -49,6 +49,19 @@ body {
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
html.lenis,
|
||||||
|
html.lenis body {
|
||||||
|
height: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lenis.lenis-stopped {
|
||||||
|
overflow: hidden;
|
||||||
|
}
|
||||||
|
|
||||||
|
.lenis.lenis-smooth iframe {
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
code {
|
code {
|
||||||
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
||||||
monospace;
|
monospace;
|
||||||
|
|
@ -61,4 +74,4 @@ code {
|
||||||
@font-face {
|
@font-face {
|
||||||
font-family: 'Source Han Sans';
|
font-family: 'Source Han Sans';
|
||||||
src: url('/public/ttf/SourceHanSansCN-Normal.otf');
|
src: url('/public/ttf/SourceHanSansCN-Normal.otf');
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,4 @@
|
||||||
import { Outlet, useLocation } from "react-router-dom";
|
import { Outlet } from "react-router-dom";
|
||||||
import { useEffect } from "react";
|
|
||||||
import Header from "./Header";
|
import Header from "./Header";
|
||||||
import Footer from "./Footer";
|
import Footer from "./Footer";
|
||||||
import useHashScroll from "@/hooks/useHashScroll";
|
import useHashScroll from "@/hooks/useHashScroll";
|
||||||
|
|
@ -7,11 +6,6 @@ import { AliveScope } from "react-activation";
|
||||||
|
|
||||||
export default function MainLayout() {
|
export default function MainLayout() {
|
||||||
useHashScroll()
|
useHashScroll()
|
||||||
const { pathname } = useLocation();
|
|
||||||
|
|
||||||
useEffect(() => {
|
|
||||||
window.scrollTo(0, 0);
|
|
||||||
}, [pathname]);
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="layout">
|
<div className="layout">
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,7 @@ import { useState, useRef, useLayoutEffect, useEffect, useMemo } from "react";
|
||||||
import { useStore } from "@/store";
|
import { useStore } from "@/store";
|
||||||
import appApi from "@/api/app";
|
import appApi from "@/api/app";
|
||||||
import ScrollReveal from "@/components/ScrollReveal";
|
import ScrollReveal from "@/components/ScrollReveal";
|
||||||
|
import { scrollToWithLenis } from "@/utils/lenis";
|
||||||
type TimelineItem = { year: number; content: string, lang: string };
|
type TimelineItem = { year: number; content: string, lang: string };
|
||||||
|
|
||||||
export default function AboutHistory() {
|
export default function AboutHistory() {
|
||||||
|
|
@ -18,7 +19,12 @@ export default function AboutHistory() {
|
||||||
setYear(year);
|
setYear(year);
|
||||||
const yearEl = document.querySelector(`#year-${year}`);
|
const yearEl = document.querySelector(`#year-${year}`);
|
||||||
if (yearEl) {
|
if (yearEl) {
|
||||||
yearEl.scrollIntoView({ behavior: "smooth" });
|
const header = document.querySelector("header");
|
||||||
|
const headerHeight = header?.getBoundingClientRect().height ?? 7.5 * 16;
|
||||||
|
scrollToWithLenis(yearEl as HTMLElement, {
|
||||||
|
offset: -headerHeight,
|
||||||
|
duration: 1,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,72 @@
|
||||||
|
import Lenis from "lenis";
|
||||||
|
|
||||||
|
let lenisInstance: Lenis | null = null;
|
||||||
|
let rafId: number | null = null;
|
||||||
|
|
||||||
|
type ScrollTarget = number | string | HTMLElement;
|
||||||
|
type ScrollOptions = {
|
||||||
|
offset?: number;
|
||||||
|
immediate?: boolean;
|
||||||
|
duration?: number;
|
||||||
|
};
|
||||||
|
|
||||||
|
const isBrowser = typeof window !== "undefined";
|
||||||
|
|
||||||
|
const raf = (time: number) => {
|
||||||
|
lenisInstance?.raf(time);
|
||||||
|
rafId = window.requestAnimationFrame(raf);
|
||||||
|
};
|
||||||
|
|
||||||
|
const resolveTarget = (target: ScrollTarget): HTMLElement | number | null => {
|
||||||
|
if (typeof target === "number") return target;
|
||||||
|
if (target instanceof HTMLElement) return target;
|
||||||
|
if (typeof target === "string") return document.querySelector<HTMLElement>(target);
|
||||||
|
return null;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const initLenis = () => {
|
||||||
|
if (!isBrowser || lenisInstance) return lenisInstance;
|
||||||
|
if (window.matchMedia("(prefers-reduced-motion: reduce)").matches) return null;
|
||||||
|
|
||||||
|
lenisInstance = new Lenis({
|
||||||
|
duration: 1.1,
|
||||||
|
smoothWheel: true,
|
||||||
|
wheelMultiplier: 0.95,
|
||||||
|
touchMultiplier: 1.1,
|
||||||
|
});
|
||||||
|
|
||||||
|
rafId = window.requestAnimationFrame(raf);
|
||||||
|
return lenisInstance;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const destroyLenis = () => {
|
||||||
|
if (rafId !== null) {
|
||||||
|
window.cancelAnimationFrame(rafId);
|
||||||
|
rafId = null;
|
||||||
|
}
|
||||||
|
lenisInstance?.destroy();
|
||||||
|
lenisInstance = null;
|
||||||
|
};
|
||||||
|
|
||||||
|
export const getLenis = () => lenisInstance;
|
||||||
|
|
||||||
|
export const scrollToWithLenis = (target: ScrollTarget, options: ScrollOptions = {}) => {
|
||||||
|
const resolved = resolveTarget(target);
|
||||||
|
const { offset = 0 } = options;
|
||||||
|
const current = getLenis();
|
||||||
|
|
||||||
|
if (current && resolved !== null) {
|
||||||
|
current.scrollTo(resolved as never, options as never);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!isBrowser || resolved === null) return;
|
||||||
|
|
||||||
|
if (typeof resolved === "number") {
|
||||||
|
window.scrollTo({ top: resolved + offset, behavior: "auto" });
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const top = resolved.getBoundingClientRect().top + window.scrollY + offset;
|
||||||
|
window.scrollTo({ top, behavior: "auto" });
|
||||||
|
};
|
||||||
Loading…
Reference in New Issue