This package provides a Java SDK for working with Datastar.
This package is licensed for free under the MIT License.
This package requires Java 17 or later.
Install using Maven by adding the following to your pom.xml
:
<dependency>
<groupId>com.starfederation</groupId>
<artifactId>datastar</artifactId>
<version>1.0.0</version>
</dependency>
<repositories>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/starfederation/datastar</url>
</repository>
</repositories>
import starfederation.datastar.utils.ServerSentEventGenerator;
You will want to set up the ServerSentEventGenerator to be able to handle the framework you choose to use. Adapters are provided for various framework requests and responses in the SDK.
AbstractResponseAdapter responseAdapter = new HttpServletResponseAdapter(response);
ServerSentEventGenerator generator = new ServerSentEventGenerator(responseAdapter);
Once the generator is set up you can use it to send events. Let's utilize this event for the next few examples.
MergeFragments event = MergeFragments.builder()
.selector("#test")
.data("<div>test</div>")
.build();
This is how you would send an event with default HTTP/SSE options. The default options include a monotonically increasing integer counter
for event ids and a retry duration of 1000ms
.
generator.send(event);
If you want to modify these you can call send and pass the arguments you want for each accordingly.
// custom event id
generator.send(event, "custom-id");
// custom retry duration
generator.send(event, 2000);
// both custom
generator.send(event, "custom-id", 2000);
There are a few different event types in Datastar and each come with their own options. You can check out the SDK Guide for a review of all of them.
This event is used to merge fragments into the DOM. The data is a string that represents the HTML to be merged into the DOM.
selector
(string) The CSS selector to use to insert the fragments. If not provided or empty, Datastar will default to using theid
attribute of the fragment.mergeMode
(FragmentMergeMode) The mode to use when merging the fragment into the DOM. If not provided the Datastar client side will default tomorph
.useViewTransition
Whether to use view transitions, if not provided the Datastar client side will default tofalse
.
MergeFragments event = MergeFragments.builder()
.selector("#feed")
.mergeMode(FragmentMergeMode.Append)
.useViewTransition(true)
.data("<div id=\"feed\">\n<span>1</span>\n</div>")
.build();
This event is used to remove fragments from the DOM.
selector
(string) The CSS selector to use to insert the fragments. If not provided or empty, Datastar will default to using theid
attribute of the fragment.useViewTransition
Whether to use view transitions, if not provided the Datastar client side will default tofalse
.
RemoveFragments event = RemoveFragments.builder()
.selector("#feed")
.useViewTransition(true)
.build();
This event is used to merge data into the signals object on the client side. The data is a JSON object that represents the data to be merged into the signals object.
onlyIfMissing
(boolean) Whether to merge the signal only if it does not already exist. If not provided, the Datastar client side will default to false, which will cause the data to be merged into the signals.
MergeSignals event = MergeSignals.builder()
.data("{\"key\": \"value\"}")
.onlyIfMissing(true)
.build();
For a signal to be removed, the path must be provided. The path is a string that represents the path to the signal in the signals object. The path should be in the format of a dot separated string. For example, if the signal is in the signals object user
at user.name
, the path would be user.name
.
RemoveSignals event = RemoveSignals.builder()
.addPath("user.name")
.addPath("user.email")
.build();
This event is used to execute a script on the client side. The script is a string that represents the script to be executed. The script can be any valid JavaScript code. The script will be executed in the context of the client side.
autoRemove
Whether to remove the script after execution, if not provided the Datastar client side will default to true.attributes
A line separated list of attributes to add to the script element, if not provided the Datastar client side will default to type module. Each item in the array should be a string in the format key value.
ExecuteScript event = ExecuteScript.builder()
.script("console.log('Hello World');")
.autoRemove(false)
.attributes("type='module'")
.build();
This will read signals from a request and merge them into the signals object on the backend. The request is an object that represents the request to read the signals from. The store is a DataStore object that represents the store to merge the signals into.
Often you would want to have a Datastore created on your backend to keep track of any signals in Datastar. Here is an example of how you would create a DataStore as well as read signals from a request.
DataStore store = new DataStore();
SignalReader.readSignals(request, store);