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
|
40
|
19 local notify_email = user.notify_email
|
0
|
20 Io.stdout = Http.response.text_writer()
|
|
21 %>
|
|
22 <!doctype html>
|
|
23 <html>
|
|
24 <head>
|
|
25 <% head() %>
|
20
|
26 <script>
|
|
27 'use strict';
|
|
28
|
40
|
29 let notifyEmail = <%= json_string(notify_email or "") %>;
|
|
30 let multiNotify = <%= user.multi_notify %>;
|
|
31
|
|
32 function showNotify() {
|
|
33 let span = document.querySelector('span[notify]');
|
|
34 span.textContent = notifyEmail ? `Send notifications to ${notifyEmail}` : 'No notifications'
|
|
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
|
20
|
57 function deleteUser() {
|
|
58 let dialog = document.querySelector('dialog[delete_user]');
|
|
59 openModal(dialog);
|
|
60 }
|
|
61
|
|
62 function doDeleteUser(el) {
|
|
63 closeModal(el);
|
|
64 ajax('delete_user.js');
|
|
65 }
|
40
|
66
|
|
67 function init() {
|
|
68 showNotify();
|
|
69 }
|
20
|
70 </script>
|
34
|
71 <style>
|
|
72 div[content] {
|
|
73 margin-left: auto;
|
|
74 margin-right: auto;
|
|
75 width: fit-content;
|
|
76 }
|
|
77 h1 {
|
|
78 text-align: center;
|
|
79 }
|
40
|
80 input[name=notify_email] {
|
|
81 width: 300px;
|
|
82 }
|
|
83 span[note] {
|
|
84 font-size: small;
|
|
85 }
|
34
|
86 </style>
|
0
|
87 </head>
|
|
88 <body>
|
|
89 <% header() %>
|
|
90 <div content>
|
3
|
91 <h1>Your Account</h1>
|
21
|
92 <p><a href="about.html">About Web Chat</a></p>
|
|
93 <p>Your URL: <%= base_url() %>/?with=<%=user.email%></p>
|
40
|
94 <p><span notify></span> <a href="javascript:editNotify()">Edit</a></p>
|
34
|
95 <p><a href="javascript:logout()">Logout</a></p>
|
20
|
96 <p><a href="javascript:deleteUser()">Delete account</a></p>
|
0
|
97 </div>
|
40
|
98 <dialog edit_notify>
|
|
99 <h2>Edit Notification</h2>
|
|
100 <form action="javascript:saveNotify()">
|
|
101 <p>
|
|
102 <label>Send notifications to</label><br>
|
|
103 <input type=email name=notify_email><br>
|
|
104 <span note>Leave blank for no notifications</span>
|
|
105 </p>
|
|
106 <p>
|
|
107 <label clickable>
|
|
108 <input type=radio name=multi_notify value=false>
|
|
109 Notify only for first message
|
|
110 </label><br>
|
|
111 <label clickable>
|
|
112 <input type=radio name=multi_notify value=true>
|
|
113 Notify for all messages
|
|
114 </label>
|
|
115 </p>
|
|
116 <div buttons>
|
|
117 <button type=button cancel onclick="closeModal(this)">Cancel</button>
|
|
118 <button type=submit go>Save</button>
|
|
119 </div>
|
|
120 </form>
|
|
121 </dialog>
|
20
|
122 <dialog delete_user>
|
|
123 <h2>Delete Account</h2>
|
|
124 <p>Are you sure that you want to delete your account?</p>
|
|
125 <div buttons>
|
|
126 <button cancel onclick="closeModal(this)">Cancel</button>
|
|
127 <button go onclick="doDeleteUser(this)">Delete</button>
|
|
128 </div>
|
|
129 </dialog>
|
40
|
130 <script> init(); </script>
|
0
|
131 </body>
|
|
132 </html>
|
|
133 <%
|
|
134 end
|