A similar helper library as "old Viritin" was for Vaadin 8 and earlier. See the Directory page for more details. Tries to add missing features, fix some issues in the core components and to work as an agile arena to test new potential features for Vaadin.
Version matrix:
- 2.x series for Vaadin 24 (Maven central)
- 1.7.1+ for Vaadin 23.3+ (distribution via Maven central, directory repository is not necessary needed, "coordinates": in.virit:viritin)
- 0.9.0 for Vaadin 22+ (distribution via Maven central, directory repository is not necessary needed, "coordinates": in.virit:viritin)
- 0.4.0 for Vaadin 14
- The old add-on for Vaadin 8 and 7
"V" prefixed components provide most core APIs are available with a version that returns the component itself. These methods typically start with "with" instead of "set". This allows configuration of objects e.g. in field declaration or without declaring an extra variable. When used in appropriate places, this can produce more concise and readable code.
- UploadFileHandler aka Upload component with a proper Java API.
- Simply passes the input stream for you to handle, no weird Vaadin specific APIs
- Read/handle the contents while it is being uploaded, also works with Spring Boot
- Throttles amount of concurrent connections used, instead of choking the network
- Implements HasEnabled
- DynamicFileDownloader for simple generation of dynamically generated file downloads. No need to buffer content in memory, but simply write it to the OutputStream, like you would do with e.g. raw Servlet API
- ByteArrayUploadField to bind a file upload to a
byte[]
field with Binder.
- Geolocation API using a pure Java API
- BrowserCookie helper that works well with web sockets too
- LumoProps, Java enumeration for easier discoverability (& redefining/using) of the handy Lumo theme css properties.
WebStorage helper to save data in the browsers localStorage or sessionStorage(available for backwards compatibility, but the same implementation found in core as well these days)
- Fluent API configuring like with other Viritin components
- Supports Java
record
s - Optional built-in column selector (menu in the header) like in Vaadin 8.
- The default order of columns (via introspection) is what you would expect, instead of random, both for basic Java beans and records. Uses Jackson instead of JDK Introspector from
java.desktop
package (that infamously stores properties in HashSet 🤦). Excellent for rapid application development! - In case the default Vaadin mechanism fails to generate column (e.g. using default method introduced in Java 8), VGrid falls back to Jackson to generate to column. Less manual column definition.
- CellFormatter to modify all "raw data cells" columns or based on column details.
- Column.getStyle() method works instead of silently eating the style rules.
- Ability to programmatically set style rules for rows.
- CommaSeparatedStringField to edit List with Binder
- SubListSelector to pick a List from a large set of Ts with Binder (note, no re-ordering yet).
- DeleteButton, shows confirm dialog and is styled so that one don't accidentally click it
- Tree component to visualise hierarchical structures
- EnumSelect
- ElementCollectionField a field to edit e.g. List type structure
LocalDateTimeField for editing LocalDateTime objects with BinderUse DateTimePicker from core, that is available these days.- VLocalDateTimePicker and VLocalDatePicker who use the month names from the selected locale.
- Text Selection API (selectAll, getCursorPosition setSelection, getSelection et al.) for inputs that are based on keyboard input. Essentials to fine tune the UX of "pro user views".
FormBinder (since 2.8.0) helps you to connect your domain objects to your form fields. It supports both POJOs and Java records. The API in FormBinder encourages you to write your validation logic separately from your UI components, but support you to display your constraints violations in your fields and form (for class level validators). You can provide validation messages either with Java Bean Validation API or as a raw String-String map, in case you can't or don't want to use Bean Validation.
FormBinder
uses "name based binding" by default, so if your property in POJO/record is firstName
, a UI component to edit that property is expected to be found as a field with name firstName
from one of the "container objects" you pass for the FormBinder in its constructor. A non-goal of FormBinder is to workaround missing property literals in Java itself, and thus strings are still needed to refer fields/bindings e.g. during validation. The plan is to add annotation(s) with binding metadata for cases where the name based binding is not applicable (waiting for good example cases 🤓).
Why not using the Binder
component in the Vaadin core? Well, it has a couple of design flaws that make it close to impossible for us to provide a proper Bean Validation API support for it, it doesn't support records and has a massive API that easily guides toward bad practices, like writing your validation logic against your UI fields.
BeanValidationForm (since 2.8.0) is an opinionated abstract super class for "bulk forms". It uses FormBinder
to do the binding and this way supports all the things it does as well, but provides you automatic basic Java Bean Validation (customizable validation groups!), basic layout, automatically adjusted save/cancel buttons etc. If you "just want a basic form for your DTO", a coded, not autogenerated, you might want to use this as the basis. Note, that this class is still in very early phase and tested less than the FormBinder itself. Although it draws ideas from a similar older version, expect some bugs and changes for its API.
AbstractForm is the older solution, based on the Binder from Vaadin core. It also configures binder properly for naming convention based binding and provides basic for features such as save and cancel buttons that enable themselves based on the user actions. Currently this is more battle provent, but problematic in many ways (too many options due to Binder), so I expect the development of this helper to be ended.
- DtoDisplay, a component to visualize a given DTO value in a grid layout.
- RichText component to easily show Html or Markdown formatted text. Online demo
- Traditional paging with PagingGrid. Online demo
- CustomLayout component (renders raw html superfast, while you can still place Vaadin components inside it)
- BorderLayout (like in ~ Swing, implemented with CSS Grid)
- A generic MainLayout suitable for many small to medium sized projects, based on the AppLayout and SideNave components. Populates your views to the menu automatically and this way removes a ton of boilerplate code of your app.
- TreeTable. Like TreeGrid in the core, but with much easier API to populate items. Also properly supports lazy loading and scrolling to given item without extra hacks.
- JsPromise, an Element.executeJs replacement for modern async JS APIs.
The test directory contains usage examples for components. Some components have decent JavaDocs. An actual manual would be great and an easy way to contribute back if you find the helpers useful 🤓
Yes please! TIP: Check the project out alongside your app project and create handy helpers directly to Viritin. Send in pull requests and join the effort!
Mirjan Merruko and Stefan Freude are so far the most active contributors to this great tool.
Starting the test/demo server:
Run the main method of TestServer in your IDE or run the following command in the project root:
mvn org.springframework.boot:spring-boot-maven-plugin:test-run
This deploys demo views at http://localhost:9998