Pit Friedrich 85bb0c8c0b
CI / build-and-test (pull_request) Successful in 1m17s
fix: restore saved gridstack layout faithfully (#13)
The layout was saved to localStorage, but restoring it did not reliably
reproduce it:

- restore() applied the saved nodes one by one via grid.update(). A later
  item could collide with one already put back and push it off its saved
  spot, and nothing moved it back — so the restored layout was not the one
  the user left. Use grid.load(nodes, false) instead: it sorts the nodes,
  removes them from the engine before re-placing them, and runs in a single
  batch. addRemove is off because Flow owns which children exist.
- gridstack's save() omits w/h when they are 1. The manual restore passed
  them through as undefined, and the server read them as 0 and wrote a
  zero-sized widget back onto the item. load() re-applies gridstack's own
  defaults; onLayoutChange now reads a missing w/h as 1.
- A drag followed immediately by navigating to another route detached the
  element inside the 150ms persist debounce, dropping the pending save.
  disconnectedCallback now flushes it to localStorage first.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Ue9ZtWUBQF4SuSHpzZ3zwq
2026-07-26 20:00:16 +02:00
2026-07-25 20:37:28 +02:00
2026-07-19 21:15:23 +02:00
2026-07-04 06:04:51 +00:00
2026-07-25 20:37:28 +02:00
2026-07-12 18:10:26 +02:00
2026-07-19 21:15:23 +02:00
2026-07-25 21:56:47 +02:00
2026-07-11 22:31:08 +02:00
2026-07-04 06:04:51 +00:00
2026-07-26 19:14:58 +02:00
2026-07-04 06:04:51 +00:00
2026-07-25 21:56:47 +02:00
2026-07-25 21:56:47 +02:00
2026-07-04 06:04:51 +00:00
2026-07-04 06:04:51 +00:00
2026-07-05 17:06:59 +02:00
2026-07-05 17:06:59 +02:00

My Application

A Spring Boot + Vaadin project. Build your UI in pure Java — no HTML, no JavaScript.

New to Vaadin? The 5-minute Quickstart walks you from here to your first running app, a live code change, and an AI-assisted edit with Copilot.


Fastest start — no plugin needed

From the project folder:

./mvnw spring-boot:run        # Windows: mvnw.cmd spring-boot:run

Then open http://localhost:8080.

The first start takes ~30 seconds while Maven downloads dependencies.

Port 8080 already in use? Stop the other process, or set server.port=8081 in src/main/resources/application.properties and open that port instead.

To stop the app: press Ctrl+C in the terminal (or the red Stop button if you launched from your IDE).

Optional upgrade — instant hotswap

Running with spring-boot:run works, but Java code changes need a server restart. For live reload — edit Java, see it in the browser without restarting — install the Vaadin plugin and start the app through it:

  • IntelliJ IDEA: install Vaadin from the JetBrains Marketplace → Debug using Hotswap Agent (dropdown next to Run). Just installed it? Let IntelliJ finish indexing, or restart it, if the menu item isn't there yet.
  • VS Code: install the Vaadin extension → Vaadin: Debug using Hotswap Agent from the command palette.
  • Eclipse: install the Vaadin plugin → right-click the project → Run As → Vaadin Application.

This is what makes the edit-and-see-it loop feel instant — and it's required for the AI edits in Vaadin Copilot.


Ask your AI assistant about Vaadin (optional)

If you use Claude Code, Cursor, or another AI coding assistant, connect it to the Vaadin MCP server so it answers against real Vaadin docs and the exact API of your installed version — instead of guessing from outdated training data.

# One-time setup — see https://vaadin.com/docs/latest/building-apps/mcp

A .mcp.json is included (commented out by default). Uncomment it, or run the setup command above, to activate.


Build for production

./mvnw package
java -jar target/*.jar

Learn more

S
Description
No description provided
Readme 34 MiB
Languages
Java 84%
TypeScript 7.2%
CSS 6.3%
HTML 2.3%
Dockerfile 0.2%