mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
* Squash merge develop into master * feat: add automated production release workflow * feat: add Gitflow workflow for syncing branches * ci: update workflow runner to latest ubuntu version * feat: enable buf.build publishing on master and develop branches --------- Co-authored-by: Prad Nukala <prad@sonr.io>
51 lines
1.0 KiB
Go
51 lines
1.0 KiB
Go
//go:build js && wasm
|
|
|
|
package wasm
|
|
|
|
import (
|
|
"io"
|
|
"net/http/httptest"
|
|
"syscall/js"
|
|
)
|
|
|
|
// ResponseRecorder uses httptest.ResponseRecorder to build a JS Response
|
|
type ResponseRecorder struct {
|
|
*httptest.ResponseRecorder
|
|
}
|
|
|
|
// NewResponseRecorder returns a new ResponseRecorder
|
|
func NewResponseRecorder() ResponseRecorder {
|
|
return ResponseRecorder{httptest.NewRecorder()}
|
|
}
|
|
|
|
// JSResponse builds and returns the equivalent JS Response
|
|
func (rr ResponseRecorder) JSResponse() js.Value {
|
|
res := rr.Result()
|
|
|
|
body := js.Undefined()
|
|
if res.ContentLength != 0 {
|
|
b, err := io.ReadAll(res.Body)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
body = js.Global().Get("Uint8Array").New(len(b))
|
|
js.CopyBytesToJS(body, b)
|
|
}
|
|
|
|
init := make(map[string]interface{}, 2)
|
|
|
|
if res.StatusCode != 0 {
|
|
init["status"] = res.StatusCode
|
|
}
|
|
|
|
if len(res.Header) != 0 {
|
|
headers := make(map[string]interface{}, len(res.Header))
|
|
for k := range res.Header {
|
|
headers[k] = res.Header.Get(k)
|
|
}
|
|
init["headers"] = headers
|
|
}
|
|
|
|
return js.Global().Get("Response").New(body, init)
|
|
}
|