mirror of
https://github.com/cheeaun/phanpy.git
synced 2024-12-21 20:44:28 +03:00
28 lines
688 B
JavaScript
28 lines
688 B
JavaScript
import { useLocation } from 'react-router-dom';
|
|
|
|
import Link from '../components/link';
|
|
import getInstanceStatusURL from '../utils/get-instance-status-url';
|
|
|
|
export default function HttpRoute() {
|
|
const location = useLocation();
|
|
const url = location.pathname.replace(/^\//, '');
|
|
const statusURL = getInstanceStatusURL(url);
|
|
if (statusURL) {
|
|
window.location.hash = statusURL + '?view=full';
|
|
return null;
|
|
}
|
|
return (
|
|
<div class="ui-state" tabIndex="-1">
|
|
<h2>Unable to process URL</h2>
|
|
<p>
|
|
<a href={url} target="_blank">
|
|
{url}
|
|
</a>
|
|
</p>
|
|
<hr />
|
|
<p>
|
|
<Link to="/">Go home</Link>
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|