fix adapters

This commit is contained in:
Evan Almloff 2023-07-18 13:03:34 -07:00
parent ee28c89f5e
commit 8188011fe3
4 changed files with 22 additions and 22 deletions

View file

@ -11,13 +11,14 @@ pub fn axum_socket(ws: WebSocket) -> impl LiveViewSocket {
.sink_map_err(|_| LiveViewError::SendingFailed) .sink_map_err(|_| LiveViewError::SendingFailed)
} }
fn transform_rx(message: Result<Message, axum::Error>) -> Result<String, LiveViewError> { fn transform_rx(message: Result<Message, axum::Error>) -> Result<Vec<u8>, LiveViewError> {
message message
.map_err(|_| LiveViewError::SendingFailed)? .map_err(|_| LiveViewError::SendingFailed)?
.into_text() .into_text()
.map(|s| s.into_bytes())
.map_err(|_| LiveViewError::SendingFailed) .map_err(|_| LiveViewError::SendingFailed)
} }
async fn transform_tx(message: String) -> Result<Message, axum::Error> { async fn transform_tx(message: Vec<u8>) -> Result<Message, axum::Error> {
Ok(Message::Text(message)) Ok(Message::Text(String::from_utf8_lossy(&message).to_string()))
} }

View file

@ -12,14 +12,12 @@ pub fn salvo_socket(ws: WebSocket) -> impl LiveViewSocket {
.sink_map_err(|_| LiveViewError::SendingFailed) .sink_map_err(|_| LiveViewError::SendingFailed)
} }
fn transform_rx(message: Result<Message, salvo::Error>) -> Result<String, LiveViewError> { fn transform_rx(message: Result<Message, salvo::Error>) -> Result<Vec<u8>, LiveViewError> {
let as_bytes = message.map_err(|_| LiveViewError::SendingFailed)?; let as_bytes = message.map_err(|_| LiveViewError::SendingFailed)?;
let msg = String::from_utf8(as_bytes.into_bytes()).map_err(|_| LiveViewError::SendingFailed)?; Ok(as_bytes.into())
Ok(msg)
} }
async fn transform_tx(message: String) -> Result<Message, salvo::Error> { async fn transform_tx(message: Vec<u8>) -> Result<Message, salvo::Error> {
Ok(Message::text(message)) Ok(Message::text(String::from_utf8_lossy(&message).to_string()))
} }

View file

@ -11,18 +11,15 @@ pub fn warp_socket(ws: WebSocket) -> impl LiveViewSocket {
.sink_map_err(|_| LiveViewError::SendingFailed) .sink_map_err(|_| LiveViewError::SendingFailed)
} }
fn transform_rx(message: Result<Message, warp::Error>) -> Result<String, LiveViewError> { fn transform_rx(message: Result<Message, warp::Error>) -> Result<Vec<u8>, LiveViewError> {
// destructure the message into the buffer we got from warp // destructure the message into the buffer we got from warp
let msg = message let msg = message
.map_err(|_| LiveViewError::SendingFailed)? .map_err(|_| LiveViewError::SendingFailed)?
.into_bytes(); .into_bytes();
// transform it back into a string, saving us the allocation
let msg = String::from_utf8(msg).map_err(|_| LiveViewError::SendingFailed)?;
Ok(msg) Ok(msg)
} }
async fn transform_tx(message: String) -> Result<Message, warp::Error> { async fn transform_tx(message: Vec<u8>) -> Result<Message, warp::Error> {
Ok(Message::text(message)) Ok(Message::text(String::from_utf8_lossy(&message).to_string()))
} }

View file

@ -126,7 +126,7 @@ pub async fn run(mut vdom: VirtualDom, ws: impl LiveViewSocket) -> Result<(), Li
pin_mut!(ws); pin_mut!(ws);
// send the initial render to the client // send the initial render to the client
ws.send(edits).await?; ws.send(edits.into_bytes()).await?;
// Create the a proxy for query engine // Create the a proxy for query engine
let (query_tx, mut query_rx) = tokio::sync::mpsc::unbounded_channel(); let (query_tx, mut query_rx) = tokio::sync::mpsc::unbounded_channel();
@ -156,11 +156,11 @@ pub async fn run(mut vdom: VirtualDom, ws: impl LiveViewSocket) -> Result<(), Li
evt = ws.next() => { evt = ws.next() => {
match evt.as_ref().map(|o| o.as_deref()) { match evt.as_ref().map(|o| o.as_deref()) {
// respond with a pong every ping to keep the websocket alive // respond with a pong every ping to keep the websocket alive
Some(Ok("__ping__")) => { Some(Ok(b"__ping__")) => {
ws.send("__pong__".to_string()).await?; ws.send(b"__pong__".to_vec()).await?;
} }
Some(Ok(evt)) => { Some(Ok(evt)) => {
if let Ok(message) = serde_json::from_str::<IpcMessage>(evt) { if let Ok(message) = serde_json::from_str::<IpcMessage>(&*String::from_utf8_lossy(evt)) {
match message { match message {
IpcMessage::Event(evt) => { IpcMessage::Event(evt) => {
// Intercept the mounted event and insert a custom element type // Intercept the mounted event and insert a custom element type
@ -196,7 +196,7 @@ pub async fn run(mut vdom: VirtualDom, ws: impl LiveViewSocket) -> Result<(), Li
// handle any new queries // handle any new queries
Some(query) = query_rx.recv() => { Some(query) = query_rx.recv() => {
ws.send(serde_json::to_string(&ClientUpdate::Query(query)).unwrap()).await?; ws.send(serde_json::to_string(&ClientUpdate::Query(query)).unwrap().into_bytes()).await?;
} }
Some(msg) = hot_reload_wait => { Some(msg) = hot_reload_wait => {
@ -218,8 +218,12 @@ pub async fn run(mut vdom: VirtualDom, ws: impl LiveViewSocket) -> Result<(), Li
.render_with_deadline(tokio::time::sleep(Duration::from_millis(10))) .render_with_deadline(tokio::time::sleep(Duration::from_millis(10)))
.await; .await;
ws.send(serde_json::to_string(&ClientUpdate::Edits(edits)).unwrap()) ws.send(
.await?; serde_json::to_string(&ClientUpdate::Edits(edits))
.unwrap()
.into_bytes(),
)
.await?;
} }
} }