349 Commits

Author SHA1 Message Date
Akulij
940a832561 mainbot.js: use function in handler instead of string function name 2025-05-21 12:33:03 +05:00
Akulij
a15cdeadf9 mainbot.js: create example function enter_name 2025-05-21 12:32:45 +05:00
Akulij
f5a894fe37 mainbot.js: change comment style for handler example 2025-05-21 12:31:43 +05:00
Akulij
a4e8ea0390 mainbot.js: use function in buttons field instead of function name 2025-05-21 12:29:47 +05:00
Akulij
6fa398401d restore functions in deserialize_js 2025-05-21 12:28:24 +05:00
Akulij
6ea26c0618 change injectable template in DeserializeJS to correct one 2025-05-21 12:27:27 +05:00
Akulij
b76392d597 impl Parcelable for all RunnerConfig types 2025-05-21 12:26:09 +05:00
Akulij
ad58587160 fix test: use BotFunction's method by_name 2025-05-21 12:24:16 +05:00
Akulij
1aed17fa30 specify ResolveValue in recursive resolve call 2025-05-21 12:23:32 +05:00
Akulij
684895a554 change BotFunction implementation to be compatible with js function
injection
2025-05-21 12:19:39 +05:00
Akulij
d5f39e4e60 create Parcelable trait with default implementations 2025-05-21 12:16:34 +05:00
Akulij
2a4ed51824 limit CD workflow to triger only on main branch push 2025-05-20 08:52:53 +05:00
Akulij
d1b25b52c1 fix: use KeyboardDefinition in BotMessage 2025-05-20 08:49:52 +05:00
Akulij
2c5802eaeb delete unnecessary literal field in ButtonRaw 2025-05-20 08:49:23 +05:00
Akulij
bd800e88eb create predefined buttons layout example in mainbot.js 2025-05-20 08:48:34 +05:00
Akulij
a2e1354bee fix missing #[serde(untagged)] on keyboard layout structs 2025-05-20 08:47:23 +05:00
Akulij
55d53bd140 create keyboard struct definition with resolvement trait 2025-05-20 08:32:28 +05:00
Akulij
ea007127ff test for DeserializerJS::deserialize_js 2025-05-20 08:32:09 +05:00
Akulij
0a60b0469f create DeserializerJS::inject_templates 2025-05-20 08:29:40 +05:00
Akulij
40eec7d38d fix js_into: self is already a reference 2025-05-20 04:36:19 +05:00
Akulij
2ccfc19a6c create filter to handle botscript-defined commands 2025-05-20 02:47:00 +05:00
Akulij
e0c00d68f9 derive Clone on BotCommand
reason: everything passed in teloxide's filter_map asks Clone (or Copy) implementation
2025-05-20 01:16:52 +05:00
Akulij
0e10cdbdf0 create command module
defines BotCommand struct
2025-05-20 01:07:11 +05:00
Akulij
29cd73e98f create basic handler to answer BotMessage 2025-05-20 00:44:08 +05:00
Akulij
3d9a1c31b4 use RunnerConfig in BotController 2025-05-20 00:42:32 +05:00
Akulij
5c8cadf7a0 create test for deserealization of result of js function 2025-05-20 00:40:25 +05:00
Akulij
534a0e6090 create init_config method for Runner 2025-05-20 00:39:39 +05:00
Akulij
135139514b update btoscript struct definitions 2025-05-20 00:39:15 +05:00
Akulij
f6b18af5dd derive clone on BoMessage 2025-05-20 00:38:29 +05:00
Akulij
22ab941ed8 create buttons definition example in mainbot.js 2025-05-20 00:33:51 +05:00
Akulij
cddf5986ba use from_js 2025-05-19 23:58:53 +05:00
Akulij
3f8f25fff9 create SerdeError for ScriptError
reason: to handle errors from call of from_js
2025-05-19 23:57:22 +05:00
Akulij
eb63743714 create js_into for JsValue
reason: wil be way less boilerplate for deserialization of JsValue to defined structs
2025-05-19 23:55:44 +05:00
Akulij
c2e02efc47 create call_context method for BotFunction 2025-05-19 23:54:39 +05:00
Akulij
c8c67b54e3 make botFunction a struct 2025-05-19 23:54:08 +05:00
Akulij
7dbad400cc mainbot.js: fix missing comma 2025-05-18 22:19:27 +03:00
Akulij
3d6bf15806 add somecomplicatedcmd as an example in mainbot.js 2025-05-18 22:19:09 +03:00
Akulij
6299f6d815 add comment about default value of buttons in mainbot.js 2025-05-18 22:18:37 +03:00
Akulij
8e9d5b4f1d add stateful_msg_handlers example to mainbot.js 2025-05-18 16:30:46 +03:00
Akulij
05b298e61c add more command example to mainbot.js 2025-05-18 16:30:25 +03:00
Akulij
48cbd4c7d0 fix missing commas in mainbot.js 2025-05-18 16:15:29 +03:00
Akulij
a643a707ed new specification of bot commands definition 2025-05-18 16:13:17 +03:00
Akulij
e7d43adc40 create structs for bot's configuration definition 2025-05-18 16:10:03 +03:00
Akulij
a6206d3d6f use quickjs_rusty's from_js in tests 2025-05-18 16:09:34 +03:00
Akulij
96996fd33d update mainbot.js with new specification 2025-05-18 16:08:34 +03:00
Akulij
bf032e6ce4 create test for deserealization of mainbot.js 2025-05-18 16:07:40 +03:00
Akulij
9d5bf86289 create recursive_format function just for tests 2025-05-18 16:05:10 +03:00
Akulij
0c927448d2 create mainbot.js where main bot's logic will be contained 2025-05-10 03:28:00 +03:00
Akulij
08c1b67f02 create botscript runner 2025-05-10 03:27:35 +03:00
Akulij
d39d2c8144 cargo add quickjs-rusty 2025-05-10 03:25:53 +03:00