Mercurial Hosting > freedit
annotate src/thread.html.luan @ 25:66fd3784e60e
back to textarea for bbcode
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Tue, 19 Jul 2022 22:24:24 -0600 |
parents | 33731231093a |
children | 0837820b97fb |
rev | line source |
---|---|
9 | 1 local Luan = require "luan:Luan.luan" |
2 local error = Luan.error | |
3 local ipairs = Luan.ipairs or error() | |
18 | 4 local Time = require "luan:Time.luan" |
5 local time_now = Time.now or error() | |
9 | 6 local Io = require "luan:Io.luan" |
7 local Http = require "luan:http/Http.luan" | |
8 local Shared = require "site:/lib/Shared.luan" | |
9 local head = Shared.head or error() | |
10 local header = Shared.header or error() | |
11 local footer = Shared.footer or error() | |
12 local Forum = require "site:/lib/Forum.luan" | |
13 local forum_title = Forum.title or error() | |
14 local Db = require "site:/lib/Db.luan" | |
15 local Post = require "site:/lib/Post.luan" | |
12 | 16 local Bbcode = require "site:/lib/Bbcode.luan" |
17 local bbcode_to_html = Bbcode.to_html or error() | |
16 | 18 local User = require "site:/lib/User.luan" |
9 | 19 |
11 | 20 |
16 | 21 local function deletePost() |
22 %><a href="javascript:" onclick="deletePost(parentNode)">delete</a><% | |
23 end | |
24 | |
9 | 25 return function() |
26 local root_id = Http.request.parameters.root or error() | |
27 local docs, total_hits = Db.search("post_root_id:"..root_id,1,1000,{sort="id"}) | |
28 local posts = Post.from_docs(docs) | |
29 local subject_html = posts[1].subject_html | |
16 | 30 local user = User.current() |
31 local user_name = user and user.name | |
18 | 32 local now = time_now() |
9 | 33 Io.stdout = Http.response.text_writer() |
34 %> | |
35 <!doctype html> | |
36 <html> | |
37 <head> | |
38 <% head() %> | |
39 <title><%=forum_title%>: <%=subject_html%></title> | |
40 <style> | |
18 | 41 div[author] { |
42 margin-bottom: 6px; | |
43 font-size: 10px; | |
44 } | |
45 div[author] img { | |
46 width: 28px; | |
47 vertical-align: middle; | |
48 border-radius: 50%; | |
49 } | |
50 div[author] a { | |
51 font-weight: bold; | |
52 } | |
53 span[ago] { | |
54 color: #888; | |
55 } | |
15 | 56 [message] { |
9 | 57 white-space: pre-wrap; |
58 } | |
25
66fd3784e60e
back to textarea for bbcode
Franklin Schmidt <fschmidt@gmail.com>
parents:
21
diff
changeset
|
59 textarea { |
66fd3784e60e
back to textarea for bbcode
Franklin Schmidt <fschmidt@gmail.com>
parents:
21
diff
changeset
|
60 width: 100%; |
66fd3784e60e
back to textarea for bbcode
Franklin Schmidt <fschmidt@gmail.com>
parents:
21
diff
changeset
|
61 xmax-width: 450px; |
66fd3784e60e
back to textarea for bbcode
Franklin Schmidt <fschmidt@gmail.com>
parents:
21
diff
changeset
|
62 height: 100px; |
66fd3784e60e
back to textarea for bbcode
Franklin Schmidt <fschmidt@gmail.com>
parents:
21
diff
changeset
|
63 } |
66fd3784e60e
back to textarea for bbcode
Franklin Schmidt <fschmidt@gmail.com>
parents:
21
diff
changeset
|
64 </style> |
15 | 65 <script> |
19 | 66 function getPostDiv(node) { |
67 do { | |
68 if( node.getAttribute('post') ) | |
69 return node; | |
70 } while( node = node.parentNode ); | |
71 } | |
72 | |
73 function cancelEdit(a) { | |
74 let postDiv = getPostDiv(a); | |
15 | 75 postDiv.querySelector('[output]').style.display = 'block'; |
76 postDiv.querySelector('[edit]').innerHTML = ''; | |
77 } | |
19 | 78 function saveEdit(a) { |
79 let postDiv = getPostDiv(a); | |
80 let post = postDiv.getAttribute('post'); | |
25
66fd3784e60e
back to textarea for bbcode
Franklin Schmidt <fschmidt@gmail.com>
parents:
21
diff
changeset
|
81 let text = postDiv.querySelector('textarea').value; |
15 | 82 let postData = 'post=' + post + '&text=' + encodeURIComponent(text); |
83 ajax("save_edit.js",postData); | |
84 } | |
16 | 85 |
86 function deletePost(span) { | |
87 span.innerHTML = document.querySelector('[hidden][delete]').innerHTML; | |
88 } | |
89 function deleteNo(span) { | |
90 span.innerHTML = document.querySelector('[hidden][undelete]').innerHTML; | |
91 } | |
92 function deleteYes(span) { | |
19 | 93 let post = getPostDiv(span).getAttribute('post'); |
16 | 94 ajax( '/delete.js?post=' + post ); |
95 } | |
18 | 96 |
97 function init() { | |
98 let spans = document.querySelectorAll('span[ago]'); | |
99 for( let i=0; i<spans.length; i++ ) { | |
100 let span = spans[i]; | |
101 let date = span.getAttribute('date'); | |
102 date = parseInt(date); | |
103 span.title = new Date(date).toLocaleString(); | |
104 } | |
105 } | |
15 | 106 </script> |
9 | 107 </head> |
18 | 108 <body onload="init()"> |
9 | 109 <% header() %> |
110 <div content> | |
111 <h1><%=subject_html%></h1> | |
16 | 112 <% for _, post in ipairs(posts) do |
113 if post.is_deleted then | |
114 continue | |
115 end | |
116 %> | |
9 | 117 <hr> |
15 | 118 <div post="<%=post.id%>"> |
18 | 119 <div author> |
120 <img src="/images/profile.png"> | |
121 <a href="/whatever"><%= post.author_name %></a> | |
122 <span ago date="<%=post.date%>"><% post.ago(now) %> ago</span> | |
123 </div> | |
15 | 124 <div output> |
125 <% bbcode_to_html(post.content) %> | |
126 <p> | |
127 <a href="/reply.html?parent=<%=post.id%>">reply</a> | |
16 | 128 <% if post.author_name == user_name then %> |
15 | 129 - <a href="javascript:ajax('/edit.js?post=<%=post.id%>')">edit</a> |
19 | 130 - <span delete><%deletePost()%></span> |
16 | 131 <% end %> |
15 | 132 </p> |
133 </div> | |
134 <div edit></div> | |
135 </div> | |
9 | 136 <% end %> |
137 </div> | |
138 <% footer() %> | |
16 | 139 <span hidden delete>Delete? <a href="javascript:" onclick="deleteYes(parentNode)">yes</a> / <a href="javascript:" onclick="deleteNo(parentNode)">no</a></span> |
140 <span hidden undelete><%deletePost()%></span> | |
19 | 141 <div hidden edit> |
25
66fd3784e60e
back to textarea for bbcode
Franklin Schmidt <fschmidt@gmail.com>
parents:
21
diff
changeset
|
142 <textarea></textarea> |
19 | 143 <p> |
144 <button onclick="saveEdit(this)">save</button> | |
145 <button onclick="cancelEdit(this)">cancel</button> | |
146 </p> | |
147 </div> | |
9 | 148 </body> |
149 </html> | |
150 <% | |
151 end |