Telegram Mini Apps Navigator 和 react-router-dom 的集成.
' u6 l' I5 n- W: v3 x' `, _1 q; S8 E0 w6 b7 `* X1 P; F
安装8 A C+ i5 f5 B+ U8 @8 y& {
pnpm :
' Y) G9 K @ [. e- pnpm i @telegram-apps/react-router-integration
复制代码 npm :4 P0 k# D2 K2 M
- npm i @telegram-apps/react-router-integration
复制代码 yarn :
/ i+ e4 e0 e( k! m1 f! J5 R- K- yarn add @telegram-apps/react-router-integration
复制代码 使用方法目前,该软件包只提供一个函数,用于创建 react-router-dom 路由器的集成 - useIntegration。 下面是它的使用方法: - import { useIntegration } from '@telegram-apps/react-router-integration';
7 K& |! }0 j+ U l J1 K4 N5 \ - import { initNavigator } from '@telegram-apps/sdk-react';7 O( U R* ~# ~
- import { useEffect, useMemo } from 'react';
: {8 x2 e. P0 P+ D" H! @ - import {5 V/ m2 s& h8 H6 A( W
- Navigate,
; A( v# b. v- B7 M5 N - Route,1 R" m+ J* F! G& z1 ~8 u& k
- Router,
$ J! |6 b A, H1 i4 w4 n - Routes,
s# u1 i7 _* o6 ?/ Y - } from 'react-router-dom';
+ e* o0 a, S% q* h* |
: h7 M$ x" G5 }6 [- import { IndexPage } from './IndexPage.js';
9 F- l N( X+ B5 `& F7 W9 Y - ' K: ~" n! C2 Y8 M5 ^% @0 Y
- function App() {5 r$ S2 Z! D U* r! i! v ^2 I
- // Create a new application navigator and attach it to the browser history, so it could modify
- ?' ^8 |: \$ v8 J8 ? - // it and listen to its changes.
0 K2 S% p# z% M5 H! x" ^, k( C - const navigator = useMemo(() => initNavigator('app-navigation-state'), []);
1 Q: n* Q/ i) C8 [: ?" J# w. E$ s - const [location, reactNavigator] = useIntegration(navigator);3 w. t% i+ f5 I' q3 O% S C
! c) W! V+ D' R( M, R9 p( j& E6 x- // Don't forget to attach the navigator to allow it to control the BackButton state as well5 D& G/ p2 t+ O( v; A6 C
- // as browser history.- j& Z+ a! ?. Q3 {3 s
- useEffect(() => {
) l& d* m% d. a - navigator.attach();
* z$ l* p3 x# m6 q8 p! t/ G - return () => navigator.detach();
0 O. f5 o9 o( w+ N6 t* b5 p# R - }, [navigator]);
( P/ f7 Y% c/ i2 S2 k1 V
$ s2 U' `' _7 H1 t7 l: y- return (7 M7 `4 O0 P* d" M1 ^. m
- <Router location={location} navigator={reactNavigator}>+ c; {! R# P9 ~8 e8 n
- <Routes>- N0 r6 @* G! x4 q
- <Route path={'/'} component={IndexPage}/>8 }! d1 \9 n6 `" ~% ]" g
- <Route path={'*'} element={<Navigate href={'/'}/>}/>
2 m2 Z3 }/ r5 z R+ b - </Routes>
C5 s) z: N7 K6 y1 U - </Router>
( Z- T6 [) y- q) Z- r1 M1 q - );1 G! [+ @$ Q4 w e
- }
复制代码您可以通过 我们的 React 模板 了解更多关于如何使用它的实际应用。 : J* y5 s7 C% \
4 m$ S7 @: x( L) U* s" e- X7 K# y i7 y
" L& I ^. T7 p6 v3 O5 \, G
- _3 A& z; c& J |