//import logo from './res/img/logo.svg'; import React from 'react'; import { useState } from 'react'; import { IntlProvider } from 'react-intl'; import { GameProvider } from './Contexts/GameContext'; import { AuthProvider } from './Contexts/AuthContext'; /* Page */ import Home from './Pages/Home'; import Login from './Pages/LoginForm'; import SignUp from './Pages/SignUpForm'; import NewPlay from './Pages/NewPlay'; import Profile from './Pages/Profile'; import Lobby from './Pages/Lobby'; import InGame from './Pages/InGame'; import EndGame from './Pages/EndGame'; import InfoPage from './Pages/InfoPage'; import DeducGrid from './Pages/DeducGrid'; import Lobbies from './Pages/Lobbies'; /* Component */ import AppNavbar from './Components/NavBar'; /* nav */ import { BrowserRouter, Route, Routes, useLocation } from "react-router-dom"; /* Style */ import './App.css'; import { ThemeProvider } from './Style/ThemeContext'; // import theme from './Style/Theme'; /* bootstrap */ import 'bootstrap/dist/css/bootstrap.min.css'; /* Internationnalisation */ import messagesFr from './Translations/fr.json'; import messagesEn from './Translations/en.json'; import messagesEs from './Translations/es.json'; import messagesPt from './Translations/pt.json'; import messagesRu from './Translations/ru.json'; /* Gestion d' erreur */ import ErrorBoundary from './Error/ErrorBoundary'; import ErrorPage from './Error/ErrorPage'; import DeducCheck from './Pages/DeducCheck'; import {basePath} from "./AdressSetup" import Tutorial from './Pages/Tutorial'; const messages = { fr: messagesFr, en: messagesEn, es: messagesEs, pt: messagesPt, ru: messagesRu, }; function App() { //Language par defaut //const locale = 'fr'; const [locale, setLocale] = useState('fr'); //@ts-ignore const changeLocale = async (newLocale) => { setLocale(newLocale); }; console.log(basePath) //const location = useLocation(); const hasNavbarVisible = [basePath + "/", basePath + "/login", basePath + "/signup", basePath + "/lobby", basePath + "/endgame", basePath + "/deduc"]//.includes(window.location.pathname); document.title = "Social Graph"; return ( }> {/*@ts-ignore*/} {hasNavbarVisible && } } /> } /> } /> } /> } /> } /> }/> } /> } /> } /> } /> } /> }/> {/* }/> */} } /> {/* page 404 */} ); } export default App;