added overtime to time and team page + ui improvements + mobile support for team page closed #12
This commit is contained in:
@@ -19,13 +19,13 @@ templ Base() {
|
||||
</head>
|
||||
}
|
||||
|
||||
templ TimePage(workDays []models.WorkDay) {
|
||||
templ TimePage(workDays []models.WorkDay, lastSub time.Time) {
|
||||
@Base()
|
||||
@headerComponent()
|
||||
<div class="grid-main divide-y-1">
|
||||
@inputForm()
|
||||
for _, day := range workDays {
|
||||
@dayComponent(day)
|
||||
@dayComponent(day, day.Day.Before(lastSub))
|
||||
}
|
||||
</div>
|
||||
@LegendComponent()
|
||||
@@ -83,14 +83,9 @@ templ UserPage(status int) {
|
||||
|
||||
templ statusCheckMark(status models.WeekStatus, target models.WeekStatus) {
|
||||
if status >= target {
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-check-circle" viewBox="0 0 16 16">
|
||||
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16"></path>
|
||||
<path d="m10.97 4.97-.02.022-3.473 4.425-2.093-2.094a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05"></path>
|
||||
</svg>
|
||||
<div class="icon-[material-symbols-light--check-circle-outline]"></div>
|
||||
} else {
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-circle" viewBox="0 0 16 16">
|
||||
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16"></path>
|
||||
</svg>
|
||||
<div class="icon-[material-symbols-light--circle-outline]"></div>
|
||||
}
|
||||
}
|
||||
|
||||
@@ -98,12 +93,15 @@ templ TeamPage(weeks []models.WorkWeek, userWeek models.WorkWeek) {
|
||||
@Base()
|
||||
@headerComponent()
|
||||
{{
|
||||
progress := (float32(userWeek.WorkHours.Hours()) / userWeek.User.ArbeitszeitPerWoche) * 100
|
||||
progress := (float32(userWeek.Worktime.Hours()) / userWeek.User.ArbeitszeitPerWoche) * 100
|
||||
log.Println(userWeek.CheckStatus())
|
||||
}}
|
||||
<div class="grid-main divide-y-1">
|
||||
<div class="grid-sub lg:divide-x-1 responsive">
|
||||
<div class="grid-cell flex flex-col max-md:border-b-1 bg-neutral-300 gap-2">
|
||||
<div class="grid-sub lg:divide-x-1 responsive @container">
|
||||
<div class="grid-cell col-span-full bg-neutral-300">
|
||||
<h2 class="text-2xl uppercase font-bold">Eigene Abrechnung</h2>
|
||||
</div>
|
||||
<div class="grid-cell flex flex-col max-md:border-b-1 max-md:bg-neutral-300 gap-2 ">
|
||||
<div class="lg:hidden">
|
||||
@weekPicker(userWeek.WeekStart)
|
||||
</div>
|
||||
@@ -122,13 +120,13 @@ templ TeamPage(weeks []models.WorkWeek, userWeek models.WorkWeek) {
|
||||
<div class="flex flex-row gap-2 col-span-3">
|
||||
@timeGaugeComponent(uint8(progress), false, false)
|
||||
<div>
|
||||
<p>Arbeitszeit: { fmt.Sprintf("%s", helper.FormatDuration(userWeek.WorkHours)) }</p>
|
||||
<p>Überstunden: { fmt.Sprintf("%s", helper.FormatDuration(userWeek.GetOvertime())) }</p>
|
||||
<p>Arbeitszeit: { fmt.Sprintf("%s", helper.FormatDuration(userWeek.Worktime)) }</p>
|
||||
<p>Überstunden: { fmt.Sprintf("%s", helper.FormatDuration(userWeek.Overtime)) }</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid-cell col-span-3 flex flex-col gap-2 max-md:border-b-1 py-4">
|
||||
<div class="grid-cell col-span-3 flex flex-col @7xl:grid @7xl:grid-cols-5 gap-2 py-4 content-baseline">
|
||||
for _, day := range userWeek.WorkDays {
|
||||
@weekDayComponent(userWeek.User, day)
|
||||
}
|
||||
@@ -154,6 +152,11 @@ templ TeamPage(weeks []models.WorkWeek, userWeek models.WorkWeek) {
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
if len(weeks) > 0 {
|
||||
<div class="grid-cell col-span-full bg-neutral-300">
|
||||
<h2 class="text-2xl uppercase font-bold">Abrechnung Mitarbeiter</h2>
|
||||
</div>
|
||||
}
|
||||
for _, week := range weeks {
|
||||
@employeComponent(week)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user