Skip to content

Commit a3c4f4d

Browse files
author
Prad N
committed
refactor: move config and models to pkg directory
1 parent f3587a4 commit a3c4f4d

File tree

12 files changed

+24
-132
lines changed

12 files changed

+24
-132
lines changed

β€Žapp/app.go

+3-4
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,15 @@ package app
55
import (
66
"github.com/labstack/echo/v4"
77
echomiddleware "github.com/labstack/echo/v4/middleware"
8+
"github.com/onsonr/motr/app/context"
89
"github.com/onsonr/motr/app/routes"
9-
"github.com/onsonr/motr/internal/context"
10-
"github.com/onsonr/motr/internal/models"
11-
"github.com/onsonr/motr/pkg/types"
10+
"github.com/onsonr/motr/pkg/models"
1211
)
1312

1413
type Vault = *echo.Echo
1514

1615
// New returns a new Vault instance
17-
func New(config *types.Config, dbq *models.Queries) (Vault, error) {
16+
func New(config *context.Config, dbq *models.Queries) (Vault, error) {
1817
e := echo.New()
1918
// Override default behaviors
2019
e.IPExtractor = echo.ExtractIPDirect()

β€Žpkg/types/config.go β€Žapp/context/config.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package types
1+
package context
22

33
type Config struct {
44
// TODO

β€Žembed/main.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -76,10 +76,10 @@ async function init() {
7676
return true;
7777
};
7878

79-
// Handle HTMX after request
80-
htmx.config.afterRequest = function (config) {
81-
// Additional processing after request if needed
82-
};
79+
// TODO: Handle HTMX after request
80+
// htmx.config.afterRequest = function (config) {
81+
// // Additional processing after request if needed
82+
// };
8383

8484
// Handle HTMX errors
8585
htmx.config.errorHandler = function (error) {
@@ -91,7 +91,7 @@ async function init() {
9191
}
9292

9393
function handleWasmResponse(data) {
94-
const { requestId, response } = data;
94+
const { requestId } = data;
9595
// Process the WASM response
9696
// This might update the UI or trigger HTMX swaps
9797
const targetElement = document.querySelector(

β€Žembed/sw.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function setupWasmCommunication() {
3636

3737
switch (type) {
3838
case "WASM_REQUEST":
39-
handleWasmRequest(data);
39+
handleWasmResponse(data);
4040
break;
4141
case "SYNC_REQUEST":
4242
processSyncQueue();

β€Žinternal/context/wasm.go

-34
This file was deleted.

β€Žmain.go

+13-13
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
_ "github.com/ncruces/go-sqlite3/driver"
2020
_ "github.com/ncruces/go-sqlite3/embed"
2121
vault "github.com/onsonr/motr/app"
22-
"github.com/onsonr/motr/internal/models"
22+
"github.com/onsonr/motr/pkg/models"
2323
sink "github.com/onsonr/motr/sink"
2424
)
2525

@@ -94,7 +94,7 @@ func serveFetch(handler http.Handler) func() {
9494
}
9595

9696
// Create request handler function
97-
cb := js.FuncOf(func(_ js.Value, args []js.Value) interface{} {
97+
cb := js.FuncOf(func(_ js.Value, args []js.Value) any {
9898
promise, resolve, reject := newPromiseOptimized()
9999

100100
go handleRequest(h, args[1], resolve, reject)
@@ -107,7 +107,7 @@ func serveFetch(handler http.Handler) func() {
107107
}
108108

109109
// handleRequest processes the request with panic recovery
110-
func handleRequest(h http.Handler, jsReq js.Value, resolve, reject func(interface{})) {
110+
func handleRequest(h http.Handler, jsReq js.Value, resolve, reject func(any)) {
111111
defer func() {
112112
if r := recover(); r != nil {
113113
var errMsg string
@@ -196,13 +196,13 @@ func (rr *ResponseRecorder) jsResponse() js.Value {
196196
}
197197

198198
// Prepare response init object
199-
init := make(map[string]interface{}, 3)
199+
init := make(map[string]any, 3)
200200
if res.StatusCode != 0 {
201201
init["status"] = res.StatusCode
202202
}
203203

204204
if len(res.Header) > 0 {
205-
headers := make(map[string]interface{}, len(res.Header))
205+
headers := make(map[string]any, len(res.Header))
206206
for k, v := range res.Header {
207207
if len(v) > 0 {
208208
headers[k] = v[0]
@@ -215,13 +215,13 @@ func (rr *ResponseRecorder) jsResponse() js.Value {
215215
}
216216

217217
// newPromiseOptimized creates a new JavaScript Promise with optimized callback handling
218-
func newPromiseOptimized() (js.Value, func(interface{}), func(interface{})) {
218+
func newPromiseOptimized() (js.Value, func(any), func(any)) {
219219
var (
220-
resolve func(interface{})
221-
reject func(interface{})
222-
promiseFunc = js.FuncOf(func(_ js.Value, args []js.Value) interface{} {
223-
resolve = func(v interface{}) { args[0].Invoke(v) }
224-
reject = func(v interface{}) { args[1].Invoke(v) }
220+
resolve func(any)
221+
reject func(any)
222+
promiseFunc = js.FuncOf(func(_ js.Value, args []js.Value) any {
223+
resolve = func(v any) { args[0].Invoke(v) }
224+
reject = func(v any) { args[1].Invoke(v) }
225225
return js.Undefined()
226226
})
227227
)
@@ -238,14 +238,14 @@ func awaitPromiseOptimized(promise js.Value) (js.Value, error) {
238238
err error
239239
)
240240

241-
thenFunc := js.FuncOf(func(_ js.Value, args []js.Value) interface{} {
241+
thenFunc := js.FuncOf(func(_ js.Value, args []js.Value) any {
242242
result = args[0]
243243
close(done)
244244
return nil
245245
})
246246
defer thenFunc.Release()
247247

248-
catchFunc := js.FuncOf(func(_ js.Value, args []js.Value) interface{} {
248+
catchFunc := js.FuncOf(func(_ js.Value, args []js.Value) any {
249249
err = js.Error{Value: args[0]}
250250
close(done)
251251
return nil
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

β€Žpkg/types/manifest.go

-73
This file was deleted.

β€Žsqlc.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ sql:
88
emit_interface: true
99
emit_json_tags: true
1010
package: "models"
11-
out: "./internal/models"
11+
out: "./pkg/models"

0 commit comments

Comments
Β (0)