主题参数 💠组件 负责 Telegram Mini Apps 主题参数。 安装在使用该组件之前,必须对其进行安装,以确保属性配置正确。 ,使用 mount 方法更新 isMounted 信号属性。 Variable : - import { themeParams } from '@telegram-apps/sdk';6 ?$ c: L. q& H& r1 O! J
- & x) v$ J. Z) I1 X$ i& I% W7 [: i
- themeParams.mount(); " R) V, p% f7 {# e4 @6 G* ?
- themeParams.isMounted(); // true
复制代码Function : - import {6 s7 K+ A7 a/ [0 [2 p
- mountThemeParams,& h- p" h% i# {
- isThemeParamsMounted,
" L7 r. P" r, g8 T5 ^4 ^. V - } from '@telegram-apps/sdk';! A4 t* Q- ^( v. Z2 W' I
- U) m1 ]4 r' j* h- z t- mountThemeParams(); - {- C0 {' N* [
- isThemeParamsMounted(); // true
复制代码 & \0 g4 h& @& C/ J" C- K9 I: V
要卸载,请使用 unmount 方法: Variable : - themeParams.unmount(); , q+ _" E- b9 l
- themeParams.isMounted(); // false
复制代码Functions : - import {
$ c! J3 c) L" T - unmountThemeParams,- h a. {% _/ _& z- K
- isThemeParamsMounted,
' O& ]. ~; y% A( I, t6 q0 @ - } from '@telegram-apps/sdk';- J. N6 _" C" D' d
* b7 c e4 q ~0 c* `# |- unmountThemeParams();6 |0 _. U* q' {7 \/ i( y, M
- 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- themeParams.bindCssVars();
4 L J9 F! W$ J - // Creates CSS variables like:+ F5 }& h! k# @- Z! R: k" q$ q$ J
- // --tg-theme-button-color: #aabbcc
6 _6 T3 i6 d: z8 Z/ F - // --tg-theme-accent-text-color: #aabbcc
( i b7 \* @4 C- N - // --tg-theme-bg-color: #aabbcc
& p J2 \) \, \+ g' H - // ...
/ S: l2 J& u* w: j6 X4 {4 N
1 B/ b0 `+ ?) r/ s5 \ ?- themeParams.bindCssVars(key => `--my-prefix-${key}`);
& v/ F; m6 x3 [4 @+ n - // Creates CSS variables like:
( h& e) _3 C q8 b% M+ ^+ m3 H( C - // --my-prefix-buttonColor: #aabbcc
; f0 y* W: b; |2 j - // --my-prefix-accentTextColor: #aabbcc+ o/ b, Z2 }; a: f
- // --my-prefix-bgColor: #aabbcc; b* a# A& Z9 k
- // ...$ b6 T @* M* x
4 l w! H; }6 [( r% n7 h- // themeParams.isCssVarsBound() -> true
复制代码 Functions :7 I( \# @3 ` m4 K9 M7 @. U3 p& \
- import {
" E9 ~) P% n! u' t4 n - bindThemeParamsCssVars,5 v: i% Y6 P2 @
- isThemeParamsCssVarsBound,' K9 ]: m% J2 y( C9 T# O M
- } from '@telegram-apps/sdk';
& i9 T$ X. z4 e9 a! p% ?
/ t9 u1 L+ Z# S- bindThemeParamsCssVars();
$ B. S! n* x' K5 V* Q/ C( v& C2 p - // Creates CSS variables like:
/ p6 ], A! D9 z, B+ M. K - // --tg-theme-button-color: #aabbcc
0 H5 I6 Y9 s; O5 v - // --tg-theme-accent-text-color: #aabbcc J: d) H" G. H; T. m
- // --tg-theme-bg-color: #aabbcc& q# l* h) r+ l4 e
- // ...
+ p6 v1 U/ D4 n0 ]% q% x
$ U# r0 l) \+ [! D. U+ j: C- bindThemeParamsCssVars(key => `--my-prefix-${key}`);
% Q. S7 J1 j! d+ C$ L - // Creates CSS variables like:; K6 `% V& ]! L8 N( u! j8 B1 M
- // --my-prefix-buttonColor: #aabbcc
; ?+ u) t. Z; O2 o' I% Q1 K) H - // --my-prefix-accentTextColor: #aabbcc, d8 W0 U, R; a7 |9 ~) j5 m
- // --my-prefix-bgColor: #aabbcc8 z9 R" Z& G6 r5 _3 \4 y
- // ...
; H; O3 m3 ? @- y F2 k9 K - 2 ^3 P$ f6 z/ Y5 ^, b; _* W
- // isThemeParamsCssVarsBound() -> true
复制代码 属性2 K* C; B) _8 K
Variable :1 p0 `9 _( n7 K& q' T
- themeParams.accentTextColor(); // RGB | undefined. u# U* H% f& G5 \( Q4 \7 K0 y. s. @2 e
- themeParams.backgroundColor(); // RGB | undefined$ V& `- z+ \& \1 D
- themeParams.buttonTextColor(); // RGB | undefined
3 [, d! z1 G8 K9 C: f - themeParams.buttonColor(); // RGB | undefined* V6 G5 H W2 W8 B
- themeParams.destructiveTextColor(); // RGB | undefined
4 ~. }2 U( H. b6 c( A/ q - themeParams.headerBackgroundColor(); // RGB | undefined/ n. ~8 H; U, A9 C6 d$ D( u
- themeParams.hintColor(); // RGB | undefined
% p8 }9 K; ?( r - themeParams.linkColor(); // RGB | undefined
7 c( u/ Y3 ^. `# M/ G8 L - themeParams.subtitleTextColor(); // RGB | undefined* V8 p* {7 A2 D6 W
- themeParams.sectionBackgroundColor(); // RGB | undefined1 v& `. ^% Q5 y4 R. `% I
- themeParams.secondaryBackgroundColor(); // RGB | undefined
) {2 }6 Y5 L8 T1 V% r6 f - themeParams.sectionSeparatorColor(); // RGB | undefined$ i3 O3 P# Y! K7 n
- themeParams.sectionHeaderTextColor(); // RGB | undefined2 w P: z, ]" r+ x! C/ v$ N
- themeParams.textColor(); // RGB | undefined
. g1 z, J0 ~4 C: J: x. \ - 8 b$ q2 ]3 `0 ` E
- themeParams.state(); // Record<string, RGB>;
复制代码 Functions :- p( M! a8 `/ v3 F p& t4 d0 E
- import {
$ ^: x3 x |6 \5 U - themeParamsAccentTextColor,
! e: H* @# X' N, \9 B - themeParamsBackgroundColor,0 g* R2 v3 c0 _" u. [6 [
- themeParamsButtonTextColor,
' [ F- b2 [: [9 d - themeParamsButtonColor,1 {9 n+ n/ t$ k
- themeParamsDestructiveTextColor,
& D8 t8 `( s4 L! U( [) N4 M - themeParamsHeaderBackgroundColor,) ?5 D. y+ {4 m% n9 k0 C% r1 x* G
- themeParamsHintColor,* |% H4 t) Z7 B
- themeParamsLinkColor,
9 u* Q( b3 _; M( l - themeParamsSubtitleTextColor,
: z; `) {# }& l4 s - themeParamsSectionBackgroundColor,* v* y2 \3 S& u2 n4 z/ x4 h6 P
- themeParamsSecondaryBackgroundColor,
9 E9 P& s* y: W - themeParamsSectionSeparatorColor,
$ X* T3 r' F2 {2 F! \+ T8 R - themeParamsSectionHeaderTextColor,
C, U* |$ Y; b2 q+ n* j9 | - themeParamsTextColor,! A. d3 u. N, n
- themeParamsState,
4 Y/ f) \3 i! O- \ - } from '@telegram-apps/sdk';' }/ r7 @* ?) z$ F+ s
* }" j, z9 o6 l4 j# Z- themeParamsAccentTextColor(); // RGB | undefined6 T7 h7 B9 @0 ~) r" h
- themeParamsBackgroundColor(); // RGB | undefined
" E& t% y% w% Y' l - themeParamsButtonTextColor(); // RGB | undefined
D. }& C! l6 X, _1 L0 ~7 b - themeParamsButtonColor(); // RGB | undefined
6 M1 Z8 c( V7 i - themeParamsDestructiveTextColor(); // RGB | undefined
( P8 N! _0 s: {3 m" x - themeParamsHeaderBackgroundColor(); // RGB | undefined3 z8 k. |, ?, X5 I( B
- themeParamsHintColor(); // RGB | undefined
$ c8 t7 o9 ?3 ]& `2 o! X* h$ z& R - themeParamsLinkColor(); // RGB | undefined% N6 F j0 z5 b9 ?2 d; Q5 S. i
- themeParamsSubtitleTextColor(); // RGB | undefined
" b' U) _; V, F( S6 S - themeParamsSectionBackgroundColor(); // RGB | undefined
& }* F& e- { A - themeParamsSecondaryBackgroundColor(); // RGB | undefined" P9 R5 k) W- x9 r
- themeParamsSectionSeparatorColor(); // RGB | undefined3 z0 {3 K7 [& ~: a
- themeParamsSectionHeaderTextColor(); // RGB | undefined8 i* T9 u! Q2 H4 l/ \0 k
- themeParamsTextColor(); // RGB | undefined
1 E' P6 d& ?* c: r7 \3 z+ ^8 O - ( f2 V: V& v: O5 b
- themeParamsState(); // Record<string, RGB>;
复制代码 7 m7 Z6 A, g! U4 h
( [& y% [% _- D3 R* H
% `) i# k1 w0 x5 H
|