auf hope-fly geaendert

This commit is contained in:
Peter Hoppe
2022-12-17 17:06:06 +01:00
parent 566573f441
commit 40807e2675
7 changed files with 12 additions and 64 deletions

View File

@ -42,5 +42,6 @@
"last 1 safari version"
]
},
"homepage": "http://localhost/dog"
"homepage____": "http://localhost:3000/dog",
"homepage": "https://hope-fly.de/dog"
}

View File

@ -3,8 +3,8 @@ class Database
{
// CHANGE THE DB INFO ACCORDING TO YOUR DATABASE
private $db_host = 'localhost';
//private $db_host = '10.35.232.188:3306';
//private $db_host = 'localhost';
private $db_host = '10.35.232.188:3306';
private $db_name = 'k200835_dog';
private $db_username = 'k200835_user_dog';
private $db_password = 'X0pEiBsXN3RLazGhQVvP';

View File

@ -23,7 +23,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>Hund gefunden?</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>

View File

@ -1,6 +1,6 @@
{
"short_name": "React App",
"name": "Create React App Sample",
"short_name": "Hund gefunden?",
"name": "--- Hund gefunden? ---",
"icons": [
{
"src": "favicon.ico",
@ -8,7 +8,7 @@
"type": "image/x-icon"
}
],
"start_url": "./dog",
"start_url": ".",
"display": "standalone",
"theme_color": "#000000",
"background_color": "#ffffff"

View File

@ -20,16 +20,14 @@ function App()
<BrowserRouter basename='/dog'>
<Routes>
{ user && <Route path="/" element={<Home/>} /> }
{user && (
{ (
<>
<Route path="/:qr_id" element={<Dog/>} />
<Route path="/login" element={<Login/>} />
<Route path="/reg" element={<Register/>} />
</>
)}
{/* <Route path="*" element={<Navigate to={user ? '/':'/login'} />} /> */}
<Route path="/login" element={<Login/>} />
<Route path="/reg" element={<Register/>} />
<Route path="*" element={<Navigate to={user ? '/':'/login'} />} />
</Routes>
</BrowserRouter>
</div>

View File

@ -48,7 +48,8 @@ export type UserCtxT =
export const UserCtx = createContext<UserCtxT | null>(null);
export const Axios = axios.create({
baseURL: 'http://localhost/dog/php-dog/',
// baseURL: 'http://localhost/dog/php-dog/',
baseURL: 'https://hope-fly.de/dog/php-dog/',
});
export const UserCtxProvider = ({children}:TUserContextProviderProps) => {

View File

@ -1,52 +0,0 @@
<?php
$routes =
[
];
route('/', function () {
echo "Home Page";
});
route('/login', function () {
echo "Login Page";
});
route('/about-us', function () {
echo "About Us";
});
route('/404', function () {
echo "Page not found";
});
function route(string $path, callable $callback) {
global $routes;
$routes[$path] = $callback;
}
run();
function run() {
global $routes;
$uri = $_SERVER['REQUEST_URI'];
$found = false;
foreach ($routes as $path => $callback) {
if ($path !== $uri) continue;
$found = true;
$callback();
}
if (!$found) {
$notFoundCallback = $routes['/404'];
$notFoundCallback();
}
}
?>