fbc0260720
Compile `ui/core` to WebAssembly via TinyGo (903 KB) and expose four canonical-bytes / signature-verification functions on `globalThis.galaxyCore` from `ui/wasm/main.go`. The TypeScript-side `Core` interface plus a `WasmCore` adapter (browser + JSDOM loader) bridge those into a typed shape, and a `GalaxyClient` skeleton wires `Core.signRequest` → injected `Signer` → typed Connect client → `Core.verifyPayloadHash` / `verifyResponse`. Wire `ui/buf.gen.yaml` against the local `@bufbuild/protoc-gen-es` v2 binary (devDependency) so the codegen step does not depend on the buf.build BSR. Vitest covers the bridge end-to-end: per-method WasmCore tests under JSDOM, byte-for-byte canon parity against the gateway fixtures committed in Phase 3, and a `GalaxyClient` orchestration test using `createRouterTransport`. The committed `core.wasm` snapshot tracks TinyGo output so contributors run `make wasm` only when `ui/core/` changes; CI consumes the snapshot directly. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
36 lines
1.8 KiB
Makefile
36 lines
1.8 KiB
Makefile
.PHONY: help web wasm ts-protos gomobile desktop-mac desktop-win desktop-linux ios android all
|
|
|
|
.DEFAULT_GOAL := help
|
|
|
|
WASM_OUT := frontend/static/core.wasm
|
|
WASM_EXEC := frontend/static/wasm_exec.js
|
|
TINYGO_ROOT := $(shell tinygo env TINYGOROOT 2>/dev/null)
|
|
|
|
help:
|
|
@echo "ui targets:"
|
|
@echo " wasm TinyGo build of ui/core to core.wasm + wasm_exec.js shim (Phase 5)"
|
|
@echo " ts-protos Connect-ES + Protobuf-ES generation from gateway/proto (Phase 5)"
|
|
@echo " web Vite production build (Phase 5+)"
|
|
@echo " gomobile gomobile bind for iOS .framework + Android .aar (Phase 32+)"
|
|
@echo " desktop-mac Wails build for darwin/{arm64,amd64} (Phase 31)"
|
|
@echo " desktop-win Wails build for windows/amd64 (Phase 31)"
|
|
@echo " desktop-linux Wails build for linux/amd64 (Phase 31)"
|
|
@echo " ios Capacitor sync + xcodebuild + archive (Phase 32+)"
|
|
@echo " android Capacitor sync + gradle assembleRelease (Phase 32+)"
|
|
@echo " all every target above"
|
|
|
|
wasm:
|
|
@command -v tinygo >/dev/null || { echo "tinygo not found; install via 'brew install tinygo' (see ui/docs/wasm-toolchain.md)"; exit 1; }
|
|
tinygo build -o $(WASM_OUT) -target=wasm ./wasm
|
|
cp $(TINYGO_ROOT)/targets/wasm_exec.js $(WASM_EXEC)
|
|
@printf "core.wasm: %s\n" "$$(ls -lh $(WASM_OUT) | awk '{print $$5}')"
|
|
|
|
ts-protos:
|
|
@command -v buf >/dev/null || { echo "buf not found; install via 'brew install bufbuild/buf/buf' or see https://buf.build/docs/installation"; exit 1; }
|
|
@test -x frontend/node_modules/.bin/protoc-gen-es || { echo "protoc-gen-es not installed; run 'pnpm install' inside ui/frontend"; exit 1; }
|
|
buf generate ../gateway --template buf.gen.yaml --include-imports
|
|
|
|
web gomobile desktop-mac desktop-win desktop-linux ios android all:
|
|
@echo "TODO: implement '$@' (placeholder, see ui/PLAN.md)"
|
|
@exit 1
|