Compare commits

...

2 Commits

Author SHA1 Message Date
pantonshire 3f3b9d0b9e only display table if it has a nonzero number of rows 3 years ago
pantonshire eb6dfea3db add utfdump as submodule 3 years ago

3
.gitmodules vendored

@ -0,0 +1,3 @@
[submodule "utfdump"]
path = utfdump
url = https://github.com/pantonshire/utfdump.git

@ -11,7 +11,7 @@ const nextConfig = {
loadedWasm = true; loadedWasm = true;
nextConfig.plugins.push( nextConfig.plugins.push(
new WasmPackPlugin({ new WasmPackPlugin({
crateDirectory: path.resolve(__dirname, '..', 'utfdump', 'wasm'), crateDirectory: path.resolve(__dirname, 'utfdump', 'wasm'),
outDir: path.resolve(__dirname, 'wasm', 'utfdump'), outDir: path.resolve(__dirname, 'wasm', 'utfdump'),
forceMode: 'production', forceMode: 'production',
extraArgs: '--target web', extraArgs: '--target web',

@ -67,9 +67,10 @@ export function OutputTable(props: { currentString: string }) {
} }
} }
return ( let table;
<section className={styles.table_container}>
<div className={styles.overflow_scroll}> if (rows.length > 0) {
table = (
<table id={styles.output_table}> <table id={styles.output_table}>
<thead> <thead>
<tr> <tr>
@ -93,6 +94,15 @@ export function OutputTable(props: { currentString: string }) {
{rows} {rows}
</tbody> </tbody>
</table> </table>
);
} else {
table = (<></>);
}
return (
<section className={styles.table_container}>
<div className={styles.overflow_scroll}>
{table}
</div> </div>
</section> </section>
); );

@ -0,0 +1 @@
Subproject commit 0d1872b902d6d4211415932caa539bc951a9ec80
Loading…
Cancel
Save