mirror of
https://github.com/wailsapp/wails.git
synced 2025-05-06 10:01:06 +08:00

* Add service registration method * Fix error handling and formatting in messageprocessor * Add configurable error handling * Improve error strings * Fix service shutdown on macOS * Add post shutdown hook * Better fatal errors * Add startup/shutdown sequence tests * Improve debug messages * Update JS runtime * Update docs * Update changelog * Fix log message in clipboard message processor Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Remove panic in RegisterService * Fix linux tests (hopefully) * Fix error formatting everywhere * Fix typo in windows webview * Tidy example mods * Set application name in tests * Fix ubuntu test workflow * Cleanup template test pipeline * Fix dev build detection on Go 1.24 * Update template go.mod/sum to Go 1.24 * Remove redundant caching in template tests * Final format string cleanup * Fix wails3 tool references * Fix legacy log calls * Remove formatJS and simplify format strings * Fix indirect import --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
51 lines
1.1 KiB
Go
51 lines
1.1 KiB
Go
package application
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
)
|
|
|
|
const (
|
|
ScreensGetAll = 0
|
|
ScreensGetPrimary = 1
|
|
ScreensGetCurrent = 2
|
|
)
|
|
|
|
var screensMethodNames = map[int]string{
|
|
ScreensGetAll: "GetAll",
|
|
ScreensGetPrimary: "GetPrimary",
|
|
ScreensGetCurrent: "GetCurrent",
|
|
}
|
|
|
|
func (m *MessageProcessor) processScreensMethod(method int, rw http.ResponseWriter, _ *http.Request, _ Window, _ QueryParams) {
|
|
switch method {
|
|
case ScreensGetAll:
|
|
screens, err := globalApplication.GetScreens()
|
|
if err != nil {
|
|
m.httpError(rw, "GetScreens failed:", err)
|
|
return
|
|
}
|
|
m.json(rw, screens)
|
|
case ScreensGetPrimary:
|
|
screen, err := globalApplication.GetPrimaryScreen()
|
|
if err != nil {
|
|
m.httpError(rw, "GetPrimary failed:", err)
|
|
return
|
|
}
|
|
m.json(rw, screen)
|
|
case ScreensGetCurrent:
|
|
screen, err := globalApplication.CurrentWindow().GetScreen()
|
|
if err != nil {
|
|
m.httpError(rw, "Window.GetScreen failed:", err)
|
|
return
|
|
}
|
|
m.json(rw, screen)
|
|
default:
|
|
m.httpError(rw, "Invalid screens call:", fmt.Errorf("unknown method: %d", method))
|
|
return
|
|
}
|
|
|
|
m.Info("Runtime call:", "method", "Screens."+screensMethodNames[method])
|
|
|
|
}
|