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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
|
{% set canReply =
not ctx.topic.isLocked
and currentUser is not null
and currentUser.hasPermission(permission("CREATE_OWN_POST")) %}
{% set canEdit =
currentUser is not null and (
(
ctx.topicAuthor is not null
and currentUser.id == ctx.topicAuthor.id
and ctx.topicAuthor.hasPermission(permission("EDIT_OWN_TOPIC"))
)
or currentUser.hasPermission(permission("EDIT_OTHER_TOPIC"))
) %}
{% set couldEditPost =
currentUser is not null
and (
currentUser.hasPermission(permission("EDIT_OWN_POST"))
or currentUser.hasPermission(permission("EDIT_OTHER_POST"))
) %}
{% set canDelete =
currentUser is not null and (
(
ctx.topicAuthor is not null
and currentUser.id == ctx.topicAuthor.id
and ctx.topicAuthor.hasPermission(permission("DELETE_OWN_TOPIC"))
)
or currentUser.hasPermission(permission("DELETE_OTHER_TOPIC"))
) %}
{% set title = ctx.topic.title %}
{% extends "base.twig" %}
{% block content %}
{% if couldEditPost %}
<div class="modal fade" tabindex="-1" role="dialog" id="diag-edit-post">
<form class="modal-dialog" role="document" action="?_action=updatepost" method="post">
<input type="hidden" id="i_edit_post" name="post">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="btn-danger close btn-iconic" data-dismiss="modal" aria-label="Close">
<svg viewBox="0 0 24 24" class="icon"><path d="M18 6 6 18"/><path d="m6 6 12 12"/></svg>
</button>
<h4 class="modal-title">{{ __("Edit post") }}</h4>
</div>
<div class="modal-body edit-post-wrapper">
<label class="sr-only" for="i_edit_message">{{ __("Message:") }}</label>
{% include "components/richtext_editor.twig" with { id: "i_edit_message", name: "message" } %}
</div>
<div class="modal-footer">
<button type="button" data-dismiss="modal">
<svg viewBox="0 0 24 24" class="icon"><path d="M18 6 6 18"/><path d="m6 6 12 12"/></svg>
<span>{{ __("Cancel") }}</span>
</button>
<button type="submit" class="btn btn-success">
<svg viewBox="0 0 24 24" class="icon"><path d="M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"/><path d="M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7"/><path d="M7 3v4a1 1 0 0 0 1 1h7"/></svg>
<span>{{ __("Save changes") }}</span>
</button>
</div>
</div>
</form>
</div>
{% endif %}
{% if currentUser is null %}
<div class="modal fade" tabindex="-1" role="dialog" id="diag-cant-view-attachment">
<div class="modal-dialog modal-danger" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title"><svg viewBox="0 0 24 24" class="icon icon-in-text"><circle cx="12" cy="12" r="10"/><path d="m15 9-6 6"/><path d="m9 9 6 6"/></svg> {{ __("Permission denied") }}</h4>
</div>
<div class="modal-body">
{{ __("You must be logged in to view attachments") }}
</div>
<div class="modal-footer">
<button type="button" data-dismiss="modal">
<svg viewBox="0 0 24 24" class="icon"><path d="M18 6 6 18"/><path d="m6 6 12 12"/></svg>
<span>{{ __("Close") }}</span>
</button>
<a href="?_action=auth&next={{ g.server.REQUEST_URI|url_encode }}" class="btn btn-success">
<svg viewBox="0 0 24 24" class="icon"><path d="M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>
<span>{{ __("Log in") }}</span>
</a>
</div>
</div>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function() {
document.querySelectorAll(".attachment").forEach(e => e.addEventListener("click", function(ev) {
ev.preventDefault();
document.querySelector("#diag-cant-view-attachment").classList.remove("fade");
}));
});
</script>
{% else %}
<div class="modal fade" tabindex="-1" role="dialog" id="diag-image-attachment">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="btn-danger close btn-iconic" data-dismiss="modal" aria-label="Close">
<svg viewBox="0 0 24 24" class="icon"><path d="M18 6 6 18"/><path d="m6 6 12 12"/></svg>
</button>
<h4 class="modal-title">{{ __("Attachment") }}</h4>
</div>
<div class="modal-body">
<img class="image-attachment-view attachment-view" id="image-attachment-view" alt="">
</div>
<div class="modal-footer">
<a href="" download id="image-attachment-dl-btn" class="btn">
<svg viewBox="0 0 24 24" class="icon"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" x2="12" y1="15" y2="3"/></svg>
<span>{{ __("Download") }}</span>
</a>
</div>
</div>
</div>
</div>
<div class="modal fade" tabindex="-1" role="dialog" id="diag-video-attachment">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="btn-danger close btn-iconic" data-dismiss="modal" aria-label="Close">
<svg viewBox="0 0 24 24" class="icon"><path d="M18 6 6 18"/><path d="m6 6 12 12"/></svg>
</button>
<h4 class="modal-title">{{ __("Attachment") }}</h4>
</div>
<div class="modal-body">
<video class="video-attachment-view attachment-view" id="video-attachment-view" controls></video>
</div>
<div class="modal-footer">
<a href="" download id="video-attachment-dl-btn" class="btn">
<svg viewBox="0 0 24 24" class="icon"><path d="M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4"/><polyline points="7 10 12 15 17 10"/><line x1="12" x2="12" y1="15" y2="3"/></svg>
<span>{{ __("Download") }}</span>
</a>
</div>
</div>
</div>
</div>
<script>
document.addEventListener("DOMContentLoaded", function() {
document.querySelectorAll(".image-attachment:not(.video-attachment)").forEach(e => e.addEventListener("click", function(ev) {
ev.preventDefault();
const attUrl = "?_action=attachment&attachment=" + encodeURIComponent(e.dataset.attachmentId);
document.querySelector("#image-attachment-view").src = attUrl;
document.querySelector("#image-attachment-dl-btn").href = attUrl;
document.querySelector("#diag-image-attachment").classList.remove("fade");
}));
document.querySelectorAll(".image-attachment.video-attachment").forEach(e => e.addEventListener("click", function(ev) {
ev.preventDefault();
const attUrl = "?_action=attachment&attachment=" + encodeURIComponent(e.dataset.attachmentId);
document.querySelector("#video-attachment-view").src = attUrl;
document.querySelector("#video-attachment-dl-btn").href = attUrl;
document.querySelector("#diag-video-attachment").classList.remove("fade");
}));
document.querySelector("#diag-video-attachment").addEventListener("hidemodal", function() {
document.querySelector("#video-attachment-view").pause();
});
});
</script>
{% endif %}
{% set formError = getAndClearFormError("updateTopic") %}
{% if formError %}
{% include "components/alert_error.twig" with { message: formError } %}
{% endif %}
{% set formError = getAndClearFormError("lockTopic") %}
{% if formError %}
{% include "components/alert_error.twig" with { message: formError } %}
{% endif %}
{% set formError = null %}
<div class="page-header">
<div id="displayHeading">
<div role="heading" class="h1 seamless-inline">
{% if ctx.topic.isLocked %}
<svg viewBox="0 0 24 24" class="icon text-muted"><rect width="18" height="11" x="3" y="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg>
{% endif %}
{{ ctx.topic.title }}
<div class="title-controls pull-right text-normal">
{% if canEdit and not ctx.topic.isLocked %}
<button id="btn-edit-title" class="btn js-only btn-iconic" title="{{ __("Edit title") }}">
<svg viewBox="0 0 24 24" class="icon"><path d="M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497z"/><path d="m15 5 4 4"/></svg>
</button>
{% endif %}
{% if canReply %}
<button id="btn-reply" class="btn js-only btn-iconic" title="{{ __("Reply") }}">
<svg viewBox="0 0 24 24" class="icon"><polyline points="9 17 4 12 9 7"/><path d="M20 18v-2a4 4 0 0 0-4-4H4"/></svg>
</button>
{% endif %}
{% if canEdit %}
{% if ctx.topic.isLocked %}
<form action="?_action=locktopic" method="post">
<input type="hidden" name="topic" value="{{ ctx.topic.id }}">
<input type="hidden" name="locked" value="false">
<button type="submit" class="btn btn-success btn-iconic" title="{{ __("Unlock topic") }}">
<svg viewBox="0 0 24 24" class="icon"><rect width="18" height="11" x="3" y="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 9.9-1"/></svg>
</button>
</form>
{% else %}
<form action="?_action=locktopic" method="post">
<input type="hidden" name="topic" value="{{ ctx.topic.id }}">
<input type="hidden" name="locked" value="true">
<button type="submit" class="btn btn-warning btn-iconic" title="{{ __("Lock topic") }}">
<svg viewBox="0 0 24 24" class="icon"><rect width="18" height="11" x="3" y="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg>
</button>
</form>
{% endif %}
{% endif %}
{% if canDelete %}
<form action="?_action=deletetopic" method="post">
<input type="hidden" name="topic" value="{{ ctx.topic.id }}">
<button type="submit" class="btn btn-danger btn-iconic" title="{{ __("Delete topic") }}">
<svg viewBox="0 0 24 24" class="icon"><path d="M3 6h18"/><path d="M19 6v14c0 1-1 2-2 2H7c-1 0-2-1-2-2V6"/><path d="M8 6V4c0-1 1-2 2-2h4c1 0 2 1 2 2v2"/><line x1="10" x2="10" y1="11" y2="17"/><line x1="14" x2="14" y1="11" y2="17"/></svg>
</button>
</form>
{% endif %}
</div>
</div>
{{ __("Started by %user% on %date%", {
"user": (ctx.topicAuthor is not null) ? ('<a href="?_action=viewuser&user=' ~ ctx.topicAuthor.id|url_encode|e("html") ~ '">' ~ ctx.topicAuthor.displayName|e("html") ~ '</a>') : __("(deleted)"),
"date": '<span class="_time">' ~ ctx.topic.creationDate.format("c")|e("html") ~ '</span>',
}) }}
</div>
{% if canEdit %}
<form action="?_action=updatetopic" method="post" id="editHeading" hidden>
<input type="hidden" name="topic" value="{{ ctx.topic.id }}">
<div class="spring-row">
<div class="spring-fill h1">
<input type="text" name="title" id="i_edit_title" data-original-value="{{ ctx.topic.title }}" value="{{ ctx.topic.title }}">
</div>
<div class="spring-fit controls">
<button type="button" class="btn-iconic" id="topicTitleEditCancel" title="{{ __("Cancel") }}">
<svg viewBox="0 0 24 24" class="icon"><path d="M18 6 6 18"/><path d="m6 6 12 12"/></svg>
</button>
<button type="submit" class="btn-iconic btn-success" title="{{ __("Save changes") }}">
<svg viewBox="0 0 24 24" class="icon"><path d="M15.2 3a2 2 0 0 1 1.4.6l3.8 3.8a2 2 0 0 1 .6 1.4V19a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2z"/><path d="M17 21v-7a1 1 0 0 0-1-1H8a1 1 0 0 0-1 1v7"/><path d="M7 3v4a1 1 0 0 0 1 1h7"/></svg>
</button>
</div>
</div>
</form>
{% endif %}
</div>
{% if canEdit %}
<script>
document.addEventListener("DOMContentLoaded", function() {
document.querySelector("#btn-edit-title").addEventListener("click", function() {
document.querySelector("#displayHeading").hidden = true;
document.querySelector("#editHeading").hidden = false;
const $title = document.querySelector("#i_edit_title")
$title.value = $title.dataset.originalValue;
$title.focus();
$title.selectionStart = $title.selectionEnd = $title.value.length;
});
document.querySelector("#topicTitleEditCancel").addEventListener("click", function() {
document.querySelector("#displayHeading").hidden = false;
document.querySelector("#editHeading").hidden = true;
});
});
</script>
{% endif %}
{% if couldEditPost %}
<script>
document.addEventListener("DOMContentLoaded", function() {
document.querySelectorAll("._edit-post").forEach(e => e.addEventListener("click", function() {
const $post = document.querySelector("[data-post-id='" + e.dataset.postId + "']");
const $edit = document.querySelector("#i_edit_message");
$edit.style.removeProperty("height");
$edit.value = $post.dataset.text;
document.querySelector("#i_edit_post").value = e.dataset.postId;
document.querySelector("#diag-edit-post").classList.remove("fade");
}));
});
</script>
{% endif %}
<script>
{% if canReply %}
document.addEventListener("DOMContentLoaded", function() {
function focusReplyBox() {
const msgInput = document.querySelector("#i_message");
msgInput.scrollIntoView();
msgInput.focus();
}
document.querySelector("#btn-reply").addEventListener("click", function() {
focusReplyBox();
});
document.querySelectorAll("._reply-post").forEach(e => e.addEventListener("click", function() {
const text = document.querySelector("#post-" + e.dataset.postId).dataset.text;
const lines = text.split("\n");
let val = document.querySelector("#i_message").value;
for (let i = 0; i < lines.length; ++i)
val += "\n> " + lines[i];
val += "\n\n";
document.querySelector("#i_message").value = val.replace(/^\n+/, "");
focusReplyBox();
}));
});
{% endif %}
</script>
{% for item in ctx.allItems %}
{% if item.type == "post" %}
{% include "components/post.twig" with {
post: item.post,
postAuthor: item.postAuthor,
topicAuthor: item.topicAuthor,
topic: item.topic,
attachments: item.attachments,
hide_actions: false,
hide_pfp: false,
} %}
{% elseif item.type == "logMessage" %}
{% include "components/topic_log.twig" with {
type: item.type,
logMessage: item.logMessage,
postAuthor: item.postAuthor,
topicAuthor: item.topicAuthor,
topic: item.topic,
hide_actions: false,
hide_pfp: false,
} %}
{% endif %}
{% endfor %}
{% if ctx.topic.isLocked %}
<div class="topic-info-box warning topic-locked">
<svg viewBox="0 0 24 24" class="icon"><rect width="18" height="11" x="3" y="11" rx="2" ry="2"/><path d="M7 11V7a5 5 0 0 1 10 0v4"/></svg>
<em>{{ __("This topic has been locked") }}</em>
</div>
{% elseif currentUser is not null %}
{% set formId = "addpost" %}
<h3 id="form">{{ __("Reply to this topic") }}</h3>
{% set formError = getAndClearFormError(formId) %}
{% if formError %}
{% include "components/alert_error.twig" with { message: formError } %}
{% endif %}
<form action="{{ g.server.REQUEST_URI }}#form" method="post" enctype="multipart/form-data" class="post-reply">
<input type="hidden" name="form_id" value="{{ formId }}">
<div class="form-group">
<label for="i_message" class="sr-only">{{ __("Message:") }}</label>
{% include "components/richtext_editor.twig" with { id: "i_message", name: "message" } %}
</div>
<div class="form-group">
<label for="i_files">{{ __("Attachments: <small>(max. %max_attachment_count% files, max. %max_attachment_size% MiB each)</small>", {
"max_attachment_count": constant("MAX_ATTACHMENT_COUNT"),
"max_attachment_size": constant("MAX_ATTACHMENT_SIZE") // (2**20),
}) }}</label>
<input type="file" name="files[]" id="i_files" multiple accept="*/*">
</div>
<button type="submit" class="btn btn-success">
<span>{{ __("Post reply") }}</span>
<svg viewBox="0 0 24 24" class="icon"><path d="M3.714 3.048a.498.498 0 0 0-.683.627l2.843 7.627a2 2 0 0 1 0 1.396l-2.842 7.627a.498.498 0 0 0 .682.627l18-8.5a.5.5 0 0 0 0-.904z"/><path d="M6 12h16"/></svg>
</button>
</form>
{% else %}
<div class="topic-info-box success">
<h3>{{ __("Log in to reply to this topic") }}</h3>
<a href="?_action=auth&next={{ g.server.REQUEST_URI|url_encode }}" class="btn btn-success">
<svg viewBox="0 0 24 24" class="icon"><path d="M19 21v-2a4 4 0 0 0-4-4H9a4 4 0 0 0-4 4v2"/><circle cx="12" cy="7" r="4"/></svg>
<span>{{ __("Log in") }}</span>
</a>
</div>
{% endif %}
{% endblock %}
|