blob: 667b42f1656d80426714ce990f9348e756ef3f98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
import { useContext } from "react";
import { LanguageContext } from "../Locales/Context";
import { GetString } from "../Locales/Locales";
const defaultPathName = 'index';
function Topbar() {
var language = useContext(LanguageContext);
let path = getTopbarElement(window.location.pathname);
return (
<div className="Topbar">
<h1> View from the edge </h1>
<div className="TopbarContents">
<h2> {GetString(path, language)} </h2>
</div>
</div>
);
}
// Extracts the black part thing from the path
function getTopbarElement(fullPath: string): string {
let path = fullPath.replace('/', '');
if (path.length === 0) {
path = defaultPathName;
}
return path.split('/')[0];
}
export default Topbar;
|