internal/components/data.go (view raw)
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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 | package components
import (
"time"
"go.alanpearce.eu/searchix/frontend"
"go.alanpearce.eu/searchix/internal/config"
search "go.alanpearce.eu/searchix/internal/index"
"go.alanpearce.eu/searchix/internal/nix"
)
var Indexing struct {
InProgress bool
StartedAt time.Time
FinishedAt time.Time
NextRun time.Time
}
type TemplateData struct {
Sources []*config.Source
Source *config.Source
Query string
ExtraHeadHTML string
Code int
Message string
Assets *frontend.AssetCollection
}
type ResultData struct {
TemplateData
Query string
Results *search.Result
Prev string
Next string
All string
}
func convertMatch[I nix.Importable](m nix.Importable) *I {
i, ok := m.(I)
if !ok {
return nil
}
return &i
}
func SetNextRun(nextRun time.Time) {
Indexing.NextRun = nextRun
}
func SetLastUpdated(last time.Time) {
Indexing.FinishedAt = last
}
func MarkIndexingStarted() {
Indexing.StartedAt = time.Now()
Indexing.InProgress = true
}
func MarkIndexingFinished(nextRun time.Time) {
Indexing.FinishedAt = time.Now()
Indexing.InProgress = false
Indexing.NextRun = nextRun
}
|