nope/pages/_app.tsx
Martin Karkowski 0b9ffb31e5 using hostname.
2020-12-30 19:59:00 +01:00

38 lines
1.2 KiB
TypeScript

import "@fortawesome/fontawesome-svg-core/styles.css";
// import "bootstrap/dist/css/bootstrap.min.css";
// import "bootswatch/dist/materia/bootstrap.min.css";
import "bootswatch/dist/darkly/bootstrap.min.css";
import { useEffect } from "react";
import "react-grid-layout/css/styles.css";
import "reflect-metadata";
import "swagger-ui-react/swagger-ui.css";
import { IoSocketClient } from "../lib/communication/IoSocketClient";
import { getDispatcher } from "../lib/dispatcher/getDispatcher";
import { getNopeLogger } from "../lib/logger/getLogger";
import { ICommunicationInterface } from "../lib/types/nope/nopeCommunication.interface";
import "./graph.css";
export default function App({ Component, pageProps, hostname }) {
const dispatcher = getDispatcher({
communicator: new IoSocketClient(
require("os").hostname() + ":7000"
) as ICommunicationInterface,
logger: getNopeLogger("dispatcher", "debug")
});
useEffect(() => {
return () => {
// componentwillunmount in functional component.
// Anything in here is fired on component unmount.
dispatcher.dispose();
};
}, []);
const params = {
dispatcher,
...pageProps
};
return <Component {...params} />;
}