mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-23 20:53:06 +00:00
68 lines
2 KiB
Rust
68 lines
2 KiB
Rust
#![allow(clippy::await_holding_refcell_ref)]
|
|
use async_trait::async_trait;
|
|
use dioxus_html::prelude::{EvalError, EvalProvider, Evaluator};
|
|
use std::{cell::RefCell, rc::Rc};
|
|
|
|
use crate::{query::Query, DesktopContext};
|
|
|
|
/// Reprents the desktop-target's provider of evaluators.
|
|
pub struct DesktopEvalProvider {
|
|
pub(crate) desktop_ctx: DesktopContext,
|
|
}
|
|
|
|
impl DesktopEvalProvider {
|
|
pub fn new(desktop_ctx: DesktopContext) -> Self {
|
|
Self { desktop_ctx }
|
|
}
|
|
}
|
|
|
|
impl EvalProvider for DesktopEvalProvider {
|
|
fn new_evaluator(&self, js: String) -> Result<Rc<dyn Evaluator>, EvalError> {
|
|
Ok(Rc::new(DesktopEvaluator::new(self.desktop_ctx.clone(), js)))
|
|
}
|
|
}
|
|
|
|
/// Represents a desktop-target's JavaScript evaluator.
|
|
pub(crate) struct DesktopEvaluator {
|
|
query: Rc<RefCell<Query<serde_json::Value>>>,
|
|
}
|
|
|
|
impl DesktopEvaluator {
|
|
/// Creates a new evaluator for desktop-based targets.
|
|
pub fn new(desktop_ctx: DesktopContext, js: String) -> Self {
|
|
let ctx = desktop_ctx.clone();
|
|
let query = desktop_ctx.query.new_query(&js, ctx);
|
|
|
|
Self {
|
|
query: Rc::new(RefCell::new(query)),
|
|
}
|
|
}
|
|
}
|
|
|
|
#[async_trait(?Send)]
|
|
impl Evaluator for DesktopEvaluator {
|
|
async fn join(&self) -> Result<serde_json::Value, EvalError> {
|
|
self.query
|
|
.borrow_mut()
|
|
.result()
|
|
.await
|
|
.map_err(|e| EvalError::Communication(e.to_string()))
|
|
}
|
|
|
|
/// Sends a message to the evaluated JavaScript.
|
|
fn send(&self, data: serde_json::Value) -> Result<(), EvalError> {
|
|
if let Err(e) = self.query.borrow_mut().send(data) {
|
|
return Err(EvalError::Communication(e.to_string()));
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
/// Gets an UnboundedReceiver to receive messages from the evaluated JavaScript.
|
|
async fn recv(&self) -> Result<serde_json::Value, EvalError> {
|
|
self.query
|
|
.borrow_mut()
|
|
.recv()
|
|
.await
|
|
.map_err(|e| EvalError::Communication(e.to_string()))
|
|
}
|
|
}
|