Telegram Mini Apps Navigator 和 react-router-dom 的集成.
5 {- L4 ~& E5 z6 {) S, e+ d7 j) W- U" }9 M! M6 z- l& z/ j3 I; k
安装
! @! t7 A8 J0 h. U c) t: E9 Hpnpm :
8 G2 s- U4 o9 o: k- pnpm i @telegram-apps/react-router-integration
复制代码 npm :- \/ n6 O9 }' M
- npm i @telegram-apps/react-router-integration
复制代码 yarn :
% S" C X6 E% V- yarn add @telegram-apps/react-router-integration
复制代码 使用方法目前,该软件包只提供一个函数,用于创建 react-router-dom 路由器的集成 - useIntegration。 下面是它的使用方法: - import { useIntegration } from '@telegram-apps/react-router-integration';
" Z. i# E( q- K# ~$ x7 G/ p$ F3 `3 Z - import { initNavigator } from '@telegram-apps/sdk-react';
% Y* C) D" E# d# D. }2 p - import { useEffect, useMemo } from 'react';* T6 r$ Y. @* W
- import {
. g+ R1 ~7 o: I; j/ z( R - Navigate,
( U- B. H$ w- g6 s - Route,
$ s1 \$ R) I3 D* } - Router,) b) `3 Q, ^! {9 J
- Routes,
5 `4 Q; E8 J1 \) g" C4 P - } from 'react-router-dom';
& P- B+ H% }- n4 F- e, X - 5 b Y" Q' i, F( t3 D
- import { IndexPage } from './IndexPage.js';
% z+ S$ T9 ]4 A( c( g h - + O& |& g3 ~ V. I. c6 w
- function App() {
" M% v, L! O" ~0 U8 {. ? - // Create a new application navigator and attach it to the browser history, so it could modify2 M+ g( F7 x. B. R" O
- // it and listen to its changes./ g; i+ M& l, B! [: l& d
- const navigator = useMemo(() => initNavigator('app-navigation-state'), []);8 @% C5 ^* H: l/ C
- const [location, reactNavigator] = useIntegration(navigator);
9 D+ l4 l! `8 }4 k5 R+ Z8 m. m ^
$ t$ _* R; [! v% q) u( ?- // Don't forget to attach the navigator to allow it to control the BackButton state as well5 P3 B4 K2 N$ X9 F# U" ?
- // as browser history.
" w" A! S0 B+ b - useEffect(() => {
) M. _' i2 [) d/ n - navigator.attach();
3 Y* T5 [5 v \2 Q0 l - return () => navigator.detach();
1 H" H$ C. q' x0 g9 f - }, [navigator]); u v6 L/ h8 [5 u/ w( O4 J
( x0 }$ s3 [( L4 n- return (; Z% v" D: O0 t
- <Router location={location} navigator={reactNavigator}>0 D7 r3 j; a2 f) y5 M
- <Routes>( P+ W9 r6 }' h2 O: l- |
- <Route path={'/'} component={IndexPage}/>
0 J# r, j5 A ~' R5 z. k - <Route path={'*'} element={<Navigate href={'/'}/>}/>
6 i {. S( V+ x5 r2 Y' ^: F: k& | - </Routes>' h, A. k6 }( B" {2 v7 R
- </Router>
- l+ R+ N" H: I8 B) h - );
6 U7 g: t) t5 d @" V7 p* T& M - }
复制代码您可以通过 我们的 React 模板 了解更多关于如何使用它的实际应用。
$ u& f' _' B* {( Q: ?- U. O, |9 G& `% V. n u0 z9 j9 N& n& [/ p
- w. D# ]% v# Z
3 W2 X) N/ E2 L; m* Z6 {" R2 ~7 W9 @: x( D/ b- h2 N
|