-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomponents.templ
More file actions
280 lines (254 loc) · 6.29 KB
/
components.templ
File metadata and controls
280 lines (254 loc) · 6.29 KB
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
package main
import "fmt"
import "time"
import "github.com/Meowcenary/information_agent/scraper"
css body() {
background-color: linen;
color: black;
font-family: system-ui;
}
css standardA() {
color: #000;
text-decoration: none;
font-size: x-large;
}
css standardUl() {
list-style-type: none;
padding: 0;
}
css standardButton() {
border-radius: 5px;
background: #0066cc;
color: white;
font-size: 16px;
padding: 10px 20px;
cursor: pointer;
transition: background-color 0.2s ease-in-out;
margin-left: 0.3rem;
margin-bottom: 1rem;
}
css addReferenceButton() {
border-radius: 5px;
background: #32e00b;
color: white;
font-size: 16px;
padding: 10px 20px;
cursor: pointer;
transition: background-color 0.2s ease-in-out;
margin-left: 0.3rem;
margin-bottom: 1rem;
}
css deleteButton() {
border-radius: 5px;
background: #f20736;
color: white;
font-size: 16px;
padding: 10px 20px;
cursor: pointer;
transition: background-color 0.2s ease-in-out;
margin-left: 0.3rem;
margin-bottom: 1rem;
}
css searchInput() {
border: 1px solid #ccc;
border-radius: 5px;
background-color: #eee;
font-size: 16px;
padding: 10px;
width: 25%;
}
css text() {
text-align: left;
width: 20%;
padding-bottom: 1rem;
font-size: x-large;
border-bottom: 1px solid #ccc;
}
css standardLi() {
display: flex;
align-items: center;
margin: 1rem;
}
css searchResultsUl() {
list-style: none;
padding: 0;
}
css homeDescriptor() {
font-size: large;
margin-bottom: 2rem;
}
css flashSuccess() {
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ccc;
border-radius: 4px;
background-color: green;
padding: 0.5rem;
max-width: 25%;
font-size: large;
}
css closeFlash() {
float: right;
font-size: 16px;
line-height: 16px;
padding: 0 5px;
cursor: pointer;
}
templ headerTemplate() {
<head>
<meta charset="UTF-8" />
/* <meta https-equiv="Content-Security-Policy" content="default-src *;" /> */
/* <meta name="viewport" content="width=device-width" /> */
<title>Applied Statistics Method Reference</title>
</head>
}
templ footerTemplate() {
<hr></hr>
<footer>
<div>Applied Statistics Method Reference © { fmt.Sprintf("%d", time.Now().Year()) }</div>
<script>
function hideFlash(buttonId, elementId) {
// Get the button and element elements
const button = document.getElementById(buttonId);
const element = document.getElementById(elementId);
// Add a click event listener to the button
button.addEventListener('click', function() {
// Hide the element
element.style.display = 'none';
});
}
hideFlash("close-flash", "flash")
</script>
</footer>
}
templ navTemplate() {
<font size="5">
<a class={ standardA() } href="/home">-> Home</a>
/
<a class={ standardA() } href="/search">-> Search</a>
/
<a class={ standardA() } href="/about">-> About</a>
</font>
<hr></hr>
<h1>Applied Statistics Method Reference</h1>
<hr></hr>
}
templ flashMessageTemplate(flashMessage *Flash) {
if flashMessage != nil && flashMessage.Type == "success" {
<div id="flash" class={ flashSuccess() }>
<span>{ flashMessage.Message }</span>
<button type="button" id="close-flash" class={ closeFlash() }>x</button>
</div>
}
}
templ home(pages []scraper.WikiPage, flashMessage *Flash) {
<html>
@headerTemplate()
<body class={ body() }>
@navTemplate()
@flashMessageTemplate(flashMessage)
<div>
<h2>Topic Selection</h2>
<p class={ homeDescriptor() }>To view more information on a specific topic click on one of the links below</p>
@pageList(pages)
</div>
@footerTemplate()
</body>
</html>
}
templ about() {
<html>
@headerTemplate()
<body class={ body() }>
@navTemplate()
<div>
<h2>About</h2>
<p>The features for this project are fairly limited, but the source code offers a nice example of a how to build an app with Go's templ package.</p>
<p>The source code for this project can be found <a href="https://github.com/Meowcenary/information_agent" target="_blank">on Github.</a></p>
</div>
@footerTemplate()
</body>
</html>
}
templ search() {
<html>
@headerTemplate()
<body class={ body() }>
@navTemplate()
<div>
<h2>Wikipedia Passthrough Search</h2>
<p>Enter your search query below</p>
<form action="/search" method="POST">
<div>
<input class={ searchInput() } type="text" id="search" name="search" value="Query"></input>
<button class={ standardButton() } type="submit">Search</button>
</div>
</form>
</div>
@footerTemplate()
</body>
</html>
}
templ searchResults(query string, results []scraper.WikiQueryResult) {
<html>
@headerTemplate()
<body class={ body() }>
@navTemplate()
<div>
<h2>Search Results</h2>
<div>
<p>Enter your search query below</p>
<form action="/search" method="POST">
<div>
<input class={ searchInput() } type="text" id="search" name="search" value={ query }></input>
<button class={ standardButton() } type="submit">Search</button>
</div>
</form>
</div>
if len(results) > 0 {
<ul class={ searchResultsUl() }>
for _, result := range results {
<li class={ standardLi() }>
<span class={ text() }>-> { result.Title }</span>
<a href={ templ.URL(result.Url) } target="_blank">
<button class={ standardButton() }>View Article On Wikipedia</button>
</a>
<a href={ templ.URL("/scrape_wikipedia?url=" + result.Url) }>
<button class={ addReferenceButton() }>Add to Reference</button>
</a>
</li>
}
</ul>
} else {
<p>No results to display</p>
}
</div>
@footerTemplate()
</body>
</html>
}
templ pageList(pages []scraper.WikiPage) {
<ul class={ standardUl() }>
for _, page := range pages[1:] {
<li class={ standardLi() }>
<span class={ text() }>-> { page.Title }</span>
<a class={ standardA() } href={ templ.URL("wiki_page_json/" + page.Title) }>
<button class={ standardButton() }>View Topic</button>
</a>
<a class={ standardA() } href={ templ.URL("delete_wiki_page/" + page.Title) }>
<button class={ deleteButton() }>Delete Topic</button>
</a>
</li>
}
</ul>
}
templ page(content templ.Component) {
<html>
@headerTemplate()
<body class={ body() }>
@navTemplate()
{! content }
@footerTemplate()
</body>
</html>
}