aboutsummaryrefslogtreecommitdiff
path: root/module/calp/html/view
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2021-10-03 17:48:13 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2021-10-03 17:48:13 +0200
commita64c2a665af1abe0b91f1c5eb1f97df91ed8a4de (patch)
tree8c23401b5497680160bdf0efc93d0123647c55fd /module/calp/html/view
parentRepair debug buttons. (diff)
downloadcalp-a64c2a665af1abe0b91f1c5eb1f97df91ed8a4de.tar.gz
calp-a64c2a665af1abe0b91f1c5eb1f97df91ed8a4de.tar.xz
Further work, rework popup.
Diffstat (limited to 'module/calp/html/view')
-rw-r--r--module/calp/html/view/calendar.scm1
-rw-r--r--module/calp/html/view/calendar/week.scm42
2 files changed, 40 insertions, 3 deletions
diff --git a/module/calp/html/view/calendar.scm b/module/calp/html/view/calendar.scm
index f8188352..f447773d 100644
--- a/module/calp/html/view/calendar.scm
+++ b/module/calp/html/view/calendar.scm
@@ -117,6 +117,7 @@
;; (script (@ (defer) (src "/static/date_time.js")))
;; (script (@ (defer) (src "/static/vcal.js")))
(script (@ (defer) (src "/static/script.js")))
+ (script (@ (defer) (src "/static/vevent.js")))
(script (@ (defer) (src "/static/globals.js")))
;; on load
diff --git a/module/calp/html/view/calendar/week.scm b/module/calp/html/view/calendar/week.scm
index c2165a8e..5361ab65 100644
--- a/module/calp/html/view/calendar/week.scm
+++ b/module/calp/html/view/calendar/week.scm
@@ -14,6 +14,9 @@
events-between))
:use-module ((calp html vcomponent)
:select (make-block) )
+ :use-module ((calp html components)
+ :select (btn tabset #; #; form with-label
+ ))
:use-module ((vcomponent group)
:select (group-stream get-groups-between))
)
@@ -52,10 +55,16 @@
,@(for event in (stream->list
(events-between start-date end-date events))
- ((@ (calp html vcomponent ) popup)
- event (string-append "popup" (html-id event))))
+ `(popup-element
+ (@ (class "vevent")
+ (data-uid ,(prop event 'UID)))
+ )
+ #;
+ ((@ (calp html vcomponent ) popup) ;
+ event (string-append "popup" (html-id event))))
))
+
;; description in sidebar / tab of popup
(template (@ (id "vevent-description"))
,(description-template)
@@ -70,11 +79,38 @@
,(block-template)
)
+ ;; Based on popup:s output
+ (template
+ (@ (id "popup-template"))
+ (div (@ ; (id ,id)
+ (class "popup-container CAL_"
+ #;
+ ,(html-attr (or (prop (parent ev) 'NAME) ;
+ "unknown")))
+ (onclick "event.stopPropagation()"))
+ (div (@ (class "popup"))
+ (nav (@ (class "popup-control"))
+ ,(btn "×"
+ title: "Stäng"
+ onclick: ""
+ ;; onclick: "close_popup(document.getElementById(this.closest('.popup-container').id))"
+ class: '("close-tooltip")))
+
+ ,(tabset
+ `(("📅" title: "Översikt"
+ (vevent-description (@ (class "populate-with-uid")))
+ )
+
+ ,@(when (edit-mode)
+ `(("📅" title: "Redigera"
+ (vevent-edit (@ (class "populate-with-uid"))))))))))
+ )
+
)))
;; based on the output of fmt-single-event
(define (description-template)
- '(div (@ (class " eventtext summary-tab " ()))
+ '(div (@ (class " vevent eventtext summary-tab " ()))
(h3 ((span (@ (class "repeating")) ; "↺"
)
(span (@ (class "bind summary")