主题参数 💠组件 负责 Telegram Mini Apps 主题参数。 安装在使用该组件之前,必须对其进行安装,以确保属性配置正确。 ,使用 mount 方法更新 isMounted 信号属性。 Variable : - import { themeParams } from '@telegram-apps/sdk';
) x! c- o% g |+ ^. s: ~3 }$ C - 9 g# S# a% A7 F
- themeParams.mount();
2 I9 e! ?- A; i8 h% w6 O( k - themeParams.isMounted(); // true
复制代码Function : - import {
8 `3 E, f& `+ i+ v5 h7 |5 I - mountThemeParams,
/ |% K; b4 |- N* n- M# z( ]6 g - isThemeParamsMounted,* b2 ] {$ x P, `* x, v% A+ O
- } from '@telegram-apps/sdk';
0 ?2 J" i3 @+ t: x. f) u, q - & ~) X' u6 u* p9 t3 Z; M
- mountThemeParams(); # r* c9 m! k3 T: z$ q$ [
- isThemeParamsMounted(); // true
复制代码
. c1 \* Q7 e( Z* Q/ r" V4 H要卸载,请使用 unmount 方法: Variable : - themeParams.unmount(); + S+ |! A' N+ S# U3 [ u
- themeParams.isMounted(); // false
复制代码Functions : - import {
7 V* G9 ^! I5 @1 K* z$ | - unmountThemeParams,) `% L. d: g/ R7 {1 Q7 C
- isThemeParamsMounted,
h' q1 L" {$ ` - } from '@telegram-apps/sdk';& P- s, @6 s4 }& M: v
- 2 m* }2 F0 m y. y6 M
- unmountThemeParams();7 K! i9 r0 h- z3 N
- isThemeParamsMounted(); // false
复制代码 绑定 CSS 变量该作用域允许通过 CSS 变量公开其属性。 要创建新的 CSS 变量,请使用 bindCssVars 方法。 调用时,它会更新 isCssVarsBound 信号属性。 该方法可选择接受一个函数,该函数接收驼峰格式的主题调色板键, 返回 CSS 变量名。 默认情况下,该方法使用这些规则转换调色板键: - 将数值转换为 kebab 大小写。
- 预置 --tg-theme- 前缀。5 R8 ]/ X3 u. ?1 M
' a9 I1 z2 `+ x- N9 o: ~
Variable :3 O, f3 O3 g# o9 \0 D! f+ c+ Q
- themeParams.bindCssVars();9 b( n! h% Q( p" b1 L5 C( m
- // Creates CSS variables like:
: _" h; ]% _6 Q* n' \ - // --tg-theme-button-color: #aabbcc
( C( R2 N! b. T* @- z7 t - // --tg-theme-accent-text-color: #aabbcc" p, F* U+ k" {8 c
- // --tg-theme-bg-color: #aabbcc
3 R, ~ J( f9 t, v0 W) N3 a - // ...( X8 { [+ ^) I5 R( Z- n
" Z4 b8 S4 K6 {9 C0 u- themeParams.bindCssVars(key => `--my-prefix-${key}`);. \, b$ V* C' v7 s2 `/ r) `6 ?
- // Creates CSS variables like:
& b+ j) r* V& ] Q4 B% g - // --my-prefix-buttonColor: #aabbcc
( ?# _3 g! [( m2 o$ h3 t - // --my-prefix-accentTextColor: #aabbcc
: ?/ ^ h% N& |3 p - // --my-prefix-bgColor: #aabbcc
6 R4 a# ]" L8 }0 z- { - // ...
2 }" a! W2 b$ t0 K/ j. U - : g% F6 P0 q& ~9 l
- // themeParams.isCssVarsBound() -> true
复制代码 Functions :5 }4 g3 s5 [& d# b: Y
- import {
8 c' ^" Y0 K: _) T2 e% T/ p - bindThemeParamsCssVars,6 T! L: c/ ~- S) U; ` O' _0 m
- isThemeParamsCssVarsBound,
) y+ F5 l( E# [ Y: X& m, ] - } from '@telegram-apps/sdk';& k' {6 X5 h, W# Q. D5 r( P
- # x7 P. d2 p1 {+ T; X$ ~
- bindThemeParamsCssVars();
( V: ]6 g/ H5 z- k6 c, q8 Q - // Creates CSS variables like:+ g5 K) c. M/ y6 X8 P* ~
- // --tg-theme-button-color: #aabbcc
* H1 F2 K) D0 c! i - // --tg-theme-accent-text-color: #aabbcc
/ Y2 t% a* m, @8 _1 g! n- K - // --tg-theme-bg-color: #aabbcc) K% B% t5 M; w. g% \
- // ...& _# ~; ^6 D4 ^$ @+ }
, k. X# @5 w2 g7 E# m* Y* Y+ e! H- bindThemeParamsCssVars(key => `--my-prefix-${key}`);, e: e/ `5 j* ?/ d6 U- P' Q
- // Creates CSS variables like:
! i4 S9 T, i X+ I/ W8 [ - // --my-prefix-buttonColor: #aabbcc
4 z" e5 f' `. J7 V( ~/ F5 C - // --my-prefix-accentTextColor: #aabbcc; [' r* L9 z' g2 A
- // --my-prefix-bgColor: #aabbcc
8 X/ [$ m( P1 L# L - // ...
) H8 g' J' m7 h - 1 g) p/ ]3 l0 a6 j8 X" f
- // isThemeParamsCssVarsBound() -> true
复制代码 属性
$ r0 g+ c* z/ b2 g7 BVariable :
/ Q O/ @' N" F5 J- themeParams.accentTextColor(); // RGB | undefined
+ E% x6 o$ @: k/ ~; }" S - themeParams.backgroundColor(); // RGB | undefined$ k7 N. q9 j9 @% h5 D6 Y
- themeParams.buttonTextColor(); // RGB | undefined
# H4 A' @$ }. d z- c# g% i - themeParams.buttonColor(); // RGB | undefined
8 }& v* h+ d s# [ - themeParams.destructiveTextColor(); // RGB | undefined
2 G3 t* @/ g/ G- A0 d - themeParams.headerBackgroundColor(); // RGB | undefined; r' J: ~" m k& U. Q9 P9 J
- themeParams.hintColor(); // RGB | undefined! W+ w- c0 j6 o h5 e2 F
- themeParams.linkColor(); // RGB | undefined! ~; K% |7 ]( Q( ]9 E7 N8 ~
- themeParams.subtitleTextColor(); // RGB | undefined
1 v; i, y$ @8 C% p - themeParams.sectionBackgroundColor(); // RGB | undefined7 P& R+ O! o2 ^6 x
- themeParams.secondaryBackgroundColor(); // RGB | undefined/ _0 a2 V& S8 i0 v% Q: g
- themeParams.sectionSeparatorColor(); // RGB | undefined
1 ~9 _+ ~4 N" N7 c2 u - themeParams.sectionHeaderTextColor(); // RGB | undefined7 `9 y; z9 G# q0 z0 \- e0 c! h. m
- themeParams.textColor(); // RGB | undefined- U- C" K; X: c
- ' r8 R" Z! B7 Y: h& M
- themeParams.state(); // Record<string, RGB>;
复制代码 Functions :$ u5 j4 r% ^! n9 K4 [1 y
- import {
9 G' l$ E+ {4 k; t. C - themeParamsAccentTextColor,7 {1 Y2 c: S! f" l! `* r! p
- themeParamsBackgroundColor,: j& v# v' {. b; S
- themeParamsButtonTextColor,
4 {7 T- w* K# v5 p% G3 j0 j o - themeParamsButtonColor,
6 H, s1 k+ e# P: x - themeParamsDestructiveTextColor,
3 X. T* G e- D, s# g( {' ^6 D - themeParamsHeaderBackgroundColor,+ v. m- O( g9 O5 M0 K; E
- themeParamsHintColor,
4 V- E6 \3 k9 {( N* m( K - themeParamsLinkColor,
) {, _* p5 k: \% h% B7 h" O - themeParamsSubtitleTextColor,
0 v9 `9 g1 J0 Q5 ^ - themeParamsSectionBackgroundColor,, l7 _: @) Z S! E `
- themeParamsSecondaryBackgroundColor,
: J- C6 r% A! @! q% t - themeParamsSectionSeparatorColor,$ v4 h5 z- [% ?. t$ f; T& B
- themeParamsSectionHeaderTextColor, R: j% d( z. U9 q2 m2 e+ X' P1 O' H
- themeParamsTextColor,1 o$ u8 m( ]* N( Q. ]/ I
- themeParamsState,
/ Q# I' J' C. x% ^ - } from '@telegram-apps/sdk';
' N9 j/ P4 Z# }8 |, n! Y5 |
6 H# F# a; g* r- themeParamsAccentTextColor(); // RGB | undefined
8 e$ `2 ?' S. g; _0 `: y1 x - themeParamsBackgroundColor(); // RGB | undefined7 p# d6 N: u y- Q" c5 T s- f
- themeParamsButtonTextColor(); // RGB | undefined4 _. v( Q% s* n" Z- K2 B0 ]. g T
- themeParamsButtonColor(); // RGB | undefined
3 x$ G! X4 \ R2 ] - themeParamsDestructiveTextColor(); // RGB | undefined6 ?6 S2 [7 X: T8 q
- themeParamsHeaderBackgroundColor(); // RGB | undefined# S' N8 J3 l- G) w- u* F' y# b
- themeParamsHintColor(); // RGB | undefined' Q# z9 l4 f! ~5 j, e
- themeParamsLinkColor(); // RGB | undefined3 m$ b. s* l6 i2 Y8 v, V
- themeParamsSubtitleTextColor(); // RGB | undefined# s- w- u, k2 S" s+ ]
- themeParamsSectionBackgroundColor(); // RGB | undefined
3 g5 S- y3 N" X- D - themeParamsSecondaryBackgroundColor(); // RGB | undefined
1 t1 m( O( m$ D" d; Z' a - themeParamsSectionSeparatorColor(); // RGB | undefined
! G- O5 Z" B( z - themeParamsSectionHeaderTextColor(); // RGB | undefined1 M0 }- P& \, d8 ^% ~5 \2 e R! D
- themeParamsTextColor(); // RGB | undefined
?# v0 F9 f& {3 X v - / J4 G3 h- ^, ~: p; c
- themeParamsState(); // Record<string, RGB>;
复制代码
) Q q) ]1 Y7 z/ y
" i; }) u" D9 C1 Z9 W% l2 s0 R/ v$ ?: ?. {7 t5 _7 K) J
|