Files
meshtastic_mqtt_server/meshmap_frontend
kevinandClaude 8e7d11a162 feat(llm): 处理完成的消息自动软删除并隐藏删除按钮
- MarkAsProcessed 在写入 reply/processed_at 的同时设置 deleted_at,
  避免 /admin/llm 队列页堆积已处理消息(仍可勾选"包含已删除"查看)
- 前端列表中已删除的消息行隐藏删除按钮,改为显示灰色"已删除"标签

Co-Authored-By: Claude <noreply@anthropic.com>
2026-06-19 17:50:56 +08:00
..
2026-06-03 18:31:15 +08:00
2026-06-03 18:31:15 +08:00
up
2026-06-04 09:57:43 +08:00
2026-06-14 19:26:43 +08:00
2026-06-06 02:10:56 +08:00
2026-06-03 19:59:49 +08:00
2026-06-03 18:31:15 +08:00
2026-06-03 18:31:15 +08:00
2026-06-03 18:31:15 +08:00
2026-06-06 02:10:56 +08:00

MeshMap Frontend

Vue 3 + TypeScript + Vite frontend for the Meshtastic MQTT server.

Features

  • Left panel: recent chat messages
  • Right panel: Leaflet/OpenStreetMap node map
  • Bottom panel: selected node details, recent messages, and recent positions

The app uses relative /api URLs. In development, Vite proxies /api to the Go backend.

Development

Start the Go backend:

go run . --web-host 127.0.0.1 --web-port 8080

Start the frontend dev server:

cd meshmap_frontend
npm install
npm run dev

Production build

cd meshmap_frontend
npm run build

The build output is written to the repository root dist/ directory, which is served by the Gin backend.

Map tiles

The map uses Leaflet with OpenStreetMap tiles:

https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png

Network access to the tile server is required unless this is changed to a local tile source later.