0
|
1 local Luan = require "luan:Luan.luan"
|
|
2 local error = Luan.error
|
40
|
3 local Parsers = require "luan:Parsers.luan"
|
|
4 local json_string = Parsers.json_string or error()
|
46
|
5 local Html = require "luan:Html.luan"
|
|
6 local html_encode = Html.encode or error()
|
0
|
7 local Io = require "luan:Io.luan"
|
|
8 local Http = require "luan:http/Http.luan"
|
|
9 local Shared = require "site:/lib/Shared.luan"
|
|
10 local head = Shared.head or error()
|
|
11 local header = Shared.header or error()
|
5
|
12 local Utils = require "site:/lib/Utils.luan"
|
|
13 local base_url = Utils.base_url or error()
|
|
14 local User = require "site:/lib/User.luan"
|
|
15 local current_user = User.current_required or error()
|
0
|
16
|
|
17
|
|
18 return function()
|
5
|
19 local user = current_user()
|
|
20 if user == nil then return end
|
0
|
21 Io.stdout = Http.response.text_writer()
|
|
22 %>
|
|
23 <!doctype html>
|
|
24 <html>
|
|
25 <head>
|
|
26 <% head() %>
|
20
|
27 <script>
|
|
28 'use strict';
|
|
29
|
46
|
30 let email = <%= json_string(user.email) %>;
|
|
31 let username = <%= json_string(user.name) or "" %>;
|
41
|
32 let notifyEmail = <%= json_string(user.notify_email or "") %>;
|
40
|
33 let multiNotify = <%= user.multi_notify %>;
|
41
|
34 let voice = <%= json_string(user.voice_url or "") %>;
|
40
|
35
|
46
|
36 function showUsername() {
|
|
37 let span = document.querySelector('span[username]');
|
|
38 span.textContent = username || email;
|
|
39 }
|
|
40
|
|
41 function editUsername() {
|
|
42 let dialog = document.querySelector('dialog[edit_username]');
|
|
43 let input = dialog.querySelector('input[name=username]');
|
|
44 input.value = username;
|
|
45 openModal(dialog);
|
|
46 }
|
|
47
|
|
48 function saveUsername() {
|
|
49 let dialog = document.querySelector('dialog[edit_username]');
|
|
50 let input = dialog.querySelector('input[name=username]');
|
|
51 username = input.value;
|
|
52 closeModal(input);
|
|
53 showUsername();
|
|
54 ajax(`save_username.js?username=${encodeURIComponent(username)}`);
|
|
55 }
|
|
56
|
40
|
57 function showNotify() {
|
|
58 let span = document.querySelector('span[notify]');
|
41
|
59 span.textContent = notifyEmail ? `Send notifications to ${notifyEmail}` : 'No notifications';
|
40
|
60 }
|
|
61
|
|
62 function editNotify() {
|
|
63 let dialog = document.querySelector('dialog[edit_notify]');
|
|
64 let input = dialog.querySelector('input[name=notify_email]');
|
|
65 input.value = notifyEmail;
|
|
66 let radio = dialog.querySelector(`input[type=radio][value=${multiNotify}]`);
|
|
67 radio.checked = true;
|
|
68 openModal(dialog);
|
|
69 }
|
|
70
|
|
71 function saveNotify() {
|
|
72 let dialog = document.querySelector('dialog[edit_notify]');
|
|
73 let input = dialog.querySelector('input[name=notify_email]');
|
|
74 notifyEmail = input.value;
|
|
75 let radio = dialog.querySelector('input[type=radio]:checked');
|
|
76 multiNotify = radio.value === 'true';
|
|
77 closeModal(input);
|
|
78 showNotify();
|
|
79 ajax(`save_notify.js?email=${encodeURIComponent(notifyEmail)}&multi=${multiNotify}`);
|
|
80 }
|
|
81
|
41
|
82 function showVoice() {
|
|
83 let span = document.querySelector('span[voice]');
|
|
84 span.textContent = voice ? `Your voice URL: ${voice}` : 'No voice URL';
|
|
85 }
|
|
86
|
|
87 function editVoice() {
|
|
88 let dialog = document.querySelector('dialog[edit_voice]');
|
|
89 let input = dialog.querySelector('input[name=voice]');
|
|
90 input.value = voice;
|
|
91 openModal(dialog);
|
|
92 }
|
|
93
|
|
94 function saveVoice() {
|
|
95 let dialog = document.querySelector('dialog[edit_voice]');
|
|
96 let input = dialog.querySelector('input[name=voice]');
|
|
97 voice = input.value;
|
|
98 closeModal(input);
|
|
99 showVoice();
|
|
100 ajax(`save_voice.js?url=${encodeURIComponent(voice)}`);
|
|
101 }
|
|
102
|
20
|
103 function deleteUser() {
|
|
104 let dialog = document.querySelector('dialog[delete_user]');
|
|
105 openModal(dialog);
|
|
106 }
|
|
107
|
|
108 function doDeleteUser(el) {
|
|
109 closeModal(el);
|
|
110 ajax('delete_user.js');
|
|
111 }
|
40
|
112
|
|
113 function init() {
|
46
|
114 showUsername();
|
40
|
115 showNotify();
|
41
|
116 showVoice();
|
40
|
117 }
|
20
|
118 </script>
|
34
|
119 <style>
|
|
120 h1 {
|
|
121 text-align: center;
|
|
122 }
|
46
|
123 input[name=username],
|
40
|
124 input[name=notify_email] {
|
|
125 width: 300px;
|
41
|
126 max-width: 100%;
|
|
127 }
|
|
128 input[name=voice] {
|
|
129 width: 500px;
|
|
130 max-width: 100%;
|
40
|
131 }
|
|
132 span[note] {
|
|
133 font-size: small;
|
|
134 }
|
34
|
135 </style>
|
0
|
136 </head>
|
|
137 <body>
|
|
138 <% header() %>
|
|
139 <div content>
|
3
|
140 <h1>Your Account</h1>
|
51
|
141 <p><a href="about.html">About Luan Chat</a></p>
|
21
|
142 <p>Your URL: <%= base_url() %>/?with=<%=user.email%></p>
|
46
|
143 <p>Your username: <span username></span> <a href="javascript:editUsername()">Edit</a></p>
|
40
|
144 <p><span notify></span> <a href="javascript:editNotify()">Edit</a></p>
|
41
|
145 <p><span voice></span> <a href="javascript:editVoice()">Edit</a></p>
|
34
|
146 <p><a href="javascript:logout()">Logout</a></p>
|
20
|
147 <p><a href="javascript:deleteUser()">Delete account</a></p>
|
0
|
148 </div>
|
46
|
149 <dialog edit_username>
|
|
150 <h2>Edit Username</h2>
|
|
151 <form action="javascript:saveUsername()">
|
|
152 <p>
|
|
153 <label>Username</label><br>
|
|
154 <input type=text name=username placeholder="<%=html_encode(user.email)%>"><br>
|
|
155 </p>
|
|
156 <div buttons>
|
|
157 <button type=button cancel onclick="closeModal(this)">Cancel</button>
|
|
158 <button type=submit go>Save</button>
|
|
159 </div>
|
|
160 </form>
|
|
161 </dialog>
|
40
|
162 <dialog edit_notify>
|
|
163 <h2>Edit Notification</h2>
|
|
164 <form action="javascript:saveNotify()">
|
|
165 <p>
|
|
166 <label>Send notifications to</label><br>
|
|
167 <input type=email name=notify_email><br>
|
|
168 <span note>Leave blank for no notifications</span>
|
|
169 </p>
|
|
170 <p>
|
|
171 <label clickable>
|
|
172 <input type=radio name=multi_notify value=false>
|
|
173 Notify only for first message
|
|
174 </label><br>
|
|
175 <label clickable>
|
|
176 <input type=radio name=multi_notify value=true>
|
|
177 Notify for all messages
|
|
178 </label>
|
|
179 </p>
|
|
180 <div buttons>
|
|
181 <button type=button cancel onclick="closeModal(this)">Cancel</button>
|
|
182 <button type=submit go>Save</button>
|
|
183 </div>
|
|
184 </form>
|
|
185 </dialog>
|
41
|
186 <dialog edit_voice>
|
|
187 <h2>Edit Voice URL</h2>
|
|
188 <form action="javascript:saveVoice()">
|
|
189 <p>
|
|
190 <label>URL for receiving voice calls</label><br>
|
|
191 <input type=url name=voice><br>
|
|
192 <span note>Leave blank for no voice URL</span>
|
|
193 </p>
|
|
194 <div buttons>
|
|
195 <button type=button cancel onclick="closeModal(this)">Cancel</button>
|
|
196 <button type=submit go>Save</button>
|
|
197 </div>
|
|
198 </form>
|
|
199 </dialog>
|
20
|
200 <dialog delete_user>
|
|
201 <h2>Delete Account</h2>
|
|
202 <p>Are you sure that you want to delete your account?</p>
|
|
203 <div buttons>
|
|
204 <button cancel onclick="closeModal(this)">Cancel</button>
|
|
205 <button go onclick="doDeleteUser(this)">Delete</button>
|
|
206 </div>
|
|
207 </dialog>
|
40
|
208 <script> init(); </script>
|
45
|
209 <!-- ID = <%=user.id%> -->
|
0
|
210 </body>
|
|
211 </html>
|
|
212 <%
|
|
213 end
|