Mercurial Hosting > freedit
annotate src/thread.html.luan @ 26:0837820b97fb
tinymce work
| author | Franklin Schmidt <fschmidt@gmail.com> |
|---|---|
| date | Wed, 20 Jul 2022 15:47:18 -0600 |
| parents | 66fd3784e60e |
| children | 72a1b77b4548 |
| 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; |
| 26 | 58 line-height: 1.4; |
| 9 | 59 } |
|
25
66fd3784e60e
back to textarea for bbcode
Franklin Schmidt <fschmidt@gmail.com>
parents:
21
diff
changeset
|
60 textarea { |
|
66fd3784e60e
back to textarea for bbcode
Franklin Schmidt <fschmidt@gmail.com>
parents:
21
diff
changeset
|
61 width: 100%; |
|
66fd3784e60e
back to textarea for bbcode
Franklin Schmidt <fschmidt@gmail.com>
parents:
21
diff
changeset
|
62 xmax-width: 450px; |
|
66fd3784e60e
back to textarea for bbcode
Franklin Schmidt <fschmidt@gmail.com>
parents:
21
diff
changeset
|
63 height: 100px; |
|
66fd3784e60e
back to textarea for bbcode
Franklin Schmidt <fschmidt@gmail.com>
parents:
21
diff
changeset
|
64 } |
|
66fd3784e60e
back to textarea for bbcode
Franklin Schmidt <fschmidt@gmail.com>
parents:
21
diff
changeset
|
65 </style> |
| 15 | 66 <script> |
| 19 | 67 function getPostDiv(node) { |
| 68 do { | |
| 69 if( node.getAttribute('post') ) | |
| 70 return node; | |
| 71 } while( node = node.parentNode ); | |
| 72 } | |
| 73 | |
| 74 function cancelEdit(a) { | |
| 75 let postDiv = getPostDiv(a); | |
| 15 | 76 postDiv.querySelector('[output]').style.display = 'block'; |
| 77 postDiv.querySelector('[edit]').innerHTML = ''; | |
| 78 } | |
| 19 | 79 function saveEdit(a) { |
| 80 let postDiv = getPostDiv(a); | |
| 81 let post = postDiv.getAttribute('post'); | |
|
25
66fd3784e60e
back to textarea for bbcode
Franklin Schmidt <fschmidt@gmail.com>
parents:
21
diff
changeset
|
82 let text = postDiv.querySelector('textarea').value; |
| 15 | 83 let postData = 'post=' + post + '&text=' + encodeURIComponent(text); |
| 84 ajax("save_edit.js",postData); | |
| 85 } | |
| 16 | 86 |
| 87 function deletePost(span) { | |
| 88 span.innerHTML = document.querySelector('[hidden][delete]').innerHTML; | |
| 89 } | |
| 90 function deleteNo(span) { | |
| 91 span.innerHTML = document.querySelector('[hidden][undelete]').innerHTML; | |
| 92 } | |
| 93 function deleteYes(span) { | |
| 19 | 94 let post = getPostDiv(span).getAttribute('post'); |
| 16 | 95 ajax( '/delete.js?post=' + post ); |
| 96 } | |
| 18 | 97 |
| 98 function init() { | |
| 99 let spans = document.querySelectorAll('span[ago]'); | |
| 100 for( let i=0; i<spans.length; i++ ) { | |
| 101 let span = spans[i]; | |
| 102 let date = span.getAttribute('date'); | |
| 103 date = parseInt(date); | |
| 104 span.title = new Date(date).toLocaleString(); | |
| 105 } | |
| 106 } | |
| 15 | 107 </script> |
| 9 | 108 </head> |
| 18 | 109 <body onload="init()"> |
| 9 | 110 <% header() %> |
| 111 <div content> | |
| 112 <h1><%=subject_html%></h1> | |
| 16 | 113 <% for _, post in ipairs(posts) do |
| 114 if post.is_deleted then | |
| 115 continue | |
| 116 end | |
| 117 %> | |
| 9 | 118 <hr> |
| 15 | 119 <div post="<%=post.id%>"> |
| 18 | 120 <div author> |
| 121 <img src="/images/profile.png"> | |
| 122 <a href="/whatever"><%= post.author_name %></a> | |
| 123 <span ago date="<%=post.date%>"><% post.ago(now) %> ago</span> | |
| 124 </div> | |
| 15 | 125 <div output> |
| 126 <% bbcode_to_html(post.content) %> | |
| 127 <p> | |
| 128 <a href="/reply.html?parent=<%=post.id%>">reply</a> | |
| 16 | 129 <% if post.author_name == user_name then %> |
| 15 | 130 - <a href="javascript:ajax('/edit.js?post=<%=post.id%>')">edit</a> |
| 19 | 131 - <span delete><%deletePost()%></span> |
| 16 | 132 <% end %> |
| 15 | 133 </p> |
| 134 </div> | |
| 135 <div edit></div> | |
| 136 </div> | |
| 9 | 137 <% end %> |
| 138 </div> | |
| 139 <% footer() %> | |
| 16 | 140 <span hidden delete>Delete? <a href="javascript:" onclick="deleteYes(parentNode)">yes</a> / <a href="javascript:" onclick="deleteNo(parentNode)">no</a></span> |
| 141 <span hidden undelete><%deletePost()%></span> | |
| 19 | 142 <div hidden edit> |
|
25
66fd3784e60e
back to textarea for bbcode
Franklin Schmidt <fschmidt@gmail.com>
parents:
21
diff
changeset
|
143 <textarea></textarea> |
| 19 | 144 <p> |
| 145 <button onclick="saveEdit(this)">save</button> | |
| 146 <button onclick="cancelEdit(this)">cancel</button> | |
| 147 </p> | |
| 148 </div> | |
| 9 | 149 </body> |
| 150 </html> | |
| 151 <% | |
| 152 end |
