working proof-of-concept

main
pantonshire 3 years ago
parent 586e1d9e2c
commit 3cd36874fe

@ -107,12 +107,25 @@ body {
text-decoration: none; text-decoration: none;
} */ } */
a {
color: var(--main_1);
}
/* @media (prefers-color-scheme: dark) { /* @media (prefers-color-scheme: dark) {
html { html {
color-scheme: dark; color-scheme: dark;
} }
} */ } */
a {
color: var(--main_1);
}
table {
overflow: auto;
border-collapse: collapse;
/* border: 1px solid var(--light_1); */
}
th,
td {
padding: 0.25rem 1rem;
text-align: left;
vertical-align: top;
}

@ -34,7 +34,6 @@
transition: border-color 0.1s linear; transition: border-color 0.1s linear;
font-size: 1rem; font-size: 1rem;
font-family: inherit; font-family: inherit;
} }
.text_field:hover { .text_field:hover {
@ -46,3 +45,15 @@
padding: 0 3rem; padding: 0 3rem;
color: var(--text_light); color: var(--text_light);
} }
.table_container {
overflow-x: scroll;
}
#output_table tbody td:nth-child(1) {
text-align: center;
}
#output_table thead th:nth-child(2) {
min-width: 10em;
}

@ -37,16 +37,51 @@ export function Inspector(props: InspectorProps) {
function Out(props: { currentString: string }) { function Out(props: { currentString: string }) {
const ctx = useContext(UtfdumpContext); const ctx = useContext(UtfdumpContext);
let rows = [];
if (!ctx.utfdump) { if (ctx.utfdump) {
return ( for (const codepointStr of props.currentString) {
<p>Loading WASM...</p> const codepoint = codepointStr.codePointAt(0);
);
if (codepoint !== undefined) {
const charData = ctx.utfdump.codepoint_char_data(codepoint);
rows.push((
<tr>
<td>{codepointStr.replace(/\s+/, ' ')}</td>
<td>{charData?.name()}</td>
<td>U+{codepoint.toString(16).padStart(4, '0')}</td>
</tr>
));
charData?.free();
}
}
} }
return ( return (
<section className={styles.output_section}> <section className={styles.table_container}>
<p id='out_test'>{ctx.utfdump.spongebob_case(props.currentString)}</p> <div className={styles.overflow_scroll}>
<table id={styles.output_table}>
<thead>
<tr>
<th>Char</th>
<th>Name</th>
<th>Codepoint</th>
<th>UTF-8</th>
<th>UTF-16</th>
<th>Category</th>
<th>Combining</th>
<th>Bidirectional</th>
<th>Numeric value</th>
</tr>
</thead>
<tbody>
{rows}
</tbody>
</table>
</div>
</section> </section>
); );
} }

Loading…
Cancel
Save