主题参数 本节 SDK 涵盖与 主题参数 相关的主题。 解析要解析作为主题参数的值,软件包提供了 parseThemeParams 方法。 该 方法接受一个 JSON 字符串对象或 JavaScript 对象,返回 ThemeParams 接口。 如果提供的数据无效,则会出错。 Usage Example : - import { parseThemeParams } from '@telegram-apps/sdk';2 c9 J1 A- T6 L7 N: j
- # g6 O, H9 s* L
- parseThemeParams({
: y6 B8 f& [# n% s7 i5 o' w8 y( P - accent_text_color: "#6ab2f2",
q$ k u1 e g! v! L/ _* B* y - bg_color: "#17212b",. V$ _+ m& q' s( `
- button_color: "#5288c1",. o( u6 T6 W) }& j: @
- button_text_color: "#ffffff",* J5 n# R9 D7 g& N
- destructive_text_color: "#ec3942"," C& Q" U1 M$ m C% p+ T% ~! n
- header_bg_color: "#17212b",: ~- B1 P. I- z3 U
- hint_color: "#708499",
9 [$ [0 s- X! @1 l( [ - link_color: "#6ab3f3",/ }8 w4 L1 y0 O9 ]) s
- secondary_bg_color: "#232e3c",
* [$ |) k- t, A$ J( s7 R( v - section_bg_color: "#17212b",
8 g, ~, f$ {; f: U% m - section_header_text_color: "#6ab3f3",9 @5 l. a7 f( ~* B" N- \# J
- subtitle_text_color: "#708499",3 a- G# ~: o6 X T
- text_color: "#f5f5f5"
$ s4 P1 _* i; [. q2 a - });
复制代码Expected Result : - const result = {
# J/ ~- q$ l* D8 B. O - accentTextColor: "#6ab2f2",
9 ?, w8 J# E" G! a9 t H. r0 z; x6 [5 H - bgColor: "#17212b",) T' d/ ~' i% F3 z
- buttonColor: "#5288c1",
2 O- n: h7 G( q! K8 c. d - buttonTextColor: "#ffffff",$ p+ {' N7 y( ]& S5 g1 E5 i$ x% R1 X" @
- destructiveTextColor: "#ec3942",
1 y4 `* s0 m: A& [ - headerBgColor: "#17212b",: v0 @ I* E( {
- hintColor: "#708499",3 r8 ~! @! }9 R% Z
- linkColor: "#6ab3f3",! d3 w- r+ S5 M( ~' \
- secondaryBgColor: "#232e3c",# {! l( e1 n% q V
- sectionBgColor: "#17212b",
b6 r! J0 C" P/ C1 J# M - sectionHeaderTextColor: "#6ab3f3",
' o$ c5 M1 u4 _0 E/ l2 r+ V3 i - subtitleTextColor: "#708499",
; r4 ]; \. H# i8 \1 s' [ - textColor: "#f5f5f5"0 O' ?; _) M$ P2 H2 S, I
- };
复制代码假设每个属性都使用蛇形大小写,它会将其转换为驼峰形大小写。 ; o7 F/ e# x9 V* A8 f8 }* X
序列化要将主题参数对象表示转换为字符串,开发人员应使用 的 serializeThemeParams 函数: - import { serializeThemeParams } from '@telegram-apps/sdk';; B0 P; i1 q+ N; E
$ @1 c0 c' U" V8 a! a. T- serializeThemeParams({
2 f2 {; [! l% `; A0 m - accentTextColor: "#6ab2f2",. a9 M: N6 q8 G3 V
- bgColor: "#17212b",; N" h* |' q8 e4 j: a, l4 |
- buttonColor: "#5288c1",
, G6 ]2 `4 c' s w) J, E - buttonTextColor: "#ffffff",0 F; M- Y* ?/ i
- destructiveTextColor: "#ec3942", U. c) z' a. y/ Q2 A5 F2 M
- headerBgColor: "#17212b",' ]1 `8 K$ B4 e, h: h/ ]# F" F. ]
- hintColor: "#708499",
& @( C; m/ }# R, H( B - linkColor: "#6ab3f3",
7 P& ^4 f* B# a - secondaryBgColor: "#232e3c", T3 v ]6 |* y. F+ d7 n3 x
- sectionBgColor: "#17212b",
, l z, `8 N3 `7 I - sectionHeaderTextColor: "#6ab3f3",
' {, @4 Q# d2 z% H- T% { - subtitleTextColor: "#708499",* w# T9 ?+ d r7 O [6 a
- textColor: "#f5f5f5"; T: c2 i6 [5 o8 c% B K- x
- });
, ^8 f: q9 W. y3 |0 J( C3 `1 | - $ K. U& Y- H; m
- // Result: z6 i4 Z5 M4 _! h" ~5 c: Y
- // `{
, ^2 r* z, Y, {* ^3 K$ D - // "accent_text_color":"#6ab2f2",4 {8 j1 s5 W' d# x. l
- // "bg_color":"#17212b",
/ v/ p0 x! T/ L l - // "button_color":"#5288c1",
) m+ p- E) g+ l! k" M" T& C - // "button_text_color":"#ffffff",8 p6 h$ }) t' f
- // "destructive_text_color":"#ec3942",9 F( c( i! N$ d4 U
- // "header_bg_color":"#17212b",
5 _; _ c3 Z9 r/ `- n4 c$ J - // "hint_color":"#708499",% A- i/ T- R7 C$ s7 ^, J
- // "link_color":"#6ab3f3",' A ?; h) S9 S! i% {
- // "secondary_bg_color":"#232e3c",3 R& n d- W0 J2 X9 ^
- // "section_bg_color":"#17212b",9 X* q2 P5 p, |, Q
- // "section_header_text_color":"#6ab3f3",
& V+ Y4 e7 y9 b. I) V Y+ @ - // "subtitle_text_color":"#708499",& ~2 Y. w- I9 Q- W# V$ d4 F( [
- // "text_color":"#f5f5f5"
0 F( u* x" r$ o( _, y6 l- V - // }`
复制代码
# {% \! ~# b: s+ ]
, d9 e) X- o0 R4 |- n
3 K5 W- ~: T) Y5 c! R9 S( e |