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