/* RouterContext.tsx - ESP3D WebUI context file Copyright (c) 2021 Alexandre Aussourd. All rights reserved. Modified by Luc LEBOSSE 2021 This code is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This code is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with This code; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ import { createContext, FunctionalComponent } from "preact" import { useContext, useState, useRef } from "preact/hooks" import { variablesList } from "../targets" // Type definitions interface RouterContextValue { activeRoute: string setActiveRoute: (route: string) => void routes: Record setRoutes: (routes: Record) => void defaultRoute: { current: string } activeTab: { current: string } } interface RouterContextProviderProps { children: any } /* * Local const * */ const RouterContext = createContext(undefined) const useRouterContext = () => { const context = useContext(RouterContext) if (!context) { throw new Error("useRouterContext must be used within a RouterContextProvider") } return context } const RouterContextProvider: FunctionalComponent = ({ children }) => { const defaultRoute = useRef("/about") const activeTab = useRef( variablesList.hideFeatures ? "/settings/interface" : "/settings/features" ) const [activeRoute, setActiveRoute] = useState(defaultRoute.current) const [routes, setRoutes] = useState>({}) const store: RouterContextValue = { activeRoute, setActiveRoute, routes, setRoutes, defaultRoute, activeTab, } return ( {children} ) } export { RouterContextProvider, useRouterContext } export type { RouterContextValue }