Struct leptos_dom::NodeRef
source · pub struct NodeRef<T: ElementDescriptor + 'static> { /* private fields */ }
Expand description
Contains a shared reference to a DOM node created while using the view
macro to create your UI.
use leptos::html::Input;
#[component]
pub fn MyComponent() -> impl IntoView {
let input_ref = create_node_ref::<Input>();
let on_click = move |_| {
let node =
input_ref.get().expect("input_ref should be loaded by now");
// `node` is strongly typed
// it is dereferenced to an `HtmlInputElement` automatically
log!("value is {:?}", node.value())
};
view! {
<div>
// `node_ref` loads the input
<input _ref=input_ref type="text"/>
// the button consumes it
<button on:click=on_click>"Click me"</button>
</div>
}
}
Implementations§
source§impl<T: ElementDescriptor + 'static> NodeRef<T>
impl<T: ElementDescriptor + 'static> NodeRef<T>
sourcepub fn new() -> Self
pub fn new() -> Self
Creates a shared reference to a DOM node created while using the view
macro to create your UI.
This is identical to create_node_ref
.
use leptos::html::Input;
#[component]
pub fn MyComponent() -> impl IntoView {
let input_ref = NodeRef::<Input>::new();
let on_click = move |_| {
let node =
input_ref.get().expect("input_ref should be loaded by now");
// `node` is strongly typed
// it is dereferenced to an `HtmlInputElement` automatically
log!("value is {:?}", node.value())
};
view! {
<div>
// `node_ref` loads the input
<input _ref=input_ref type="text"/>
// the button consumes it
<button on:click=on_click>"Click me"</button>
</div>
}
}
sourcepub fn get(&self) -> Option<HtmlElement<T>>where
T: Clone,
pub fn get(&self) -> Option<HtmlElement<T>>where
T: Clone,
Gets the element that is currently stored in the reference.
This tracks reactively, so that node references can be used in effects.
Initially, the value will be None
, but once it is loaded the effect
will rerun and its value will be Some(Element)
.
sourcepub fn get_untracked(&self) -> Option<HtmlElement<T>>where
T: Clone,
pub fn get_untracked(&self) -> Option<HtmlElement<T>>where
T: Clone,
Gets the element that is currently stored in the reference.
This does not track reactively.
sourcepub fn on_load<F>(self, f: F)
pub fn on_load<F>(self, f: F)
Runs the provided closure when the NodeRef
has been connected
with it’s HtmlElement
.
Trait Implementations§
source§impl<T: ElementDescriptor> Clone for NodeRef<T>
impl<T: ElementDescriptor> Clone for NodeRef<T>
source§impl<T: ElementDescriptor + 'static> Default for NodeRef<T>
impl<T: ElementDescriptor + 'static> Default for NodeRef<T>
impl<T: ElementDescriptor + 'static> Copy for NodeRef<T>
Auto Trait Implementations§
impl<T> Freeze for NodeRef<T>
impl<T> !RefUnwindSafe for NodeRef<T>
impl<T> !Send for NodeRef<T>
impl<T> !Sync for NodeRef<T>
impl<T> Unpin for NodeRef<T>where
T: Unpin,
impl<T> !UnwindSafe for NodeRef<T>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more