hilla
hilla copied to clipboard
Build better business applications, faster. No more juggling REST endpoints or deciphering GraphQL queries. Hilla seamlessly connects Spring Boot and React to accelerate application development.
when there is client-side router in V15, it disables popstate handlers added by flow-client. There is a hack that restore scroll position on navigation see implementation in https://github.com/vaadin/flow/blob/master/flow-client/src/main/java/com/vaadin/client/ScrollPositionHandler.java#L217
JavaScriptBootstrapUI puts the view in a wrapper appended as a virtualChild. We might override the `getElement()` to return the wrapper, it apparently works, but breaks `$server` methods in client side....
If you e.g. forget to mark your endpoint method as `public`, then there will not be any generated .ts file for your `@Endpoint` class. This may lead you towards investigating...
To reproduce: 1. Extract the attached application. 2. Put a break point in the `AppShell`'s `configurePage` method 3. Debug the application 4. `settings.getLoadingIndicatorConfiguration();` returns `Optional.Empty` [example.zip](https://github.com/vaadin/flow/files/4295233/exmample.zip)
I'm trying V15 and I see now there is a `fronted/index.ts` file to provide where you instantiate a `Flow` object passing the path `../target/frontend/generated-flow-imports`. For the same reasons discussed in...
When generating the `tsconfig.json` avoid any comment because IDE can complain about it. Original report was in forum: https://vaadin.com/forum/thread/18187819/problem-vaadin-15-0-3-and-eclipse
In the actual version of V15, when in development mode, endpoints and related entities are generated only when the application starts up / during runtime. This behavior is un-intuitive and...
When defining Java types that are used from TypeScript, I want have a `@TypeScriptType` annotation that I can put on a Java property to define its type in the generated...
The [current documentation for the `@JsonProperty` annotation](https://vaadin.com/docs/v15/flow/typescript/custom-serialization.html#the-jsonproperty-annotation) is misleading: in reality it seem to have no effect on the TypeScript type generator (as of Vaadin 15.0.4). 1. After reading the...
### Description of the bug / feature I have a DTO as a response for an endpoint method. The only private field it has contains an object which data it...