Files
kgpz_web/viewmodels/issue_view.go
2025-01-01 17:00:26 +01:00

77 lines
1.8 KiB
Go

package viewmodels
import (
"fmt"
"maps"
"slices"
"github.com/Theodor-Springmann-Stiftung/kgpz_web/functions"
"github.com/Theodor-Springmann-Stiftung/kgpz_web/xmlmodels"
)
type PieceByIssue struct {
xmlmodels.Piece
// TODO: this is a bit hacky, but it refences the page number of the piece in the issue
Reference xmlmodels.IssueRef
}
type PiecesByPage struct {
Items map[int][]PieceByIssue
Pages []int
}
// TODO: Next & Prev
type IssueVM struct {
xmlmodels.Issue
Pieces PiecesByPage
AdditionalPieces PiecesByPage
}
func NewSingleIssueView(y string, no string, lib *xmlmodels.Library) (*IssueVM, error) {
issue := lib.Issues.Item(no + "-" + y)
if issue == nil {
return nil, fmt.Errorf("No issue found for %v-%v", y, no)
}
sivm := IssueVM{Issue: *issue}
ppi, ppa, err := PiecesForIsssue(lib, *issue)
if err != nil {
return nil, err
}
slices.Sort(ppi.Pages)
slices.Sort(ppa.Pages)
sivm.Pieces = ppi
sivm.AdditionalPieces = ppa
return &sivm, nil
}
func PiecesForIsssue(lib *xmlmodels.Library, issue xmlmodels.Issue) (PiecesByPage, PiecesByPage, error) {
year := issue.Datum.When.Year
ppi := PiecesByPage{Items: make(map[int][]PieceByIssue)}
ppa := PiecesByPage{Items: make(map[int][]PieceByIssue)}
// TODO: will we have to lock this, if we shutdown the server while loading the library?
lib.Pieces.Lock()
defer lib.Pieces.Unlock()
for _, piece := range lib.Pieces.Array {
if d, ok := piece.ReferencesIssue(year, issue.Number.No); ok {
p := PieceByIssue{Piece: piece, Reference: *d}
if d.Beilage > 0 {
functions.MapArrayInsert(ppa.Items, d.Von, p)
} else {
functions.MapArrayInsert(ppi.Items, d.Von, p)
}
}
}
ppi.Pages = slices.Collect(maps.Keys(ppi.Items))
ppa.Pages = slices.Collect(maps.Keys(ppa.Items))
return ppi, ppa, nil
}