medea-jason 0.13.1

Client library for Medea media server.
Documentation
//! More convenient wrapper for [`js_sys::Error`].

use derive_more::with_trait::{Display, From};
use wasm_bindgen::{
    JsCast as _, JsValue,
    convert::{IntoWasmAbi, OptionIntoWasmAbi},
    describe::WasmDescribe,
};

/// Wrapper for JS value which returned from JS side as error.
#[derive(Clone, Debug, Display, Eq, From, PartialEq)]
#[display("{}", _0.to_string())] // this method is not `ToString::to_string()`
pub struct Error(js_sys::Error);

impl Error {
    /// Returns a brief description of the error if it's available or has been
    /// set.
    #[must_use]
    pub fn message(&self) -> String {
        self.0.message().into()
    }
}

impl From<JsValue> for Error {
    fn from(val: JsValue) -> Self {
        match val.dyn_into::<js_sys::Error>() {
            Ok(err) => Self(err),
            Err(val) => val.as_string().map_or_else(
                || Self(js_sys::Error::new(&format!("{val:?}"))),
                |msg| Self(js_sys::Error::new(&msg)),
            ),
        }
    }
}

/// This implementation allows us to use [`Error`] as a return type in functions
/// exported to JS.
impl WasmDescribe for Error {
    fn describe() {
        js_sys::Error::describe();
    }
}

/// This implementation allows us to use [`Error`] as a return type in functions
/// exported to JS.
impl IntoWasmAbi for Error {
    type Abi = <js_sys::Error as IntoWasmAbi>::Abi;

    fn into_abi(self) -> Self::Abi {
        self.0.into_abi()
    }
}

/// This implementation allows us to use [`Error`] as a return type in functions
/// exported to JS.
impl OptionIntoWasmAbi for Error {
    fn none() -> u32 {
        js_sys::Error::none()
    }
}