1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
|
/**
* JCHAT Web Client - JMAP-based Chat Application
*/
class JChatClient {
constructor() {
this.serverUrl = JChatConfig.API_BASE_URL;
this.session = null;
this.conversations = new Map();
this.messages = new Map();
this.currentConversationId = null;
this.userId = 'user1'; // Demo user
this.init();
}
async init() {
try {
await this.loadSession();
await this.loadConversations();
this.updateConnectionStatus('Connected', 'success');
// Set up polling for new messages (in production, use EventSource/WebSockets)
this.startPolling();
} catch (error) {
console.error('Failed to initialize client:', error);
this.updateConnectionStatus('Connection failed', 'error');
}
}
async loadSession() {
const response = await fetch(`${this.serverUrl}/jmap/session`);
if (!response.ok) {
throw new Error('Failed to load session');
}
this.session = await response.json();
console.log('Session loaded:', this.session);
}
async makeJMAPRequest(methodCalls) {
const request = {
using: ['urn:ietf:params:jmap:core', 'urn:ietf:params:jmap:chat'],
methodCalls: methodCalls
};
const response = await fetch(`${this.serverUrl}/jmap/api`, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify(request)
});
if (!response.ok) {
throw new Error(`JMAP request failed: ${response.status}`);
}
return await response.json();
}
async loadConversations() {
try {
// For demo, create a sample conversation if none exist
const queryResponse = await this.makeJMAPRequest([
['Conversation/query', { accountId: 'default' }, 'q1']
]);
const queryResult = queryResponse.methodResponses[0][1];
if (queryResult.ids.length === 0) {
// Create a demo conversation
await this.createDemoConversation();
return this.loadConversations();
}
// Load conversation details
const getResponse = await this.makeJMAPRequest([
['Conversation/get', {
accountId: 'default',
ids: queryResult.ids
}, 'g1']
]);
const conversations = getResponse.methodResponses[0][1].list;
this.conversations.clear();
conversations.forEach(conv => {
this.conversations.set(conv.id, conv);
});
this.renderConversations();
} catch (error) {
console.error('Failed to load conversations:', error);
this.showStatus('Failed to load conversations', 'error');
}
}
async createDemoConversation() {
try {
const response = await this.makeJMAPRequest([
['Conversation/set', {
accountId: 'default',
create: {
'demo1': {
title: 'Demo Conversation',
participantIds: [this.userId, 'user2']
}
}
}, 'c1']
]);
console.log('Demo conversation created:', response);
} catch (error) {
console.error('Failed to create demo conversation:', error);
}
}
async loadMessages(conversationId) {
try {
// Query messages for the conversation
const queryResponse = await this.makeJMAPRequest([
['Message/query', {
accountId: 'default',
filter: { inConversation: conversationId },
sort: [{ property: 'sentAt', isAscending: true }]
}, 'mq1']
]);
const messageIds = queryResponse.methodResponses[0][1].ids;
if (messageIds.length === 0) {
this.messages.set(conversationId, []);
this.renderMessages();
return;
}
// Get message details
const getResponse = await this.makeJMAPRequest([
['Message/get', {
accountId: 'default',
ids: messageIds
}, 'mg1']
]);
const messages = getResponse.methodResponses[0][1].list;
this.messages.set(conversationId, messages);
this.renderMessages();
} catch (error) {
console.error('Failed to load messages:', error);
this.showStatus('Failed to load messages', 'error');
}
}
renderConversations() {
const container = document.getElementById('conversations');
container.innerHTML = '';
this.conversations.forEach(conv => {
const div = document.createElement('div');
div.className = 'conversation';
div.onclick = () => this.selectConversation(conv.id);
if (conv.id === this.currentConversationId) {
div.classList.add('active');
}
div.innerHTML = `
<div class="conversation-title">${conv.title || 'Untitled Conversation'}</div>
<div class="conversation-preview">
${conv.lastMessageAt ? `Last: ${new Date(conv.lastMessageAt).toLocaleTimeString()}` : 'No messages'}
</div>
`;
container.appendChild(div);
});
}
renderMessages() {
const container = document.getElementById('messages');
const messages = this.messages.get(this.currentConversationId) || [];
if (messages.length === 0) {
container.innerHTML = `
<div class="empty-state">
<h3>No messages yet</h3>
<p>Start the conversation by sending a message</p>
</div>
`;
return;
}
container.innerHTML = '';
messages.forEach(msg => {
const div = document.createElement('div');
div.className = 'message';
if (msg.senderId === this.userId) {
div.classList.add('sent');
}
const sentTime = new Date(msg.sentAt).toLocaleTimeString();
div.innerHTML = `
<div class="message-header">${sentTime}</div>
<div class="message-body">${this.escapeHtml(msg.body)}</div>
`;
container.appendChild(div);
});
// Scroll to bottom
container.scrollTop = container.scrollHeight;
}
async selectConversation(conversationId) {
this.currentConversationId = conversationId;
const conversation = this.conversations.get(conversationId);
// Update UI
document.getElementById('conversationTitle').textContent = conversation.title || 'Untitled Conversation';
document.getElementById('compose').style.display = 'flex';
// Re-render conversations to show selection
this.renderConversations();
// Load and render messages
await this.loadMessages(conversationId);
}
async sendMessage() {
const input = document.getElementById('messageInput');
const message = input.value.trim();
if (!message || !this.currentConversationId) {
return;
}
try {
const response = await this.makeJMAPRequest([
['Message/set', {
accountId: 'default',
create: {
'temp1': {
conversationId: this.currentConversationId,
body: message,
senderId: this.userId
}
}
}, 'm1']
]);
console.log('Message sent:', response);
// Clear input
input.value = '';
// Reload messages
await this.loadMessages(this.currentConversationId);
await this.loadConversations(); // Update conversation preview
} catch (error) {
console.error('Failed to send message:', error);
this.showStatus('Failed to send message', 'error');
}
}
async createNewConversation() {
const title = prompt('Enter conversation title:');
if (!title) return;
try {
const response = await this.makeJMAPRequest([
['Conversation/set', {
accountId: 'default',
create: {
'new1': {
title: title,
participantIds: [this.userId]
}
}
}, 'nc1']
]);
console.log('New conversation created:', response);
await this.loadConversations();
} catch (error) {
console.error('Failed to create conversation:', error);
this.showStatus('Failed to create conversation', 'error');
}
}
startPolling() {
// Simple polling for demo - in production use EventSource or WebSockets
setInterval(async () => {
if (this.currentConversationId) {
await this.loadMessages(this.currentConversationId);
}
}, 5000); // Poll every 5 seconds
}
updateConnectionStatus(text, type) {
const statusElement = document.getElementById('connectionStatus');
statusElement.textContent = text;
statusElement.className = type;
}
showStatus(message, type) {
// Remove existing status
const existing = document.querySelector('.status');
if (existing) {
existing.remove();
}
// Create new status
const status = document.createElement('div');
status.className = `status ${type}`;
status.textContent = message;
document.body.appendChild(status);
// Auto-remove after 3 seconds
setTimeout(() => {
if (status.parentNode) {
status.remove();
}
}, 3000);
}
escapeHtml(text) {
const div = document.createElement('div');
div.textContent = text;
return div.innerHTML;
}
}
// Global functions for HTML event handlers
window.jchatClient = new JChatClient();
window.sendMessage = () => {
window.jchatClient.sendMessage();
};
window.createNewConversation = () => {
window.jchatClient.createNewConversation();
};
window.handleKeyPress = (event) => {
if (event.key === 'Enter') {
window.jchatClient.sendMessage();
}
};
|