blob: f378a37c3bb9a09e1648e79b04ed78d0f47ee6a4 [file] [log] [blame]
/*
* Copyright (C) 2022 Savoir-faire Linux Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation; either version 3 of the
* License, or (at your option) any later version.
*
* This program 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public
* License along with this program. If not, see
* <https://www.gnu.org/licenses/>.
*/
import { createBrowserRouter, createRoutesFromElements, Outlet, Route } from 'react-router-dom';
import App, { appLoader } from './App';
import ContactList from './components/ContactList';
import AuthProvider from './contexts/AuthProvider';
import WebSocketProvider from './contexts/WebSocketProvider';
import AccountSettings from './pages/AccountSettings';
import CallInterface from './pages/CallInterface';
import Messenger from './pages/Messenger';
import Setup from './pages/Setup';
import SetupLogin from './pages/SetupLogin';
import Welcome from './pages/Welcome';
import { ThemeDemonstrator } from './themes/ThemeDemonstrator';
import { RouteParams } from './utils/hooks';
export type MessengerRouteParams = RouteParams<{ conversationId?: string; contactId?: string }, Record<string, never>>;
export type CallRouteParams = RouteParams<{ conversationId: string }, { video?: 'true' }>;
export const router = createBrowserRouter(
createRoutesFromElements(
<Route path="/" element={<App />} loader={appLoader}>
<Route path="login" element={<Welcome />} />
<Route path="setup/login" element={<SetupLogin />} />
<Route path="setup" element={<Setup />} />
<Route path="theme" element={<ThemeDemonstrator />} />
<Route
element={
<AuthProvider>
<WebSocketProvider>
<Outlet />
</WebSocketProvider>
</AuthProvider>
}
>
<Route path="addContact/:contactId" element={<Messenger />} />
<Route path="conversation/:conversationId" element={<Messenger />} />
<Route path="call/:conversationId" element={<CallInterface />} />
<Route path="settings" element={<AccountSettings />} />
<Route path="contacts" element={<ContactList />} />
<Route index element={<Messenger />} />
</Route>
</Route>
)
);