1
0
Fork 0
onnx-web/gui/src/main.tsx

37 lines
924 B
TypeScript
Raw Normal View History

2023-01-05 03:55:25 +00:00
import { mustExist } from '@apextoaster/js-utils';
import * as React from 'react';
import ReactDOM from 'react-dom/client';
import { makeClient } from './api/client.js';
import { OnnxWeb } from './components/OnnxWeb.js';
export interface Config {
api: {
root: string;
}
}
export async function loadConfig() {
const configPath = new URL('./config.json', window.origin);
const configReq = await fetch(configPath);
if (configReq.status === 200) {
return configReq.json();
} else {
throw new Error('could not load config');
}
}
export async function main() {
const config = await loadConfig();
2023-01-05 03:55:25 +00:00
const appElement = mustExist(document.getElementById('app'));
const app = ReactDOM.createRoot(appElement);
const client = makeClient(config.api.root);
2023-01-05 04:54:31 +00:00
app.render(<OnnxWeb client={client} />);
2023-01-05 03:55:25 +00:00
}
window.addEventListener('load', () => {
console.log('launching onnx-web');
main();
}, false);