2022-11-29 04:22:25 +00:00
|
|
|
% layout 'default';
|
2023-06-04 21:47:36 +00:00
|
|
|
% title my $thread_id = $thread->{'id'} ? "Remark on Thread #$thread_id" : '?';
|
2023-05-20 17:22:29 +00:00
|
|
|
<h2 class="page-title"><%= title %></h2>
|
2023-05-29 04:45:40 +00:00
|
|
|
<% if (keys %{$thread}) { =%>
|
2023-06-04 21:47:36 +00:00
|
|
|
<% content_for open_graph => begin %>
|
|
|
|
<meta property="og:type" content="website">
|
|
|
|
<meta property="og:title" content="<%= title %>">
|
|
|
|
<meta property="og:description"
|
|
|
|
content="Remark on thread #<%= $thread->{'id'} %>.">
|
|
|
|
<% end %>
|
2023-06-07 19:43:45 +00:00
|
|
|
<% content_for twitter_card => begin %>
|
|
|
|
<meta name="twitter:title" content="<%= title %>">
|
|
|
|
<meta name="twitter:description"
|
|
|
|
content="Remark on thread #<%= $thread->{'id'} %>.">
|
|
|
|
<% end %>
|
2023-05-20 17:22:29 +00:00
|
|
|
<form method="post" class="form-body">
|
2023-08-14 00:39:36 +00:00
|
|
|
<% if ($draft) { =%>
|
|
|
|
<div class="form-preview">
|
|
|
|
<%== markdown $draft =%>
|
|
|
|
</div>
|
|
|
|
<% } =%>
|
2023-05-20 17:22:29 +00:00
|
|
|
<div class="form-field">
|
2023-05-28 04:42:07 +00:00
|
|
|
<% if (my $error = validation->error('author')) { =%>
|
|
|
|
<p class="field-with-error">Must be between <%= $error->[2] %>
|
|
|
|
and <%= $error->[3] %> characters.</p>
|
|
|
|
<% } =%>
|
2022-09-17 07:56:07 +00:00
|
|
|
<%= label_for author => 'Author' %>
|
2022-09-27 17:20:30 +00:00
|
|
|
<%= text_field author => session->{'author'}, (
|
2023-05-10 01:15:16 +00:00
|
|
|
id => 'author',
|
2022-09-27 17:20:30 +00:00
|
|
|
maxlength => 63,
|
2023-05-10 01:21:58 +00:00
|
|
|
minlength => 1,
|
|
|
|
required => undef
|
2022-09-27 17:20:30 +00:00
|
|
|
) %>
|
2022-08-24 04:35:35 +00:00
|
|
|
</div>
|
2023-05-20 17:22:29 +00:00
|
|
|
<div class="form-field">
|
2023-05-28 04:42:07 +00:00
|
|
|
<% if (my $error = validation->error('body')) { =%>
|
|
|
|
<p class="field-with-error">Must be between <%= $error->[2] %>
|
|
|
|
and <%= $error->[3] %> characters.</p>
|
|
|
|
<% } =%>
|
2022-09-21 04:12:16 +00:00
|
|
|
<%= label_for body => 'Text' %>
|
|
|
|
<%= text_area body => (
|
2023-05-10 01:15:16 +00:00
|
|
|
id => 'body',
|
2022-08-24 04:35:35 +00:00
|
|
|
maxlength => 4000,
|
|
|
|
minlength => 2,
|
2023-05-10 01:15:16 +00:00
|
|
|
required => undef,
|
2022-09-21 05:28:50 +00:00
|
|
|
rows => 6,
|
2023-05-10 01:15:16 +00:00
|
|
|
autofocus => undef
|
2022-08-24 04:35:35 +00:00
|
|
|
) %>
|
|
|
|
</div>
|
2023-06-04 23:42:53 +00:00
|
|
|
<div class="form-checkbox">
|
2023-06-04 16:55:53 +00:00
|
|
|
<%= check_box bump => 1, id => 'bump', checked => undef %>
|
2023-06-04 23:42:53 +00:00
|
|
|
<%= label_for bump => 'Bump' %>
|
2023-06-04 16:55:53 +00:00
|
|
|
</div>
|
2023-08-14 00:39:36 +00:00
|
|
|
<div class="form-checkbox">
|
|
|
|
<%= check_box preview => 1, id => 'preview' %>
|
|
|
|
<%= label_for preview => 'Preview' %>
|
|
|
|
</div>
|
2023-05-21 03:43:32 +00:00
|
|
|
<button type="submit" class="form-button">Post</button>
|
2022-08-24 04:35:35 +00:00
|
|
|
</form>
|
2023-06-25 04:01:13 +00:00
|
|
|
<%# Putting this first above the thread body (nested if, yucky sry) %>
|
|
|
|
<% if (keys %{$last_remark}) { =%>
|
|
|
|
<section class="pager">
|
|
|
|
<h3 class="pager__title">Last Remark</h3>
|
|
|
|
<article class="post">
|
|
|
|
<h4 class="post__title">
|
|
|
|
<span>
|
|
|
|
<%= $last_remark->{'date'} %>
|
|
|
|
</span>
|
|
|
|
<%= link_to "#$last_remark->{'id'}", single_remark =>
|
|
|
|
{remark_id => $last_remark->{'id'}}, (class => 'post__id') %>
|
|
|
|
</h4>
|
|
|
|
<h5 class="post__author"><%= $last_remark->{'author'} %></h5>
|
|
|
|
<div class="post__body">
|
|
|
|
<%== markdown $last_remark->{'body'} =%>
|
|
|
|
</div>
|
|
|
|
<nav class="post__nav">
|
|
|
|
<%= link_to Thread => single_thread =>
|
|
|
|
{thread_id => $last_remark->{'thread_id'}}, (class => 'click') %>
|
|
|
|
<%= link_to Remark => post_remark =>
|
|
|
|
{thread_id => $last_remark->{'thread_id'}}, (class => 'click') %>
|
|
|
|
<%= link_to Flag => flag_remark => {remark_id => $last_remark->{'id'}},
|
|
|
|
(class => 'click') %>
|
|
|
|
</nav>
|
|
|
|
<% if (is_mod) { =%>
|
|
|
|
<nav class="post__nav">
|
|
|
|
<%= link_to Hide => hide_remark => {remark_id => $last_remark->{'id'}},
|
|
|
|
(class => 'click') %>
|
|
|
|
<%= link_to Unhide => unhide_remark => {remark_id =>
|
|
|
|
$last_remark->{'id'}}, (class => 'click') %>
|
|
|
|
<%= link_to Unflag => unflag_remark => {remark_id =>
|
|
|
|
$last_remark->{'id'}}, (class => 'click') %>
|
|
|
|
</nav>
|
|
|
|
<% } =%>
|
|
|
|
</article>
|
|
|
|
</section>
|
|
|
|
<% } =%><%# Close the last_remark 'if' %>
|
2023-05-20 17:22:29 +00:00
|
|
|
<section class="pager">
|
2023-05-27 16:51:57 +00:00
|
|
|
<h3 class="pager__title">Thread</h3>
|
2023-05-20 17:22:29 +00:00
|
|
|
<article class="post">
|
|
|
|
<h3 class="post__title">
|
2023-05-27 02:56:22 +00:00
|
|
|
<span>
|
2023-05-10 00:07:28 +00:00
|
|
|
<%= $thread->{'title'} %>
|
|
|
|
</span>
|
2023-05-27 02:56:22 +00:00
|
|
|
<%= link_to "#$thread->{'id'}", single_thread =>
|
|
|
|
{thread_id => $thread->{'id'}}, (class => 'post__id') %>
|
2023-05-10 00:07:28 +00:00
|
|
|
</h3>
|
2023-05-20 17:22:29 +00:00
|
|
|
<h4 class="post__date"><%= $thread->{'date'} %></h4>
|
|
|
|
<h5 class="post__author"><%= $thread->{'author'} %></h5>
|
|
|
|
<div class="post__body">
|
2023-05-04 01:05:57 +00:00
|
|
|
<%== markdown $thread->{'body'} =%>
|
|
|
|
</div>
|
2023-06-02 19:40:50 +00:00
|
|
|
<nav class="post__nav">
|
|
|
|
<%= link_to post_remark => {thread_id => $thread->{'id'}},
|
|
|
|
(class => 'click'), begin %>
|
|
|
|
Remark (<%= $thread->{'remark_tally'} %>)
|
|
|
|
<% end %>
|
|
|
|
<%= link_to bump_thread => {thread_id => $thread->{'id'}},
|
|
|
|
(class => 'click'), begin %>
|
|
|
|
Bump (<%= $thread->{'bump_tally'} %>)
|
|
|
|
<% end %>
|
|
|
|
<%= link_to Flag => flag_thread => {thread_id => $thread->{'id'}},
|
|
|
|
(class => 'click') %>
|
|
|
|
</nav>
|
|
|
|
<% if (is_mod) { =%>
|
|
|
|
<nav class="post__nav">
|
|
|
|
<%= link_to Hide => hide_thread => {thread_id => $thread->{'id'}},
|
|
|
|
(class => 'click') %>
|
|
|
|
<%= link_to Unhide => unhide_thread => {thread_id => $thread->{'id'}},
|
|
|
|
(class => 'click') %>
|
|
|
|
<%= link_to Unflag => unflag_thread => {thread_id => $thread->{'id'}},
|
|
|
|
(class => 'click') %>
|
|
|
|
</nav>
|
|
|
|
<% } =%>
|
2022-09-02 22:11:23 +00:00
|
|
|
</article>
|
2023-05-10 00:07:28 +00:00
|
|
|
</section>
|
2023-06-25 04:01:13 +00:00
|
|
|
<% } =%><%# Close the thread 'if' %>
|