package templates
import (
"arbeitszeitmessung/models"
"net/url"
"time"
"fmt"
"strconv"
)
templ inputForm(){
{{
urlParams := ctx.Value("urlParams").(url.Values)
user := ctx.Value("user").(models.User)
}}
{user.Vorname + " " + user.Name}
Überstunden
4h 32min
}
templ dayComponent(workDay models.WorkDay){
@timeGaugeComponent(workDay.GetWorkDayProgress(), workDay.Day.Equal(time.Now().Truncate(24 * time.Hour)), workDay.RequiresAction())
{workDay.Day.Format("Mon")}: {workDay.Day.Format("02.01.2006")}
Arbeitszeit
if (workDay.RequiresAction()) {
Bitte anpassen
}else {
{workDay.GetWorkTimeString()}
}
@lineComponent()
@changeButtonComponent("time-" + workDay.Day.Format("2006-01-02"))
}
templ changeButtonComponent(id string){
}
templ timeGaugeComponent(progress uint8, today bool, warning bool){
{{
var bgColor string
switch {
case (warning):
bgColor = "bg-red-600"
break
case (progress > 0 && progress < 80):
bgColor = "bg-orange-500"
break
case (80 < progress && progress <=110):
bgColor = "bg-accent"
break
case(progress > 110):
bgColor = "bg-purple-600"
break
default:
bgColor = "bg-neutral-400"
break
}
}}
if today {
}else {
}
}
templ lineComponent(){
}
templ bookingComponent(booking models.Booking) {
}
templ LegendComponent(){
Arbeitszeit unter regulär
}