intellij-quarkus icon indicating copy to clipboard operation
intellij-quarkus copied to clipboard

Qute navigation

Open FroMage opened this issue 3 months ago • 4 comments

When in a Qute template, if it is a template for which we know the URI it maps to, I would like a button from the template that starts my browser for that page. This would be especially useful when debugging a template, because I could start the browser in the correct page directly from the template, thus triggering the breakpoint easily.

This is possible for:

  • Qute Web by convention
  • Renarde indirectly: you already know where is the corresponding @CheckedTemplate method that produces the template, so you need to find the (GET: not @POST or others because the browser will just not send that http method) endpoint method that invokes that checked template method. Since you already have the URI mapping for those methods, you can use that for the browser.
  • Roq probably, also by convention

FroMage avatar Sep 24 '25 13:09 FroMage