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

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

回答

收藏

Telegram 小程序 | TypeScript @telegram-apps/sdk @2.x | 组件 | 主题参数

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

主题参数

💠组件 负责 Telegram Mini Apps 主题参数

安装

在使用该组件之前,必须对其进行安装,以确保属性配置正确。 ,使用 mount 方法更新 isMounted 信号属性。

Variable :

  1. import { themeParams } from '@telegram-apps/sdk';6 ?$ c: L. q& H& r1 O! J
  2. & x) v$ J. Z) I1 X$ i& I% W7 [: i
  3. themeParams.mount(); " R) V, p% f7 {# e4 @6 G* ?
  4. themeParams.isMounted(); // true
复制代码

Function :

  1. import {6 s7 K+ A7 a/ [0 [2 p
  2.   mountThemeParams,& h- p" h% i# {
  3.   isThemeParamsMounted,
    " L7 r. P" r, g8 T5 ^4 ^. V
  4. } from '@telegram-apps/sdk';! A4 t* Q- ^( v. Z2 W' I

  5. - U) m1 ]4 r' j* h- z  t
  6. mountThemeParams(); - {- C0 {' N* [
  7. isThemeParamsMounted(); // true
复制代码
& \0 g4 h& @& C/ J" C- K9 I: V

要卸载,请使用 unmount 方法:

Variable :

  1. themeParams.unmount(); , q+ _" E- b9 l
  2. themeParams.isMounted(); // false
复制代码

Functions :

  1. import {
    $ c! J3 c) L" T
  2.   unmountThemeParams,- h  a. {% _/ _& z- K
  3.   isThemeParamsMounted,
    ' O& ]. ~; y% A( I, t6 q0 @
  4. } from '@telegram-apps/sdk';- J. N6 _" C" D' d

  5. * b7 c  e4 q  ~0 c* `# |
  6. unmountThemeParams();6 |0 _. U* q' {7 \/ i( y, M
  7. isThemeParamsMounted(); // false
复制代码
绑定 CSS 变量

该作用域允许通过 CSS 变量公开其属性。

要创建新的 CSS 变量,请使用 bindCssVars 方法。 调用时,它会更新 isCssVarsBound 信号属性。

该方法可选择接受一个函数,该函数接收驼峰格式的主题调色板键, 返回 CSS 变量名。 默认情况下,该方法使用这些规则转换调色板键:

  • 将数值转换为 kebab 大小写。
  • 预置 --tg-theme- 前缀。$ g7 l- u4 q4 Z1 H

( H1 R" g1 X7 H7 O) xVariable :
5 Z* n& i) [$ |5 k( D, F! o
  1. themeParams.bindCssVars();
    4 L  J9 F! W$ J
  2. // Creates CSS variables like:+ F5 }& h! k# @- Z! R: k" q$ q$ J
  3. // --tg-theme-button-color: #aabbcc
    6 _6 T3 i6 d: z8 Z/ F
  4. // --tg-theme-accent-text-color: #aabbcc
    ( i  b7 \* @4 C- N
  5. // --tg-theme-bg-color: #aabbcc
    & p  J2 \) \, \+ g' H
  6. // ...
    / S: l2 J& u* w: j6 X4 {4 N

  7. 1 B/ b0 `+ ?) r/ s5 \  ?
  8. themeParams.bindCssVars(key => `--my-prefix-${key}`);
    & v/ F; m6 x3 [4 @+ n
  9. // Creates CSS variables like:
    ( h& e) _3 C  q8 b% M+ ^+ m3 H( C
  10. // --my-prefix-buttonColor: #aabbcc
    ; f0 y* W: b; |2 j
  11. // --my-prefix-accentTextColor: #aabbcc+ o/ b, Z2 }; a: f
  12. // --my-prefix-bgColor: #aabbcc; b* a# A& Z9 k
  13. // ...$ b6 T  @* M* x

  14. 4 l  w! H; }6 [( r% n7 h
  15. // themeParams.isCssVarsBound() -> true
复制代码
Functions :7 I( \# @3 `  m4 K9 M7 @. U3 p& \
  1. import {
    " E9 ~) P% n! u' t4 n
  2.   bindThemeParamsCssVars,5 v: i% Y6 P2 @
  3.   isThemeParamsCssVarsBound,' K9 ]: m% J2 y( C9 T# O  M
  4. } from '@telegram-apps/sdk';
    & i9 T$ X. z4 e9 a! p% ?

  5. / t9 u1 L+ Z# S
  6. bindThemeParamsCssVars();
    $ B. S! n* x' K5 V* Q/ C( v& C2 p
  7. // Creates CSS variables like:
    / p6 ], A! D9 z, B+ M. K
  8. // --tg-theme-button-color: #aabbcc
    0 H5 I6 Y9 s; O5 v
  9. // --tg-theme-accent-text-color: #aabbcc  J: d) H" G. H; T. m
  10. // --tg-theme-bg-color: #aabbcc& q# l* h) r+ l4 e
  11. // ...
    + p6 v1 U/ D4 n0 ]% q% x

  12. $ U# r0 l) \+ [! D. U+ j: C
  13. bindThemeParamsCssVars(key => `--my-prefix-${key}`);
    % Q. S7 J1 j! d+ C$ L
  14. // Creates CSS variables like:; K6 `% V& ]! L8 N( u! j8 B1 M
  15. // --my-prefix-buttonColor: #aabbcc
    ; ?+ u) t. Z; O2 o' I% Q1 K) H
  16. // --my-prefix-accentTextColor: #aabbcc, d8 W0 U, R; a7 |9 ~) j5 m
  17. // --my-prefix-bgColor: #aabbcc8 z9 R" Z& G6 r5 _3 \4 y
  18. // ...
    ; H; O3 m3 ?  @- y  F2 k9 K
  19. 2 ^3 P$ f6 z/ Y5 ^, b; _* W
  20. // isThemeParamsCssVarsBound() -> true
复制代码
属性2 K* C; B) _8 K
Variable :1 p0 `9 _( n7 K& q' T
  1. themeParams.accentTextColor(); // RGB | undefined. u# U* H% f& G5 \( Q4 \7 K0 y. s. @2 e
  2. themeParams.backgroundColor(); // RGB | undefined$ V& `- z+ \& \1 D
  3. themeParams.buttonTextColor(); // RGB | undefined
    3 [, d! z1 G8 K9 C: f
  4. themeParams.buttonColor(); // RGB | undefined* V6 G5 H  W2 W8 B
  5. themeParams.destructiveTextColor(); // RGB | undefined
    4 ~. }2 U( H. b6 c( A/ q
  6. themeParams.headerBackgroundColor(); // RGB | undefined/ n. ~8 H; U, A9 C6 d$ D( u
  7. themeParams.hintColor(); // RGB | undefined
    % p8 }9 K; ?( r
  8. themeParams.linkColor(); // RGB | undefined
    7 c( u/ Y3 ^. `# M/ G8 L
  9. themeParams.subtitleTextColor(); // RGB | undefined* V8 p* {7 A2 D6 W
  10. themeParams.sectionBackgroundColor(); // RGB | undefined1 v& `. ^% Q5 y4 R. `% I
  11. themeParams.secondaryBackgroundColor(); // RGB | undefined
    ) {2 }6 Y5 L8 T1 V% r6 f
  12. themeParams.sectionSeparatorColor(); // RGB | undefined$ i3 O3 P# Y! K7 n
  13. themeParams.sectionHeaderTextColor(); // RGB | undefined2 w  P: z, ]" r+ x! C/ v$ N
  14. themeParams.textColor(); // RGB | undefined
    . g1 z, J0 ~4 C: J: x. \
  15. 8 b$ q2 ]3 `0 `  E
  16. themeParams.state(); // Record<string, RGB>;
复制代码
Functions :- p( M! a8 `/ v3 F  p& t4 d0 E
  1. import {
    $ ^: x3 x  |6 \5 U
  2.   themeParamsAccentTextColor,
    ! e: H* @# X' N, \9 B
  3.   themeParamsBackgroundColor,0 g* R2 v3 c0 _" u. [6 [
  4.   themeParamsButtonTextColor,
    ' [  F- b2 [: [9 d
  5.   themeParamsButtonColor,1 {9 n+ n/ t$ k
  6.   themeParamsDestructiveTextColor,
    & D8 t8 `( s4 L! U( [) N4 M
  7.   themeParamsHeaderBackgroundColor,) ?5 D. y+ {4 m% n9 k0 C% r1 x* G
  8.   themeParamsHintColor,* |% H4 t) Z7 B
  9.   themeParamsLinkColor,
    9 u* Q( b3 _; M( l
  10.   themeParamsSubtitleTextColor,
    : z; `) {# }& l4 s
  11.   themeParamsSectionBackgroundColor,* v* y2 \3 S& u2 n4 z/ x4 h6 P
  12.   themeParamsSecondaryBackgroundColor,
    9 E9 P& s* y: W
  13.   themeParamsSectionSeparatorColor,
    $ X* T3 r' F2 {2 F! \+ T8 R
  14.   themeParamsSectionHeaderTextColor,
      C, U* |$ Y; b2 q+ n* j9 |
  15.   themeParamsTextColor,! A. d3 u. N, n
  16.   themeParamsState,
    4 Y/ f) \3 i! O- \
  17. } from '@telegram-apps/sdk';' }/ r7 @* ?) z$ F+ s

  18. * }" j, z9 o6 l4 j# Z
  19. themeParamsAccentTextColor(); // RGB | undefined6 T7 h7 B9 @0 ~) r" h
  20. themeParamsBackgroundColor(); // RGB | undefined
    " E& t% y% w% Y' l
  21. themeParamsButtonTextColor(); // RGB | undefined
      D. }& C! l6 X, _1 L0 ~7 b
  22. themeParamsButtonColor(); // RGB | undefined
    6 M1 Z8 c( V7 i
  23. themeParamsDestructiveTextColor(); // RGB | undefined
    ( P8 N! _0 s: {3 m" x
  24. themeParamsHeaderBackgroundColor(); // RGB | undefined3 z8 k. |, ?, X5 I( B
  25. themeParamsHintColor(); // RGB | undefined
    $ c8 t7 o9 ?3 ]& `2 o! X* h$ z& R
  26. themeParamsLinkColor(); // RGB | undefined% N6 F  j0 z5 b9 ?2 d; Q5 S. i
  27. themeParamsSubtitleTextColor(); // RGB | undefined
    " b' U) _; V, F( S6 S
  28. themeParamsSectionBackgroundColor(); // RGB | undefined
    & }* F& e- {  A
  29. themeParamsSecondaryBackgroundColor(); // RGB | undefined" P9 R5 k) W- x9 r
  30. themeParamsSectionSeparatorColor(); // RGB | undefined3 z0 {3 K7 [& ~: a
  31. themeParamsSectionHeaderTextColor(); // RGB | undefined8 i* T9 u! Q2 H4 l/ \0 k
  32. themeParamsTextColor(); // RGB | undefined
    1 E' P6 d& ?* c: r7 \3 z+ ^8 O
  33. ( f2 V: V& v: O5 b
  34. themeParamsState(); // Record<string, RGB>;
复制代码
7 m7 Z6 A, g! U4 h
( [& y% [% _- D3 R* H
% `) i# k1 w0 x5 H
分享到:
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则