Using JavaScript
With Hydro you can create web applications without writing JavaScript, but sometimes there are very specific use cases where using small portions of JavaScript is needed to improve the user experience. Those use cases usually refer to creating reusable components, not the domain specific components. Examples where JavaScript is a nice addition to Hydro:
- selecting the content of an element when focused
- operating on existing JS libraries, like maps
- changing the currently highlighted element in a list using arrows
- ...
In practice, there shouldn't be many places where JS is used, but it's good to have an option to utilize it when needed.
Using Alpine.js
Hydro is using Alpine.js as the backbone for handling all interactions on the client side, and it enables by default all the great features from that library. It means you can create Hydro components that utilize Alpine.js directives like x-on, x-data, x-text, x-ref and all the rest.
Example. Select the content of an input when focused:
@model Search
<div>
Count: <strong>@Model.Count</strong>
<input asp-for="Phrase" bind x-on:focus="$el.select()" />
</div>
@model Search
<div>
Count: <strong>@Model.Count</strong>
<input asp-for="Phrase" bind x-on:focus="$el.select()" />
</div>
Example. Create local JS state and operate on it.
@model Search
<div>
<div x-data="{ index: 0 }">
<strong x-text="index"></strong>
<button x-on:click="index = index + 1">Add</button>
</div>
</div>
@model Search
<div>
<div x-data="{ index: 0 }">
<strong x-text="index"></strong>
<button x-on:click="index = index + 1">Add</button>
</div>
</div>
The only limitation is that you can't set a custom x-data
attribute on the root element, that's why in the above example a nested div is introduced.
Using Hydro
You can execute JavaScript code using Hydro action handlers in views or components code-behind.
Example of invoking JavaScript expression in the view:
<!-- Search.cshtml -->
@model Search
<div>
<button
type="button"
on:click="@(() => Model.Client.ExecuteJs("alert('test')"))">
Click me
</button>
</div>
<!-- Search.cshtml -->
@model Search
<div>
<button
type="button"
on:click="@(() => Model.Client.ExecuteJs("alert('test')"))">
Click me
</button>
</div>
Example of invoking JavaScript expression in the action handler:
// Counter.cshtml.cs
public class Counter : HydroComponent
{
public int Count { get; set; }
public void Add()
{
Count++;
Client.ExecuteJs($"console.log({Count})");
}
}
// Counter.cshtml.cs
public class Counter : HydroComponent
{
public int Count { get; set; }
public void Add()
{
Count++;
Client.ExecuteJs($"console.log({Count})");
}
}
Execution Context
The context of execution the JS expression is the component DOM element, and can be accessed via this
. Example:
// ProductDialog.cshtml.cs
public class ProductDialog : HydroComponent
{
[SkipOutput]
public void Close()
{
DispatchGlobal(new CloseDialog(nameof(ProductDialog)));
Client.ExecuteJs($"this.remove()");
}
}
// ProductDialog.cshtml.cs
public class ProductDialog : HydroComponent
{
[SkipOutput]
public void Close()
{
DispatchGlobal(new CloseDialog(nameof(ProductDialog)));
Client.ExecuteJs($"this.remove()");
}
}
In the above example, first we dispatch an event to notify dialogs container to change the state, and then we invoke JS expression to remove dialog component DOM element immediately, without waiting for the state update.
Generic events
Hydro emits JavaScript events on document
element during certain lifecycle moments of the component:
HydroComponentInit
- triggered once component is initializedHydroComponentUpdate
- triggered after component content is updatedHydroLocation
- triggered when the url changes via hydro-link or Location method
To catch these events you can use document.addEventListener
:
document.addEventListener('HydroComponentInit', function (e) {
console.log('Component initialized', e.detail);
});
document.addEventListener('HydroComponentInit', function (e) {
console.log('Component initialized', e.detail);
});