English 简体中文 繁體中文 한국 사람 日本語 Deutsch русский بالعربية TÜRKÇE português คนไทย french

简体中文 繁體中文 English 日本語 Deutsch 한국 사람 بالعربية TÜRKÇE คนไทย Français русский

回答

收藏

Telegram 小程序 | TypeScript @telegram-apps/react-router-integration

开源社区 开源社区 10055 人阅读 | 0 人回复 | 2025-02-25

Telegram Mini Apps Navigatorreact-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
  1. pnpm i @telegram-apps/react-router-integration
复制代码
npm :4 P0 k# D2 K2 M
  1. npm i @telegram-apps/react-router-integration
复制代码
yarn :
/ i+ e4 e0 e( k! m1 f! J5 R- K
  1. yarn add @telegram-apps/react-router-integration
复制代码
使用方法

目前,该软件包只提供一个函数,用于创建 react-router-dom 路由器的集成 - useIntegration。

下面是它的使用方法:

  1. import { useIntegration } from '@telegram-apps/react-router-integration';
    7 K& |! }0 j+ U  l  J1 K4 N5 \
  2. import { initNavigator } from '@telegram-apps/sdk-react';7 O( U  R* ~# ~
  3. import { useEffect, useMemo } from 'react';
    : {8 x2 e. P0 P+ D" H! @
  4. import {5 V/ m2 s& h8 H6 A( W
  5.   Navigate,
    ; A( v# b. v- B7 M5 N
  6.   Route,1 R" m+ J* F! G& z1 ~8 u& k
  7.   Router,
    $ J! |6 b  A, H1 i4 w4 n
  8.   Routes,
      s# u1 i7 _* o6 ?/ Y
  9. } from 'react-router-dom';
    + e* o0 a, S% q* h* |

  10. : h7 M$ x" G5 }6 [
  11. import { IndexPage } from './IndexPage.js';
    9 F- l  N( X+ B5 `& F7 W9 Y
  12. ' K: ~" n! C2 Y8 M5 ^% @0 Y
  13. function App() {5 r$ S2 Z! D  U* r! i! v  ^2 I
  14.   // Create a new application navigator and attach it to the browser history, so it could modify
    - ?' ^8 |: \$ v8 J8 ?
  15.   // it and listen to its changes.
    0 K2 S% p# z% M5 H! x" ^, k( C
  16.   const navigator = useMemo(() => initNavigator('app-navigation-state'), []);
    1 Q: n* Q/ i) C8 [: ?" J# w. E$ s
  17.   const [location, reactNavigator] = useIntegration(navigator);3 w. t% i+ f5 I' q3 O% S  C

  18. ! c) W! V+ D' R( M, R9 p( j& E6 x
  19.   // 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
  20.   // as browser history.- j& Z+ a! ?. Q3 {3 s
  21.   useEffect(() => {
    ) l& d* m% d. a
  22.     navigator.attach();
    * z$ l* p3 x# m6 q8 p! t/ G
  23.     return () => navigator.detach();
    0 O. f5 o9 o( w+ N6 t* b5 p# R
  24.   }, [navigator]);
    ( P/ f7 Y% c/ i2 S2 k1 V

  25. $ s2 U' `' _7 H1 t7 l: y
  26.   return (7 M7 `4 O0 P* d" M1 ^. m
  27.     <Router location={location} navigator={reactNavigator}>+ c; {! R# P9 ~8 e8 n
  28.       <Routes>- N0 r6 @* G! x4 q
  29.         <Route path={'/'} component={IndexPage}/>8 }! d1 \9 n6 `" ~% ]" g
  30.         <Route path={'*'} element={<Navigate href={'/'}/>}/>
    2 m2 Z3 }/ r5 z  R+ b
  31.       </Routes>
      C5 s) z: N7 K6 y1 U
  32.     </Router>
    ( Z- T6 [) y- q) Z- r1 M1 q
  33.   );1 G! [+ @$ Q4 w  e
  34. }
复制代码

您可以通过 我们的 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
分享到:
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则