summaryrefslogtreecommitdiff
path: root/front/src/Emelents/Topbar.tsx
blob: 73e0e382d4d892752593b9431a6caf9329d6d605 (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 { GetLocalizedString } 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> {GetLocalizedString(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;