Turn Text into drawing

This commit is contained in:
Joscha 2024-03-30 12:32:52 +01:00
parent dddef6b3b5
commit 0bc2942b2b
3 changed files with 36 additions and 24 deletions

View file

@ -12,7 +12,7 @@ use axum::{
use serde::Deserialize;
use tokio::{net::TcpListener, sync::mpsc};
use crate::drawer::{CalendarDrawing, CellsDrawing, Command};
use crate::drawer::{CalendarDrawing, CellsDrawing, Command, TextDrawing};
use self::{r#static::get_static_file, statuscode::status_code};
@ -44,7 +44,10 @@ struct PostTextForm {
}
async fn post_text(server: State<Server>, request: Form<PostTextForm>) {
let _ = server.tx.send(Command::Text(request.0.text)).await;
let _ = server
.tx
.send(Command::draw(TextDrawing(request.0.text)))
.await;
}
async fn post_image(server: State<Server>, mut multipart: Multipart) -> somehow::Result<Response> {