Verified Commit c45d3f5d authored by Jakob Moser's avatar Jakob Moser
Browse files

Remove comments, reformat

parent 25b4dfed
Loading
Loading
Loading
Loading
+5 −59
Original line number Diff line number Diff line
@@ -2,24 +2,6 @@ import { Service } from "../../model/Service.mjs"
import { ServiceLink } from "../pieces/ServiceLink.mjs"
import { Base } from "./Base.mjs"

const germanDateFormatter = new Intl.DateTimeFormat("de-DE", {
    month: "2-digit",
    day: "2-digit",
    year: "numeric",
})

// function getMensaLink() {
//     const dayToShow = new Date()
//     if (dayToShow.getHours() >= 15) {
//         // If it is 15:00 or later, show tomorrow's menu
//         dayToShow.setDate(dayToShow.getDate() + 1)
//     }

//     return `https://www.stw.uni-heidelberg.de/external-tools/speiseplan/speiseplan.php?lang=de&mode=Mensa+Im+Neuenheimer+Feld+304&date=${germanDateFormatter.format(
//         dayToShow
//     )}`
// }

export const TacosServices = {
    oncreate() {
        document.title = "TaCoS-Dienste · FS Coli Portal"
@@ -34,54 +16,18 @@ export const TacosServices = {
                        "ChefOrga",
                        "https://https://orga.chefexperte.de/",
                        "fa-solid fa-clipboard",
                        "ChefOrga-Account"
                    )
                        "ChefOrga-Account",
                    ),
                ),
                m(
                    ServiceLink,
                    new Service(
                        "BigBlueButton",
                        "https://fsco.li/tacos-meeting",
                        "fa-solid fa-phone"
                    )
                        "fa-solid fa-phone",
                    ),
                ),
                // More to come as we get there lol
                // m(
                //     ServiceLink,
                //     new Service(
                //         "Moodle",
                //         "https://moodle.uni-heidelberg.de/",
                //         "fa-solid fa-school-flag",
                //         "Uni-ID"
                //     )
                // ),
                // m(
                //     ServiceLink,
                //     new Service(
                //         "Uni-Mail",
                //         "https://sogo.uni-heidelberg.de/",
                //         "fa-solid fa-inbox",
                //         "Uni-ID"
                //     )
                // ),
                // m(
                //     ServiceLink,
                //     new Service(
                //         "HeiCo",
                //         "https://heico.uni-heidelberg.de/",
                //         "fa-solid fa-graduation-cap",
                //         "Uni-ID"
                //     )
                // ),
                // m(
                //     ServiceLink,
                //     new Service(
                //         "Mensa INF",
                //         getMensaLink(),
                //         "fa-solid fa-utensils"
                //     )
                // ),
            ])
            ]),
        )
    },
}