主题参数 本节 SDK 涵盖与 主题参数 相关的主题。 解析要解析作为主题参数的值,软件包提供了 parseThemeParams 方法。 该 方法接受一个 JSON 字符串对象或 JavaScript 对象,返回 ThemeParams 接口。 如果提供的数据无效,则会出错。 Usage Example : - import { parseThemeParams } from '@telegram-apps/sdk';* m6 F4 ~3 [+ F+ v& C4 u5 R4 J
/ e: b6 P; O6 \- parseThemeParams({0 ^ C) Y/ D: l3 l( L3 d- ]7 n5 g! n
- accent_text_color: "#6ab2f2",
9 l" ~( W% y( o7 Z - bg_color: "#17212b",/ w0 x! a/ D1 o
- button_color: "#5288c1",
# u! |& e$ ~0 |/ Q) ~ - button_text_color: "#ffffff",0 C- F& m8 ?% M" ^5 z
- destructive_text_color: "#ec3942",
) u- Z* i3 w L5 E9 ^3 q$ g - header_bg_color: "#17212b",' ^; R* L5 B: b3 L. K% t2 g% y. O
- hint_color: "#708499"," S* C# {+ S8 D0 O) N* s
- link_color: "#6ab3f3",
: U& G& J6 T! T - secondary_bg_color: "#232e3c",
- ?/ w# u% Q7 Y* q$ k m( y - section_bg_color: "#17212b",
2 h9 b' q$ B' `4 Z - section_header_text_color: "#6ab3f3",
/ k+ {$ ^ c2 \1 W$ K4 }9 y; z - subtitle_text_color: "#708499",
# C9 l6 U8 [! p3 o - text_color: "#f5f5f5"
( V) e/ n6 s3 r9 [ - });
复制代码Expected Result : - const result = {0 n: [8 j1 T1 I" I
- accentTextColor: "#6ab2f2",, N& L3 k7 H8 B" m6 `- K
- bgColor: "#17212b",
( Y) k1 c0 G1 j6 u. u - buttonColor: "#5288c1",
" [0 d# k: J. I* y, U# E2 g - buttonTextColor: "#ffffff",0 D- T4 ~" {6 W3 e% r* ]" f2 `
- destructiveTextColor: "#ec3942",
* v( s" h1 G0 E! r8 ]! H3 C, Q - headerBgColor: "#17212b",5 F) D/ `2 R( _
- hintColor: "#708499",/ X8 t. d' [7 x0 Y( `- w
- linkColor: "#6ab3f3",& y- C# y g: S* d$ R# E
- secondaryBgColor: "#232e3c",
$ z N0 t* h+ {: \, C - sectionBgColor: "#17212b",
9 q' i0 x* g6 s. A/ y - sectionHeaderTextColor: "#6ab3f3",3 @+ J k: L0 ?% F$ } V
- subtitleTextColor: "#708499",7 u5 g, f7 V- v, C
- textColor: "#f5f5f5"
) I# x6 C' Z: e; o) `7 U9 B5 H8 Y2 w - };
复制代码假设每个属性都使用蛇形大小写,它会将其转换为驼峰形大小写。 0 I# G, r( n/ Y) g" I
序列化要将主题参数对象表示转换为字符串,开发人员应使用 的 serializeThemeParams 函数: - import { serializeThemeParams } from '@telegram-apps/sdk';1 m3 ]9 a* A5 r9 Y
: f# N& M: |& O) A" c% L: |- serializeThemeParams({
9 H/ G0 a: Q n3 n z3 Q - accentTextColor: "#6ab2f2",6 `* z3 C6 `' i# y
- bgColor: "#17212b",
2 U0 e8 L( {3 Q5 u - buttonColor: "#5288c1",
7 P0 n% h/ Z O5 O. W7 _4 N+ W0 W - buttonTextColor: "#ffffff",; L; A1 S; a4 W
- destructiveTextColor: "#ec3942",
+ ?' R- f2 g3 }! s - headerBgColor: "#17212b",4 H& x* @1 a( Z/ _/ Y4 q8 y
- hintColor: "#708499",
7 W; f# L2 O4 w- d @ - linkColor: "#6ab3f3",
( x# d( D( a+ C! \9 _1 J$ w. V& L& ^ - secondaryBgColor: "#232e3c",
: F0 {% N$ R$ F) I0 S - sectionBgColor: "#17212b",
% V/ ?% v4 ?. h! t! _ - sectionHeaderTextColor: "#6ab3f3",
* N& Q) q6 j, r - subtitleTextColor: "#708499",, ?4 f# T, Y& Y
- textColor: "#f5f5f5"' F2 z' l0 X9 Y5 v- G$ P
- });
0 W- q; z7 Z9 T0 e Q8 c6 w
: f6 V, c# y4 h9 b5 M) C' J% H* T( c& m- // Result:
0 N9 `, ?) `2 \- y: n( `4 Y4 { - // `{& Z! g' \" N8 q( A; a7 i o
- // "accent_text_color":"#6ab2f2",
4 a6 ]) G6 v$ Z h$ d' T - // "bg_color":"#17212b",) ?, p% X6 }( Y% q
- // "button_color":"#5288c1",
) E4 d- w" Z m5 j# H3 p - // "button_text_color":"#ffffff",
; _* R7 u# `) r" g/ ~5 O - // "destructive_text_color":"#ec3942",
# |6 D7 N3 ? [& o9 ?: ?9 K - // "header_bg_color":"#17212b",
' P; d' _* h* A# M - // "hint_color":"#708499",' l7 G5 c* P$ r
- // "link_color":"#6ab3f3",' Y# S/ q1 [, y) @5 }
- // "secondary_bg_color":"#232e3c",
6 N& K4 o4 b+ Z* j7 x9 D! x- o1 N - // "section_bg_color":"#17212b",0 \! _0 l$ \ q, V9 \* v% d5 C
- // "section_header_text_color":"#6ab3f3",
# g7 e. r* n+ n- D' }* R- N - // "subtitle_text_color":"#708499",
# K# I8 X+ r0 u& e. q0 o0 ~ - // "text_color":"#f5f5f5". i* a: I$ G/ d; }& q
- // }`
复制代码
8 I) M/ Y+ V' Q; r0 j4 z
5 k6 s/ } H N# Z6 |$ C, a& H
0 s& v+ Z4 J) R$ H) {3 x8 Z/ F |