-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Description
Is your feature request related to a problem? Please describe.
Currently, a message dialog usage looks like the code below where the callback per button are asynchronous.
app.Dialog.Question().
SetTitle("Migration Warning").
SetMessage(fmt.Sprintf("%d migrations are available. Do you want to run them now?", len(pending))).
SetDefaultButton(&application.Button{
Label: "Run",
IsCancel: false,
IsDefault: true,
Callback: func() {
doMigrations()
},
}).
SetCancelButton(&application.Button{
Label: "Cancel",
IsCancel: true,
IsDefault: false,
Callback: func() {
log.Println("Migration cancelled by user.")
},
}).
Show()
The challenge with this pattern is that, there is no way of returning error or result from each callback function synchronously so that the application can take critical decisions such as exiting the application if a critical request was rejected by the user.
Describe the solution you'd like
I am suggesting a new synchronous method like ShowSync which returns the error and result from either callback function assigned to the buttons.
If feasible, we could also introduce generics so that the result returned from the cancel or default buttons are type safe.
Describe alternatives you've considered
The current implementation in v3 is asynchronous. The v2 implementation was synchronous and similar to the above request. However, the callbacks will be called to return result or error instead simply returning the button labels as the result.
Additional context
No response