mirror of
https://github.com/InsanusMokrassar/TelegramBotAPI.git
synced 2024-11-22 08:13:47 +00:00
sendDataOrWorkWithQueryId
This commit is contained in:
parent
aa6e5b2284
commit
f36d642ec8
@ -4,6 +4,7 @@
|
|||||||
|
|
||||||
* `WebApps`:
|
* `WebApps`:
|
||||||
* `WebAppInitData#queryId` now have correct js name of field
|
* `WebAppInitData#queryId` now have correct js name of field
|
||||||
|
* New function `sendDataOrWorkWithQueryId`
|
||||||
|
|
||||||
## 0.38.20
|
## 0.38.20
|
||||||
|
|
||||||
|
@ -8,11 +8,26 @@ import dev.inmo.tgbotapi.types.WebAppQueryId
|
|||||||
* that callback. Before and after calling of this callback will not be used any method of answering to the telegram
|
* that callback. Before and after calling of this callback will not be used any method of answering to the telegram
|
||||||
* system, so, you must use something like [answerWebAppQuery] by yourself to send the result
|
* system, so, you must use something like [answerWebAppQuery] by yourself to send the result
|
||||||
*/
|
*/
|
||||||
inline fun handleResult(
|
inline fun sendDataOrWorkWithQueryId(
|
||||||
onSendData: () -> String?,
|
onSendData: () -> String?,
|
||||||
onAnswerWebAppQuery: (WebAppQueryId) -> Unit
|
onAnswerWebAppQuery: (WebAppQueryId) -> Unit
|
||||||
) {
|
) {
|
||||||
webApp.initDataUnsafe.queryId ?.let {
|
val queryId = webApp.initDataUnsafe.queryId
|
||||||
onAnswerWebAppQuery(it)
|
|
||||||
} ?: webApp.sendData(onSendData() ?: return)
|
if (queryId == null) {
|
||||||
|
webApp.sendData(onSendData() ?: return)
|
||||||
|
} else {
|
||||||
|
onAnswerWebAppQuery(queryId)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param onSendData Should return the data which must be used in [WebApp.sendData]. If returns null, data will not be sent
|
||||||
|
* @param onAnswerWebAppQuery In case if [WebAppInitData.queryId] is presented in [WebApp.initDataUnsafe], will be called
|
||||||
|
* that callback. Before and after calling of this callback will not be used any method of answering to the telegram
|
||||||
|
* system, so, you must use something like [answerWebAppQuery] by yourself to send the result
|
||||||
|
*/
|
||||||
|
inline fun handleResult(
|
||||||
|
onSendData: () -> String?,
|
||||||
|
onAnswerWebAppQuery: (WebAppQueryId) -> Unit
|
||||||
|
) = sendDataOrWorkWithQueryId(onSendData, onAnswerWebAppQuery)
|
||||||
|
Loading…
Reference in New Issue
Block a user