add basiv webview for font results
This commit is contained in:
parent
fae5f783f3
commit
eea4fad2bd
37
client/src/components/glyphview.svelte
Normal file
37
client/src/components/glyphview.svelte
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
<script lang="ts">
|
||||||
|
let glyphSVG = $state("");
|
||||||
|
|
||||||
|
let { selectedChar = "", loading = $bindable() } = $props();
|
||||||
|
|
||||||
|
$effect(() => {
|
||||||
|
if (selectedChar === "") {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
loading = true;
|
||||||
|
const response = fetch(`http://localhost:8000/glyph/${selectedChar}`)
|
||||||
|
.then((data) => {
|
||||||
|
data.text().then((result) => { glyphSVG = result });
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.log(err);
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
loading = false;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
export { selectedChar }
|
||||||
|
export { loading }
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<div class="glyph">
|
||||||
|
{@html glyphSVG }
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
:global(.glyph > svg) {
|
||||||
|
max-height: 50vh;
|
||||||
|
max-width: 50vw;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -1,2 +1,48 @@
|
||||||
<h1>Welcome to SvelteKit</h1>
|
<script>
|
||||||
<p>Visit <a href="https://svelte.dev/docs/kit">svelte.dev/docs/kit</a> to read the documentation</p>
|
import Glyphview from "../components/glyphview.svelte";
|
||||||
|
|
||||||
|
let charInput = $state("");
|
||||||
|
let glyphLoading = $state(false);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<h1>Font Explorer</h1>
|
||||||
|
|
||||||
|
<div class="content">
|
||||||
|
<div class="char-input">
|
||||||
|
<input type="text" maxlength="1" bind:value={ charInput } disabled={ glyphLoading } />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<p>{ glyphLoading }</p>
|
||||||
|
<Glyphview selectedChar={charInput} bind:loading={glyphLoading} />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<style>
|
||||||
|
.content {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: 20% auto;
|
||||||
|
width: auto;
|
||||||
|
padding: 1em 2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.content > div {
|
||||||
|
border: solid 1px black;
|
||||||
|
}
|
||||||
|
|
||||||
|
.char-input {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
gap: 0.1em;
|
||||||
|
padding: 0.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.char-input > input {
|
||||||
|
width: 1.3em;
|
||||||
|
height: 1.3em;
|
||||||
|
font-size: 3em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
|
@ -1,9 +1,28 @@
|
||||||
#[macro_use] extern crate rocket;
|
#[macro_use] extern crate rocket;
|
||||||
|
|
||||||
use std::{fs::File, net::{IpAddr, Ipv4Addr}, sync::Mutex};
|
use std::{fs::File, future::Future, net::{IpAddr, Ipv4Addr}, sync::Mutex};
|
||||||
|
|
||||||
use fontloader::{writer::Visitor, Font, SvgWriter};
|
use fontloader::{writer::Visitor, Font, SvgWriter};
|
||||||
use rocket::{response::{content, status}, Config, State};
|
use rocket::{fairing::{Fairing, Info, Kind}, http::Header, response::{content, status}, Config, State};
|
||||||
|
|
||||||
|
struct CORS;
|
||||||
|
|
||||||
|
#[rocket::async_trait]
|
||||||
|
impl Fairing for CORS {
|
||||||
|
fn info(&self) -> Info {
|
||||||
|
Info {
|
||||||
|
name: "Adding CORS headers to responses",
|
||||||
|
kind: Kind::Response
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async fn on_response<'r>(&self, _req: &'r rocket::Request<'_>, response: &mut rocket::Response<'r>) {
|
||||||
|
response.set_header(Header::new("Access-Control-Allow-Origin", "*"));
|
||||||
|
response.set_header(Header::new("Access-Control-Allow-Methods", "POST, GET, PATCH, OPTIONS"));
|
||||||
|
response.set_header(Header::new("Access-Control-Allow-Headers", "*"));
|
||||||
|
response.set_header(Header::new("Access-Control-Allow-Credentials", "true"));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
struct SharedFont {
|
struct SharedFont {
|
||||||
font: Mutex<Font>
|
font: Mutex<Font>
|
||||||
|
@ -43,4 +62,5 @@ fn rocket() -> _ {
|
||||||
rocket::custom(config)
|
rocket::custom(config)
|
||||||
.manage(SharedFont { font: Mutex::from(font) })
|
.manage(SharedFont { font: Mutex::from(font) })
|
||||||
.mount("/", routes![get_glyph])
|
.mount("/", routes![get_glyph])
|
||||||
|
.attach(CORS)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue