medea-jason 0.13.1

Client library for Medea media server.
Documentation
//! Typed wrapper around [`js_sys::Function`].

use std::marker::PhantomData;

use wasm_bindgen::JsValue;

use crate::platform::Callback;

impl<A: Into<JsValue>> Callback<A> {
    /// Invokes JS function (if any) passing the single provided `arg`ument to
    /// it.
    pub fn call1<T: Into<A>>(&self, arg: T) {
        if let Some(f) = self.0.borrow().as_ref() {
            f.call1(arg.into());
        }
    }
}

/// Typed wrapper for a [`js_sys::Function`] with a single argument and no
/// result.
#[derive(Debug)]
pub struct Function<T> {
    /// [`js_sys::Function`] itself.
    inner: js_sys::Function,

    /// Type of the function argument.
    _arg: PhantomData<T>,
}

impl Function<()> {
    /// Invokes a JS function passing no arguments to it.
    pub fn call0(&self) {
        drop(self.inner.call0(&JsValue::NULL));
    }
}

impl<T: Into<JsValue>> Function<T> {
    /// Invokes a JS function passing the provided single `arg`ument to it.
    pub fn call1(&self, arg: T) {
        drop(self.inner.call1(&JsValue::NULL, &arg.into()));
    }
}

impl<T> From<js_sys::Function> for Function<T> {
    fn from(func: js_sys::Function) -> Self {
        Self { inner: func, _arg: PhantomData }
    }
}