leptos_server 0.9.0-alpha

RPC for the Leptos web framework.
use reactive_graph::{
    actions::{ArcMultiAction, MultiAction},
    traits::DefinedAt,
};
use server_fn::ServerFn;
use std::{ops::Deref, panic::Location};

/// An [`ArcMultiAction`] that can be used to call a server function.
pub struct ArcServerMultiAction<S>
where
    S: ServerFn + 'static,
    S::Output: 'static,
{
    inner: ArcMultiAction<S, Result<S::Output, S::Error>>,
    #[cfg(any(debug_assertions, leptos_debuginfo))]
    defined_at: &'static Location<'static>,
}

impl<S> ArcServerMultiAction<S>
where
    S: ServerFn + Clone + Send + Sync + 'static,
    S::Output: Send + Sync + 'static,
    S::Error: Send + Sync + 'static,
{
    /// Creates a new [`ArcMultiAction`] which, when dispatched, will call the server function `S`.
    #[track_caller]
    pub fn new() -> Self {
        Self {
            inner: ArcMultiAction::new(|input: &S| {
                S::run_on_client(input.clone())
            }),
            #[cfg(any(debug_assertions, leptos_debuginfo))]
            defined_at: Location::caller(),
        }
    }
}

impl<S> Deref for ArcServerMultiAction<S>
where
    S: ServerFn + 'static,
    S::Output: 'static,
{
    type Target = ArcMultiAction<S, Result<S::Output, S::Error>>;

    fn deref(&self) -> &Self::Target {
        &self.inner
    }
}

impl<S> Clone for ArcServerMultiAction<S>
where
    S: ServerFn + 'static,
    S::Output: 'static,
{
    fn clone(&self) -> Self {
        Self {
            inner: self.inner.clone(),
            #[cfg(any(debug_assertions, leptos_debuginfo))]
            defined_at: self.defined_at,
        }
    }
}

impl<S> Default for ArcServerMultiAction<S>
where
    S: ServerFn + Clone + Send + Sync + 'static,
    S::Output: Send + Sync + 'static,
    S::Error: Send + Sync + 'static,
{
    fn default() -> Self {
        Self::new()
    }
}

impl<S> DefinedAt for ArcServerMultiAction<S>
where
    S: ServerFn + 'static,
    S::Output: 'static,
{
    fn defined_at(&self) -> Option<&'static Location<'static>> {
        #[cfg(any(debug_assertions, leptos_debuginfo))]
        {
            Some(self.defined_at)
        }
        #[cfg(not(any(debug_assertions, leptos_debuginfo)))]
        {
            None
        }
    }
}

/// A [`MultiAction`] that can be used to call a server function.
pub struct ServerMultiAction<S>
where
    S: ServerFn + 'static,
    S::Output: 'static,
{
    inner: MultiAction<S, Result<S::Output, S::Error>>,
    #[cfg(any(debug_assertions, leptos_debuginfo))]
    defined_at: &'static Location<'static>,
}

impl<S> From<ServerMultiAction<S>>
    for MultiAction<S, Result<S::Output, S::Error>>
where
    S: ServerFn + 'static,
    S::Output: 'static,
{
    fn from(value: ServerMultiAction<S>) -> Self {
        value.inner
    }
}

impl<S> ServerMultiAction<S>
where
    S: ServerFn + Send + Sync + Clone + 'static,
    S::Output: Send + Sync + 'static,
    S::Error: Send + Sync + 'static,
{
    /// Creates a new [`MultiAction`] which, when dispatched, will call the server function `S`.
    pub fn new() -> Self {
        Self {
            inner: MultiAction::new(|input: &S| {
                S::run_on_client(input.clone())
            }),
            #[cfg(any(debug_assertions, leptos_debuginfo))]
            defined_at: Location::caller(),
        }
    }
}

impl<S> Clone for ServerMultiAction<S>
where
    S: ServerFn + 'static,
    S::Output: 'static,
{
    fn clone(&self) -> Self {
        *self
    }
}

impl<S> Copy for ServerMultiAction<S>
where
    S: ServerFn + 'static,
    S::Output: 'static,
{
}

impl<S> Deref for ServerMultiAction<S>
where
    S: ServerFn + 'static,
    S::Output: 'static,
    S::Error: 'static,
{
    type Target = MultiAction<S, Result<S::Output, S::Error>>;

    fn deref(&self) -> &Self::Target {
        &self.inner
    }
}

impl<S> Default for ServerMultiAction<S>
where
    S: ServerFn + Clone + Send + Sync + 'static,
    S::Output: Send + Sync + 'static,
    S::Error: Send + Sync + 'static,
{
    fn default() -> Self {
        Self::new()
    }
}

impl<S> DefinedAt for ServerMultiAction<S>
where
    S: ServerFn + 'static,
    S::Output: 'static,
{
    fn defined_at(&self) -> Option<&'static Location<'static>> {
        #[cfg(any(debug_assertions, leptos_debuginfo))]
        {
            Some(self.defined_at)
        }
        #[cfg(not(any(debug_assertions, leptos_debuginfo)))]
        {
            None
        }
    }
}