2020-10-03 01:05:43 +09:00
|
|
|
use std::convert::TryInto;
|
|
|
|
|
2020-11-25 18:42:14 +09:00
|
|
|
use napi::{CallContext, JsFunction, JsNumber, JsObject, JsTimeout, JsUndefined, Result};
|
2020-10-03 01:05:43 +09:00
|
|
|
|
|
|
|
#[js_function(2)]
|
|
|
|
pub fn set_timeout(ctx: CallContext) -> Result<JsTimeout> {
|
|
|
|
let handler: JsFunction = ctx.get(0)?;
|
|
|
|
let timeout: JsNumber = ctx.get(1)?;
|
|
|
|
ctx
|
|
|
|
.env
|
|
|
|
.get_global()?
|
|
|
|
.set_timeout(handler, timeout.try_into()?)
|
|
|
|
}
|
|
|
|
|
2020-10-03 15:57:19 +09:00
|
|
|
#[js_function(1)]
|
|
|
|
pub fn clear_timeout(ctx: CallContext) -> Result<JsUndefined> {
|
|
|
|
let timer: JsTimeout = ctx.get(0)?;
|
|
|
|
ctx.env.get_global()?.clear_timeout(timer)
|
|
|
|
}
|
|
|
|
|
2020-11-25 18:42:14 +09:00
|
|
|
pub fn register_js(exports: &mut JsObject) -> Result<()> {
|
|
|
|
exports.create_named_method("setTimeout", set_timeout)?;
|
|
|
|
exports.create_named_method("clearTimeout", clear_timeout)?;
|
2020-10-03 01:05:43 +09:00
|
|
|
Ok(())
|
|
|
|
}
|