aboutsummaryrefslogtreecommitdiff
path: root/module/html/view/calendar.scm
blob: a15b5c1d72c23557e2ed9967549dd50d42854fdb (plain)
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
(define-module (html view calendar)
  :use-module (util)
  :use-module (vcomponent)
  :use-module ((vcomponent datetime)
               :select (events-between))
  :use-module ((vcomponent build)
               :select (vcalendar vevent))
  :use-module (datetime)
  :use-module (html components)
  :use-module ((html vcomponent)
               :select (popup
                        calendar-styles
                        fmt-day
                        make-block
                        fmt-single-event
                                          ))
  :use-module (html config)
  :use-module (html util)
  :use-module (srfi srfi-1)
  :use-module (srfi srfi-26)
  :use-module (srfi srfi-41)
  :use-module (srfi srfi-41 util)
  :use-module ((vcomponent group)
               :select (group-stream get-groups-between))
  :use-module ((git)
               :select (get-git-version))
  )

;; Small calendar similar to the one below.
;; TODO highlight days depending on which events they contain
;; TODO run this standalone, for embedding in other websites.
;; @example
;; må ti on to fr lö sö
;;  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
;; @end example
;; date - The start date of the month to display
(define* (cal-table key: start-date end-date next-start prev-start)

  (define (td date)
    `(a (@ ,@(cond
              ;; We are before our time interval
              [(date< date start-date)
               ;; TODO find a prettier way to generate links to previous and next time intervals
               `((class "prev")
                 (href ,(date->string
                         (stream-find (lambda (d) (date<= d date (next-start d)))
                                      (stream-iterate prev-start start-date))
                         "~Y-~m-~d.html")
                       "#" ,(date-link date)))]
              ;; We are after our time interval
              [(date< end-date date)
               `((class "next")
                 (href ,(date->string
                         (stream-find (lambda (d) (and (date<= d date)
                                                  (date< date (next-start d))))
                                      (stream-iterate next-start start-date))
                         "~Y-~m-~d.html")
                       "#" ,(date-link date)))]
              ;; We are in our time interval
              [else `((href "#" ,(date-link date)))]))
        ;; NOTE This time object is the correct place to show the existance
        ;; of an event on a given day in this small calendar. For example
        ;; making the text red for all holidays, or creating a yellow background
        ;; for events from a specific source.
        (time (@ (datetime ,(date->string date "~Y-~m-~d"))) ,(day date))))

  (let* ((last-months current next
                      (month-days (start-of-month start-date)))
         (events (append last-months current next)))
    `(div (@ (class "small-calendar"))
          (div (@ (class "column-head row-head")) "v.")
          ,@(map (lambda (d) `(div (@ (class "column-head"))
                              ,(string-titlecase (week-day-name d 2))))
                 (weekday-list))
          ,@(let ((first (start-of-week (car events)))
                  (last (start-of-week (last events))))
              (map (lambda (v) `(div (@ (class "row-head")) ,v))
                   (map (lambda (d) (week-number d))
                        (stream->list
                         (stream-take-while (lambda (s) (date<= s last))
                                            (week-stream first))))))
          ,@(map td events
                 ))))




;;; Main-stuff


;;; NOTE
;;; The side bar filters all earlier events for each day to not create repeats,
;;; and the html-generate procedure also filters, but instead to find earlier eventns.
;;; All this filtering is probably slow, and should be looked into.

;; TODO place this somewhere proper
(define repo-url (make-parameter "https://git.hornquist.se"))


;; TODO document what @var{render-calendar} is supposed to take and return.
;; Can at least note that @var{render-calendar} is strongly encouraged to include
;; (script "const VIEW='??';"), where ?? is replaced by the name of the view.
(define*-public (html-generate
                 key:
                 (intervaltype 'all)    ; 'week | 'month | 'all
                 calendars events start-date end-date
                 render-calendar        ; (bunch of kv args) → (list sxml)
                 next-start             ; date → date
                 prev-start             ; date → date
                 ;; The pre and post dates are if we want to show some dates just
                 ;; outside our actuall interval. Primarily for whole month views,
                 ;; which needs a bit on each side.
                 (pre-start start-date)
                 (post-end end-date))

  ;; NOTE maybe don't do this again for every month
  (define evs (get-groups-between (group-stream events)
                                  start-date end-date))

  (define (nav-link display date)
    `(a (@ (href ,(date->string date "~Y-~m-~d") ".html")
           (class "nav hidelink"))
        (div (@ (class "nav"))
             ,display)))

  (unless next-start
    (error 'html-generate "Next-start needs to be a procedure"))

  (unless prev-start
    (error 'html-generate "Prev-start needs to be a procedure"))

  ;; (display "<!doctype HTML>\n")
  (;;(@ (ice-9 pretty-print) pretty-print)
   (@ (sxml simple) sxml->xml)
   (xhtml-doc
    (@ (lang sv))
    (head
     (title "Calendar")
     (meta (@ (charset "utf-8")))
     ;; (meta (@ (http-equiv "Content-Type") (content "application/xhtml+xml")))
     (meta (@ (name viewport)
              (content "width=device-width, initial-scale=0.5")))
     (meta (@ (name description)
              (content "Calendar for the dates between "
                       ,(date->string start-date) " and "
                       ,(date->string end-date))))
     ;; NOTE this is only for the time actually part of this calendar.
     ;; overflowing times from pre-start and post-end is currently ignored here.
     (meta (@ (name start-time)
              (content ,(date->string start-date "~s"))))
     (meta (@ (name end-time)
              (content ,(date->string  (date+ end-date (date day: 1)) "~s"))))

     (script
      "EDIT_MODE=true;")

     (style ,(format #f "html {
    --editmode: 1.0;
    --event-font-size: 8pt;
    --gray: #757575;
    --btn-height: 0.5ex;
}"))

     ,(include-css "/static/style.css")
     ,(include-alt-css "/static/dark.css"  '(title "Dark"))
     ,(include-alt-css "/static/light.css" '(title "Light"))

     (script (@ (defer) (src "/static/script.js")))
     ,(calendar-styles calendars))

    (body
     (div (@ (class "root"))
          (main
           ;; Actuall calendar
           (@ (style "grid-area: main"))
           ,@(render-calendar calendars: calendars
                              events: events
                              start-date: start-date
                              end-date: end-date
                              pre-start: pre-start
                              post-end: post-end
                              next-start: next-start
                              prev-start: prev-start
                              )
           ;; Popups used to be here, but was moved into render-calendar so each
           ;; sub-view can itself decide where to put them. This is important
           ;; since they need to be placed as children to the scrolling
           ;; component, if one such component exists.
           )

          ;; Page footer
          (footer
           (@ (style "grid-area: footer"))
           (span "Page generated " ,(date->string (current-date)))
           (span (a (@ (href ,(repo-url) "/calparse"))
                    "Source Code"))
           ,(let* ((long-hash short-hash (get-git-version))
                   (url (format #f "~a/calparse/commit/?id=~a"
                                (repo-url) long-hash)))
              `(span "Version " (a (@ (href ,url)) ,short-hash))))

          ;; Small calendar and navigation
          (nav (@ (class "calnav") (style "grid-area: nav"))
               (div (@ (class "change-view"))
                    ,(btn href: (date->string
                                 (if (= 1 (day start-date))
                                     (start-of-week start-date)
                                     start-date)
                                 "/week/~1.html")
                          "veckovy")

                    ,(btn href: (date->string (set (day start-date) 1) "/month/~1.html")
                          "månadsvy")

                    ,(btn id: "today-button"
                          href: (string-append
                                 "/today?" (case intervaltype
                                             [(month) "view=month"]
                                             [(week) "view=week"]
                                             [else ""]))
                          "idag"))

               (div (@ (id "jump-to"))
                    ;; Firefox's accessability complain about each date
                    ;; component, meaning that it's broken. This label
                    ;; is for the whole input, which can be enabled
                    ;; if wanted.
                    ;; (label (@ (for "date")) "Hoppa till")
                    (form (@ (action "/today"))
                          (input (@ (type hidden)
                                    (name "view")
                                    (value ,(case intervaltype
                                              [(month week) => symbol->string]
                                              [else "month"]))))
                          (input (@ (type date)
                                    (name "date")
                                    (value ,(date->string start-date "~1"))))
                          ,(btn "➔"))))

          (details (@ (open) (style "grid-area: cal"))
                   (summary "Month overview")
                   (div (@ (class "smallcall-head"))
                        ,(string-titlecase (date->string start-date "~B ~Y")))
                   ;; NOTE it might be a good idea to put the navigation buttons
                   ;; earlier in the DOM-tree/tag order. At least Vimium's
                   ;; @key{[[} keybind sometimes finds parts of events instead.
                   (div (@ (class "smallcal"))
                        ;; prev button
                        ,(nav-link "«" (prev-start start-date))

                        ;; calendar table
                        (div ,(cal-table start-date: start-date end-date: end-date
                                         next-start: next-start
                                         prev-start: prev-start
                                         ))

                        ;; next button
                        ,(nav-link "»" (next-start start-date))))


          (div (@ (style "grid-area: details"))
               ,(when (or (debug) (edit-mode))
                  `(details (@ (class "sliders"))
                            (summary "Option sliders")


                            ,@(when (edit-mode)
                                `((label "Event blankspace")
                                  ,(slider-input
                                    variable: "editmode"
                                    min: 0
                                    max: 1
                                    step: 0.01
                                    value: 1)))

                            ,@(when (debug)
                                `((label "Fontsize")
                                  ,(slider-input
                                    unit: "pt"
                                    min: 1
                                    max: 20
                                    step: 1
                                    value: 8
                                    variable: "event-font-size")))))

               ;; List of calendars
               (details (@ (class "calendarlist"))
                        (summary "Calendar list")
                        (ul ,@(map
                               (lambda (calendar)
                                 `(li (@ (class "CAL_bg_"
                                           ,(html-attr (prop calendar 'NAME))))
                                      ,(prop calendar 'NAME)))
                               calendars))))

          ;; List of events
          (div (@ (class "eventlist")
                  (style "grid-area: events"))
               ;; Events which started before our start point,
               ;; but "spill" into our time span.
               (section (@ (class "text-day"))
                        (header (h2 "Tidigare"))
                        ,@(stream->list
                           (stream-map
                            fmt-single-event
                            (stream-take-while
                             (compose (cut date/-time<? <> start-date)
                                      (extract 'DTSTART))
                             (cdr (stream-car evs))))))
               ,@(stream->list (stream-map fmt-day evs))))

     ;; This would idealy be a <template> element, but there is some
     ;; form of special case with those in xhtml, but I can't find
     ;; the documentation for it.
     ,@(let* ((cal (vcalendar
                    name: "Generated"
                    children: (list (vevent
                                     ;; The event template SHOULD lack
                                     ;; a UID, to stop potential problems
                                     ;; with conflicts when multiple it's
                                     ;; cloned mulitple times.
                                     dtstart: (datetime)
                                     dtend: (datetime)
                                     summary: "New Event"))))
              (event (car (children cal))))
         `((div (@ (class "template event-container") (id "event-template")
                   ;; Only needed to create a duration. So actual dates
                   ;; dosen't matter
                   (data-start "2020-01-01")
                   (data-end "2020-01-02"))
                ,(caddar          ; strip <a> tag
                  (make-block event `((class " generated ")))))
           ;; TODO merge this into the event-set, add attribute
           ;; for non-displaying elements.
           (div (@ (class "template") (id "popup-template"))
                ,(popup event (string-append "popup" (html-id event))))))))))