启动 根据该软件包的设计,开发人员可以完全控制其生命周期,包括初始化过程。 这意味着没有预初始化的全局组件 供开发人员使用。 他们必须自己创建组件。 为简化开发人员的工作流程,该软件包包含一些特殊函数,其前缀为 init 字符串。 这些函数会返回一个元组,其中包含初始化组件 的一个实例和一个清理函数,清理函数会移除该 init 函数产生的所有副作用。 下面就是一个例子: - import { initBackButton, initMainButton } from '@telegram-apps/sdk';& g, I' x% U9 r7 Y' Z/ o" ^+ ~8 t. |
- # l B& w% B* k
- const [mb, cleanupMb] = initMainButton();
) O: I1 @4 j% F) s! T. l7 A( J - const [bb, cleanupBb] = initBackButton();
+ c+ `4 H) H7 U& R5 ]4 |
6 ^8 r5 w+ A, J6 g- // Clicking the MainButton hides it and shows the BackButton.
4 y- |8 u7 _ a) P& n5 j - mb.on('click', () => {- {7 ]5 p5 W3 n. t- K" x% ~
- mb.hide();
9 s! u# P2 P6 T3 r - bb.show();
, C, d; Z5 O) ?) d - });
7 W9 O# J- V4 W0 a$ R9 L" D
4 S f: @0 a% G' A9 M- // Clicking the BackButton hides it and shows the MainButton.
- I l. N# X( [9 C- T, a9 ~! P+ i1 C - bb.on('click', () => {
5 b4 D, B& Q) ~ - mb.show();7 [0 v0 I8 p' U1 m& q& J" O
- bb.hide();
7 S0 F2 V# `6 { - });
+ f( F4 J9 N! d* Y8 e+ E& b# u
/ T' z9 I6 n& ]1 N6 j& V- // Configure the MainButton.% `, G) F |2 _$ k" }! J
- mb! ?9 i$ W2 x& o0 b
- .setBgColor('#ff0000')( z: g0 I& s8 O5 @: p. ^8 j2 Q _
- .setTextColor('#ffffff')
9 x1 ^( v% y& T* p' H j" ?! P - .setText('Expand')& \& z2 \# r, t" t0 L7 T
- .enable()4 {% p$ m) q& G0 }" }/ R
- .show();
, m5 b+ [# B) Z! A6 ^6 m$ z" C
% ^$ T z! E0 @" G- // When we don't need BackButton and MainButton anymore, we can ( N' Y. |4 d$ V+ F" Z
- // perform a cleanup. After calling a cleanup, the initialized
- w7 i! u# ]/ ?& N. J - // component will not receive any events.
; k/ j9 L% G2 q5 a& W% ^/ W# u5 m - cleanupMb();- p9 x$ M6 h# Y
- cleanupBb();
复制代码INFO 请注意,只要本地没有 相关信息,就不能同步实例化某些组件。 使用每个组件的文档,了解 组件如何初始化。 事件组件实例通过 on 和 off 方法使用常见的事件监听方式。 下面是使用 BackButton 组件的示例 - import { initBackButton } from '@telegram-apps/sdk';3 k7 Z0 y2 h3 c: q
- 9 [2 j$ a) }$ V* K* ~
- const [bb] = initBackButton();; E7 Z) H# d9 n3 H% q: z% P
2 m- u2 N/ ?# J- V W& P- // Clicking the BackButton hides it and shows the MainButton.
, L1 t7 i* L# X - bb.on('click', () => {5 d% @/ j7 o, }
- console.log('BackButton clicked.');& V" N- Y; d( _1 r
- });
复制代码 您可以在组件文档中找到支持的事件列表。9 W4 @0 G2 p! d# b& f3 ]
方法支持几乎每个组件都能检查当前 Mini Apps 版本是否支持其方法。 要检查是否支持某些方法,开发人员应使用组件 instance supports() 函数。 例如 - import { BackButton } from '@telegram-apps/sdk';
' ]( C+ W0 L& b. l# I
# P9 u9 G" h8 S- let bb = new BackButton('6.0', ...);- {3 Z# S2 `, M& t/ r
- bb.supports('show'); // false
% _4 o( \" x/ |" D
( D$ t, G D- M4 p V+ R/ Z6 p- bb = new BackButton('6.3', ...);
! R" K( G3 S$ x! y- n - bb.supports('hide'); // true
复制代码 某些组件支持附加方法 supportsParam ,可检查 方法参数是否受支持:- import { Utils } from '@telegram-apps/sdk';3 `5 ~4 y K7 z% p7 p2 N& _3 F
- 2 i5 Y! r9 g, p/ R3 A# C
- let utils = new Utils('6.0', ...);3 b. c6 D" M2 W
- utils.supportsParam('openLink.tryInstantView'); // false
5 D, j4 T5 \% j! Y# H1 l/ M
0 G1 [5 H1 X1 B c# k2 w2 T- utils = new Utils('6.10', ...);# }* q5 Q" D- `/ G8 u
- utils.supportsParam('openLink.tryInstantView'); // true
复制代码TIP 建议在调用某些组件方法之前使用该功能,只要 能确保开发人员使用该功能。 各组件支持的方法列表见 各组件文档。
0 W$ @$ p3 V' \8 u0 e i. N* `' }7 _% K' Q* Z7 g
|