Vaadin - Lit WebComponent example

The Vaadin Documentation on In-Project Web Component is rather outdated, so here’s a more up-to-date example. Also don’t forget to consult Lit Documentation whenever needed.

frontend/src/my-component.ts:

import {css, html, LitElement} from 'lit';
import {customElement, property} from 'lit/decorators.js';

@customElement("my-component")
class MyComponent extends LitElement {
	@property() atTime: string = "0 : 00";
	@property() atDate: string = "8th Feb 2024";

	static styles = css`
		.timer-card {
			flex: 1 1 100%;
			align-items: center;
			justify-content: center;
			padding: 15px 15px 14px 16px;
			border-radius: var(--lumo-border-radius-m);
			box-shadow: var(--lumo-box-shadow-xs);
			background: var(--lumo-tint);
			border: 1px solid var(--lumo-contrast-10pct);
		}
	`;

	render() {
		return html`
			<vaadin-horizontal-layout style="width: 100%" class="timer-card" theme="spacing">
				<span style="flex-grow: 1">Valid until</span>
				<span>${this.atTime}</span>
				<span>${this.atDate}</span>
			</vaadin-horizontal-layout>
		`;
	}
}

Java:

@Tag("my-component")
@JsModule("./src/my-component.ts")
public class MyComponent extends LitTemplate implements HasSize {

	@NonNull
	private static final PropertyDescriptor<String, String> AT_TIME = PropertyDescriptors.propertyWithDefault("atTime", "0 : 00");
	@NonNull
	private static final PropertyDescriptor<String, String> AT_DATE = PropertyDescriptors.propertyWithDefault("atDate", "");

	public MyComponent() {
		setWidthFull();
	}

	public MyComponent(LocalDateTime atDateTime) {
		this();
		setDate(atDateTime);
	}

	public void setDate(LocalDateTime atDateTime) {
		final Locale locale = UI.getCurrent().getLocale();
		final DateTimeFormatter timeFormatter = DateTimeFormatter.ofPattern("H : mm", locale);
		AT_TIME.set(getElement(), timeFormatter.format(atDateTime));
		final DateTimeFormatter dateFormatter = DateTimeFormatter.ofLocalizedDate(FormatStyle.MEDIUM).withLocale(locale);
		AT_DATE.set(getElement(), dateFormatter.format(atDateTime));
	}
}

Additional tips:

Troubleshooting

  • The client-to-server RPC stops working: make sure your component is enabled and not covered by a modal dialog. See Client-Server RPC and the @AllowInert for more documentation.
Written on April 2, 2024