Use js_sys instead of wasm_bindgen and re-arrange implementation

This commit is contained in:
Michael Pfaff 2022-05-22 01:00:25 -04:00
parent 57c95464c7
commit b52e381367
Signed by: michael
GPG Key ID: F1A27427218FCA77
2 changed files with 6 additions and 11 deletions

View File

@ -7,5 +7,5 @@ edition = "2021"
time = "0.3"
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen = "0.2"
js-sys = "0.3.57"

View File

@ -1,18 +1,13 @@
use time::OffsetDateTime;
#[cfg(target_arch = "wasm32")]
#[wasm_bindgen::prelude::wasm_bindgen(inline_js = r#"
export function unix_millis_now() {
return Date.now();
}"#)]
extern "C" {
fn unix_millis_now() -> f64;
pub fn now_utc() -> OffsetDateTime {
return OffsetDateTime::from_unix_timestamp_nanos((js_sys::Date::now() * 1_000_000f64) as i128)
.expect("current time outside supported range");
}
#[cfg(not(target_arch = "wasm32"))]
#[inline(always)]
pub fn now_utc() -> OffsetDateTime {
#[cfg(target_arch = "wasm32")]
return OffsetDateTime::from_unix_timestamp_nanos((unix_millis_now() * 1_000_000f64) as i128)
.expect("time outside supported range");
#[cfg(not(target_arch = "wasm32"))]
return OffsetDateTime::now_utc();
}