summaryrefslogtreecommitdiff
path: root/pages.lisp
blob: f279aa970f3abee8269ab4b260ff5c932e5cfc36 (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
;;;; pages.lisp -- html generation functions for dnd

(in-package :dnd)

;;; RENDER PROTOCOL

(defgeneric render (view object &key)
  (:documentation "Render OBJECT as VIEW. VIEW could be anything, but it is intended to
be a keyword for usin in EQL method specializers."))

(defmacro defrender (view (spec &rest kwargs) &body body)
  "A helper macro for defining specializations of render."
  (let ((viewvar (gensym)))
    `(defmethod render  ((,viewvar (eql ,view)) ,spec &key ,@kwargs)
       ,@body)))

(defrender :list ((data list) (class "listview") (item-class "listitem"))
  "A catch all for rendering lists of renderable data items as unordered
lists. CLASS is the lass string for the containing list. ITEM-CLASS is
the class string for the contained list items."
  (with-html
    (:ol :class class
         (dolist (item data)
           (:li (render :list-item item :class item-class))))))

(defrender :three-column-layout (data)
  "A catch all specialization for rendering data in three columns. You
must specialize :left :milsddle :right on your desired data type."
  (with-html
    (:div :class "three-column-layout"
          (:div :class "left-column" (render :left data))
          (:div :class "middle-column" (render :middle data))
          (:div :class "right-column" (render :right data)))))

;;; PAGES

(defmacro with-page ((&key title) &body body)
  "A helper macro fordefining some standard page boilerplate."
  `(with-html-string
     (:doctype)
     (:html
      (:head
       (:title ,title))
      (:body
       ,@body))))

(defclass/std doorkeeper ()
  ((message)))

(defun doorkeeper (&key (message "Come ye player, Wot's yer name?"))
  (render :page (make-instance 'doorkeeper :message message )))

(defrender :page ((page doorkeeper))
  (with-page (:title "Tavern Door")
    (:h1 (message page))
    (:form :method "POST" :action "/tavern-door"
	   (:label :for "NICK" "Wut's yer handle?:")
	   (:input :name "NICK")
	   (:button :type "submit" "Announce Thyself"))
    (:h2 "Eh? Ye need to announce thyeself?")
    (:a :href "/register" "Follow me...")))

(defclass/std goddess-shrine () ())

(defrender :page ((page goddess-shrine)) 
  (with-page (:title "A Sacred Shrine")
    (:header
     (:h1 "Pray and become a hero..."))
    (:form :method "POST" :action "/godess-shrine"
	   (:label :for "NAME" "Enter the epithet by which the ages shall know thy hero:")
	   (:input :name "NAME")
	   (:button :type "submit" "Pray To The Goddess"))))

(defclass/std player-registration () ())

(defrender :page ((page player-registration))
  (with-page (:title "Register Player")
    (:header
     (:h1 "Choose a Nickname Player"))
    (:form :method "POST" :action "/register"
           (:label  :for "NICK" "Choose a nickname. No spaces. Letters, Numbers, and -._")
           (:input :name "NICK" :placeholder "superbob")
           (:button :type "submit" "Register"))))

(defun register ()
  (render :page (make-instance 'player-registration)))

(defclass/std tavern ()
  ((player alerts)))

(defun tavern (player)
  (print "MOO")
  (render :page (make-instance 'tavern :player player)))

(defrender :page ((tavern tavern))
  (with-page (:title "A Bustling Tavern")
    (navbar)
    (render :three-column-layout tavern)))

(defrender :left ((tavern tavern))
  (let ((player (player tavern))) 
    (with-html 
      (render :details player)
      (:h4 "Your Heroes")
      (render :list (player-heroes player)))))

(defrender :middle ((tavern tavern))
  (with-html
    (:h4 "Your Campaigns ")
    (render :list (player-campaigns (player tavern)))))

(defrender :right ((tavern tavern))
  (with-html
    (:h4 "Gossip & Gab")
    (render :list (alerts tavern))
    (:h4 "Comrades in Arms")
    (render :list (fetch-comrades (player tavern)))))

(defrender :details ((player player))
  (with-html
    (:div :class "player details"
          (:h3 "Welcome " (player-nick player)))))

(defun navbar ()
  (with-html
      (:nav :class "navbar" :aria-label "Navigation"
	    (:div :class "logo" :aria-label "DND logo" "DND")
	    (:ul :class "nav-links" :aria-label "Nav links"
	         (:li (:a :href "/hero" :aria-label "Hero profile" "🧝"))
	         (:li (:a :href "/inventory" :aria-label "Inventory" "🎒"))
	         (:li (:a :href "/quests" :aria-label "Quests" "📜"))
	         (:li (:a :href "/tavern" :aria-label "Tavern" "🍺"))))))

(defun hall-of-heroes ()
  (with-html
      (:ul :class "hall-of-heroes"
           (dolist (hero (all-heroes))
	     (:li (hero-name hero)
                  "the"
                  (hero-class hero)
                  (hero-title hero))))))