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

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

回答

收藏

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

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

Telegram Mini Apps Navigatorreact-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
  1. pnpm i @telegram-apps/react-router-integration
复制代码
npm :- \/ n6 O9 }' M
  1. npm i @telegram-apps/react-router-integration
复制代码
yarn :
% S" C  X6 E% V
  1. yarn add @telegram-apps/react-router-integration
复制代码
使用方法

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

下面是它的使用方法:

  1. import { useIntegration } from '@telegram-apps/react-router-integration';
    " Z. i# E( q- K# ~$ x7 G/ p$ F3 `3 Z
  2. import { initNavigator } from '@telegram-apps/sdk-react';
    % Y* C) D" E# d# D. }2 p
  3. import { useEffect, useMemo } from 'react';* T6 r$ Y. @* W
  4. import {
    . g+ R1 ~7 o: I; j/ z( R
  5.   Navigate,
    ( U- B. H$ w- g6 s
  6.   Route,
    $ s1 \$ R) I3 D* }
  7.   Router,) b) `3 Q, ^! {9 J
  8.   Routes,
    5 `4 Q; E8 J1 \) g" C4 P
  9. } from 'react-router-dom';
    & P- B+ H% }- n4 F- e, X
  10. 5 b  Y" Q' i, F( t3 D
  11. import { IndexPage } from './IndexPage.js';
    % z+ S$ T9 ]4 A( c( g  h
  12. + O& |& g3 ~  V. I. c6 w
  13. function App() {
    " M% v, L! O" ~0 U8 {. ?
  14.   // Create a new application navigator and attach it to the browser history, so it could modify2 M+ g( F7 x. B. R" O
  15.   // it and listen to its changes./ g; i+ M& l, B! [: l& d
  16.   const navigator = useMemo(() => initNavigator('app-navigation-state'), []);8 @% C5 ^* H: l/ C
  17.   const [location, reactNavigator] = useIntegration(navigator);
    9 D+ l4 l! `8 }4 k5 R+ Z8 m. m  ^

  18. $ t$ _* R; [! v% q) u( ?
  19.   // Don't forget to attach the navigator to allow it to control the BackButton state as well5 P3 B4 K2 N$ X9 F# U" ?
  20.   // as browser history.
    " w" A! S0 B+ b
  21.   useEffect(() => {
    ) M. _' i2 [) d/ n
  22.     navigator.attach();
    3 Y* T5 [5 v  \2 Q0 l
  23.     return () => navigator.detach();
    1 H" H$ C. q' x0 g9 f
  24.   }, [navigator]);  u  v6 L/ h8 [5 u/ w( O4 J

  25. ( x0 }$ s3 [( L4 n
  26.   return (; Z% v" D: O0 t
  27.     <Router location={location} navigator={reactNavigator}>0 D7 r3 j; a2 f) y5 M
  28.       <Routes>( P+ W9 r6 }' h2 O: l- |
  29.         <Route path={'/'} component={IndexPage}/>
    0 J# r, j5 A  ~' R5 z. k
  30.         <Route path={'*'} element={<Navigate href={'/'}/>}/>
    6 i  {. S( V+ x5 r2 Y' ^: F: k& |
  31.       </Routes>' h, A. k6 }( B" {2 v7 R
  32.     </Router>
    - l+ R+ N" H: I8 B) h
  33.   );
    6 U7 g: t) t5 d  @" V7 p* T& M
  34. }
复制代码

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

本版积分规则