File size: 18,196 Bytes
ca51841
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
import { store } from '../store.js';
import { formatCompactTokenCount } from '../api.js';
import { supportsAudio, supportsImage, supportsVideo } from '../capabilities.js';
import { icon } from '../icons.js';

const VIDEO_SIZE_LIMIT_MB = 50;

export class InputBar {
  constructor() {
    this.el = null;
    this._pendingImage = null; // { dataUrl, file }
    this._pendingVideo = null; // { dataUrl, file }
    this._pendingAudio = null; // { file }
    this._currentModel = '';
    this._sending = false;
  }

  render() {
    const el = document.createElement('div');
    el.className = 'border-t border-[var(--c-bd)] bg-[var(--c-bg)]';
    el.innerHTML = this._template();
    this.el = el;
    this._bindEvents();
    return this.el;
  }

  _template() {
    const imageSupported = supportsImage(this._currentModel, store.getModelCapabilities());
    const videoSupported = supportsVideo(this._currentModel, store.getModelCapabilities());
    const audioSupported = supportsAudio(this._currentModel, store.getModelCapabilities());
    const mediaSupported = imageSupported || videoSupported;
    const mediaAccept = [imageSupported && 'image/*', videoSupported && 'video/*'].filter(Boolean).join(',') || 'image/*,video/*';
    const mediaTitle = mediaSupported
      ? `Attach ${[imageSupported && 'image', videoSupported && 'video'].filter(Boolean).join(' / ')} (or paste)`
      : 'Vision not enabled for this model';
    return `
      <div class="px-4 pb-4 pt-3 max-w-4xl mx-auto w-full">
        <input id="media-file-input" type="file" accept="${mediaAccept}" class="hidden" aria-label="Attach image or video" />
        <input id="audio-file-input" type="file" accept="audio/*,.mp3,.wav,.m4a,.aac,.ogg,.flac,.webm" class="hidden" aria-label="Attach audio" />
        <div class="flex flex-col bg-[var(--c-card)] border border-[var(--c-bd)] rounded-2xl focus-within:border-[var(--c-bd-hi)] transition-all duration-200 shadow-lg shadow-black/10">

          <div id="image-preview-area" class="hidden px-3 pt-3 pb-1">
            <div class="relative inline-block">
              <img id="image-preview-thumb" src="" alt="Attached image"
                class="max-h-24 max-w-[200px] rounded-xl border border-[var(--c-bd)] object-cover" />
              <button id="remove-image-btn"
                class="absolute -top-1.5 -right-1.5 bg-[var(--c-card)] border border-[var(--c-bd)] rounded-full w-5 h-5 flex items-center justify-center text-[var(--c-tx3)] hover:text-[var(--c-tx)] transition-colors"
                aria-label="Remove image">
                <svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/></svg>
              </button>
            </div>
          </div>

          <div id="video-preview-area" class="hidden px-3 pt-3 pb-1">
            <div class="relative inline-block">
              <video id="video-preview-player" src="" controls muted playsinline
                class="max-h-36 max-w-xs rounded-xl border border-[var(--c-bd)] bg-black"></video>
              <button id="remove-video-btn"
                class="absolute -top-1.5 -right-1.5 bg-[var(--c-card)] border border-[var(--c-bd)] rounded-full w-5 h-5 flex items-center justify-center text-[var(--c-tx3)] hover:text-[var(--c-tx)] transition-colors"
                aria-label="Remove video">
                <svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/></svg>
              </button>
            </div>
          </div>

          <div id="audio-preview-area" class="hidden px-3 pt-3 pb-1">
            <div class="flex items-center gap-2 rounded-xl border border-[var(--c-bd)] bg-[var(--c-ho)] px-3 py-2">
              <div class="flex h-8 w-8 items-center justify-center rounded-lg bg-[var(--c-hi)] text-[var(--c-tx3)]">
                ${icon('audio')}
              </div>
              <div class="min-w-0 flex-1">
                <div id="audio-file-name" class="truncate text-[13px] text-[var(--c-tx2)]"></div>
                <div id="audio-mode-label" class="text-[11px] text-[var(--c-tx3)]">Audio will be transcribed before text processing</div>
              </div>
              <button id="remove-audio-btn"
                class="flex h-7 w-7 items-center justify-center rounded-full border border-[var(--c-bd)] bg-[var(--c-ho)] text-[var(--c-tx3)] transition-colors hover:text-[var(--c-tx2)]"
                aria-label="Remove audio"
                type="button">
                <svg xmlns="http://www.w3.org/2000/svg" width="10" height="10" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="6" x2="6" y2="18"/><line x1="6" y1="6" x2="18" y2="18"/></svg>
              </button>
            </div>
          </div>

          <textarea
            id="message-input"
            class="bg-transparent px-4 pt-3 pb-1 text-[13.5px] text-[var(--c-tx)] placeholder-[var(--c-txph)] focus:outline-none leading-relaxed resize-none w-full"
            placeholder="Type a message…"
            rows="1"
            style="max-height: 144px; overflow-y: auto;"
            aria-label="Message input"
          ></textarea>

          <div class="flex items-center justify-between px-2 pb-2 pt-1 gap-2">
            <div class="flex items-center gap-0.5">
              <button id="media-upload-btn"
                class="flex items-center justify-center w-8 h-8 rounded-lg transition-all ${mediaSupported ? 'text-[var(--c-tx3)] hover:text-[var(--c-tx2)] hover:bg-[var(--c-hi)]' : 'text-[var(--c-tx3)] opacity-40 cursor-not-allowed'}"
                ${mediaSupported ? '' : 'disabled'}
                aria-label="Attach image or video"
                title="${mediaTitle}">
                ${icon('image')}
              </button>
              <button id="audio-upload-btn"
                class="flex items-center justify-center w-8 h-8 rounded-lg transition-all ${audioSupported ? 'text-[var(--c-tx3)] hover:text-[var(--c-tx2)] hover:bg-[var(--c-hi)]' : 'text-[var(--c-tx3)] opacity-40 cursor-not-allowed'}"
                ${audioSupported ? '' : 'disabled'}
                aria-label="Attach audio"
                title="${audioSupported ? 'Attach audio for transcription or translation' : 'Audio not enabled for this model'}">
                ${icon('audio')}
              </button>
            </div>
            <span id="context-info"
              class="ml-auto text-right text-[11px] font-mono tabular-nums text-[var(--c-tx3)] transition-colors select-none"
              title="Estimated context tokens / configured window">ctx 0</span>
            <button id="send-btn"
              class="flex items-center justify-center w-8 h-8 rounded-xl transition-all hover:bg-[var(--c-hi)]"
              aria-label="Send message"
              title="Send (Enter) · Shift+Enter for new line">
              ${icon('send')}
            </button>
          </div>

        </div>
      </div>
    `;
  }

  _bindEvents() {
    const textarea = this.el.querySelector('#message-input');
    const sendBtn = this.el.querySelector('#send-btn');
    const mediaBtn = this.el.querySelector('#media-upload-btn');
    const audioBtn = this.el.querySelector('#audio-upload-btn');
    const fileInput = this.el.querySelector('#media-file-input');
    const audioInput = this.el.querySelector('#audio-file-input');
    const removeImageBtn = this.el.querySelector('#remove-image-btn');
    const removeVideoBtn = this.el.querySelector('#remove-video-btn');
    const removeAudioBtn = this.el.querySelector('#remove-audio-btn');

    // Auto-resize textarea
    textarea.addEventListener('input', () => this._autoResize(textarea));

    // Enter sends; Shift+Enter inserts newline (default behaviour)
    textarea.addEventListener('keydown', (e) => {
      if (e.key === 'Enter' && !e.shiftKey) {
        e.preventDefault();
        this._submit();
      }
    });

    sendBtn.addEventListener('click', () => this._submit());

    // Media (image/video) upload
    mediaBtn?.addEventListener('click', () => {
      if (!mediaBtn.disabled) fileInput.click();
    });
    audioBtn?.addEventListener('click', () => {
      if (!audioBtn.disabled) audioInput.click();
    });

    fileInput.addEventListener('change', (e) => {
      const file = e.target.files?.[0];
      if (file) this._handleMediaFile(file);
      fileInput.value = '';
    });
    audioInput.addEventListener('change', (e) => {
      const file = e.target.files?.[0];
      if (file) this._handleAudioFile(file);
      audioInput.value = '';
    });

    removeImageBtn.addEventListener('click', () => this._clearImage());
    removeVideoBtn?.addEventListener('click', () => this._clearVideo());
    removeAudioBtn?.addEventListener('click', () => this._clearAudio());

    // Paste media support
    textarea.addEventListener('paste', (e) => this._handlePaste(e));

    // Model change
    document.addEventListener('model:changed', (e) => {
      this.setModel(e.detail.model);
    });
    document.addEventListener('caps:changed', () => {
      this._updateAttachmentButtons();
    });
  }

  _autoResize(textarea) {
    textarea.style.height = 'auto';
    const scrollH = textarea.scrollHeight;
    const maxH = 144; // max-height ~6 rows
    textarea.style.height = Math.min(scrollH, maxH) + 'px';
  }

  async _handleImageFile(file) {
    if (!file.type.startsWith('image/')) return;
    if (this._pendingAudio) this._clearAudio();
    if (this._pendingVideo) this._clearVideo();
    const dataUrl = await this._fileToDataUrl(file);
    this._pendingImage = { dataUrl, file };
    this._showImagePreview(dataUrl);
  }

  async _handleVideoFile(file) {
    if (!file.type.startsWith('video/')) return;
    const sizeMB = file.size / (1024 * 1024);
    if (sizeMB > VIDEO_SIZE_LIMIT_MB) {
      alert(`Video file is too large (${sizeMB.toFixed(1)} MB). Please keep it under ${VIDEO_SIZE_LIMIT_MB} MB.`);
      return;
    }
    if (this._pendingAudio) this._clearAudio();
    if (this._pendingImage) this._clearImage();
    const dataUrl = await this._fileToDataUrl(file);
    this._pendingVideo = { dataUrl, file };
    this._showVideoPreview(dataUrl);
  }

  _handleMediaFile(file) {
    if (file.type.startsWith('image/')) {
      this._handleImageFile(file);
    } else if (file.type.startsWith('video/')) {
      this._handleVideoFile(file);
    }
  }

  _handleAudioFile(file) {
    if (!String(file?.type || '').startsWith('audio/') && !/\.(mp3|wav|m4a|aac|ogg|flac|webm)$/i.test(file?.name || '')) return;
    if (this._pendingImage) this._clearImage();
    this._pendingAudio = { file };
    this._showAudioPreview();
  }

  _fileToDataUrl(file) {
    return new Promise((resolve, reject) => {
      const reader = new FileReader();
      reader.onload = (e) => resolve(e.target.result);
      reader.onerror = reject;
      reader.readAsDataURL(file);
    });
  }

  _showImagePreview(dataUrl) {
    const previewArea = this.el.querySelector('#image-preview-area');
    const thumb = this.el.querySelector('#image-preview-thumb');
    thumb.src = dataUrl;
    previewArea.classList.remove('hidden');
  }

  _clearImage() {
    this._pendingImage = null;
    const previewArea = this.el.querySelector('#image-preview-area');
    const thumb = this.el.querySelector('#image-preview-thumb');
    thumb.src = '';
    previewArea.classList.add('hidden');
  }

  _showVideoPreview(dataUrl) {
    const previewArea = this.el.querySelector('#video-preview-area');
    const player = this.el.querySelector('#video-preview-player');
    player.src = dataUrl;
    previewArea.classList.remove('hidden');
  }

  _clearVideo() {
    this._pendingVideo = null;
    const previewArea = this.el.querySelector('#video-preview-area');
    const player = this.el.querySelector('#video-preview-player');
    if (player) { player.pause(); player.src = ''; }
    previewArea?.classList.add('hidden');
  }

  _showAudioPreview() {
    const previewArea = this.el.querySelector('#audio-preview-area');
    const nameEl = this.el.querySelector('#audio-file-name');
    if (!previewArea || !this._pendingAudio) return;
    nameEl.textContent = this._pendingAudio.file?.name || 'audio';
    previewArea.classList.remove('hidden');
  }

  _clearAudio() {
    this._pendingAudio = null;
    const previewArea = this.el.querySelector('#audio-preview-area');
    const nameEl = this.el.querySelector('#audio-file-name');
    if (nameEl) nameEl.textContent = '';
    previewArea?.classList.add('hidden');
  }

  async _handlePaste(e) {
    const items = e.clipboardData?.items;
    if (!items) return;
    for (const item of items) {
      if (item.type.startsWith('image/')) {
        const imageSupported = supportsImage(this._currentModel, store.getModelCapabilities());
        if (!imageSupported) return;
        e.preventDefault();
        const file = item.getAsFile();
        if (file) await this._handleImageFile(file);
        break;
      }
      if (item.type.startsWith('video/')) {
        const videoSupported = supportsVideo(this._currentModel, store.getModelCapabilities());
        if (!videoSupported) return;
        e.preventDefault();
        const file = item.getAsFile();
        if (file) await this._handleVideoFile(file);
        break;
      }
      if (item.type.startsWith('audio/')) {
        const audioSupported = supportsAudio(this._currentModel, store.getModelCapabilities());
        if (!audioSupported) return;
        e.preventDefault();
        const file = item.getAsFile();
        if (file) this._handleAudioFile(file);
        break;
      }
    }
  }

  _submit() {
    if (this._sending) return;
    const textarea = this.el.querySelector('#message-input');
    const text = textarea.value.trim();
    if (!text && !this._pendingImage && !this._pendingVideo && !this._pendingAudio) return;

    const image = this._pendingImage;
    const video = this._pendingVideo;
    const audio = this._pendingAudio;
    this._clearImage();
    this._clearVideo();
    this._clearAudio();
    textarea.value = '';
    this._autoResize(textarea);

    document.dispatchEvent(new CustomEvent('inputbar:send', {
      detail: { text, image, video, audio },
    }));
  }

  setSending(sending) {
    this._sending = sending;
    const sendBtn = this.el.querySelector('#send-btn');
    const textarea = this.el.querySelector('#message-input');
    if (sendBtn) {
      sendBtn.disabled = sending;
      sendBtn.className = sending
        ? 'flex items-center justify-center w-8 h-8 rounded-xl text-[var(--c-tx3)] cursor-not-allowed transition-all'
        : 'flex items-center justify-center w-8 h-8 rounded-xl transition-all hover:bg-[var(--c-hi)]';
      sendBtn.innerHTML = icon(sending ? 'sendMuted' : 'send');
    }
    if (textarea) textarea.disabled = sending;
  }

  setContextInfo(currentTokens, maxTokens, warnTokens = maxTokens) {
    const el = this.el.querySelector('#context-info');
    if (!el) return;
    el.textContent = `ctx ${formatCompactTokenCount(currentTokens)}/${formatCompactTokenCount(maxTokens)}`;
    el.title = `Estimated context ${Math.round(currentTokens)} / ${Math.round(maxTokens)} tokens`;
    const warning = currentTokens >= warnTokens;
    el.className = warning
      ? 'ml-auto text-right text-[11px] font-mono tabular-nums text-amber-400 transition-colors select-none'
      : 'ml-auto text-right text-[11px] font-mono tabular-nums text-[var(--c-tx3)] transition-colors select-none';
  }

  setKvCount(current, max) {
    this.setContextInfo(current, max, Math.floor(max * 0.8));
  }

  setModel(modelId) {
    this._currentModel = modelId;
    this._updateAttachmentButtons();
  }

  _updateAttachmentButtons() {
    const mediaBtn = this.el.querySelector('#media-upload-btn');
    const audioBtn = this.el.querySelector('#audio-upload-btn');
    const fileInput = this.el.querySelector('#media-file-input');
    if (!mediaBtn || !audioBtn) return;
    const imageSupported = supportsImage(this._currentModel, store.getModelCapabilities());
    const videoSupported = supportsVideo(this._currentModel, store.getModelCapabilities());
    const audioSupported = supportsAudio(this._currentModel, store.getModelCapabilities());
    const mediaSupported = imageSupported || videoSupported;

    if (mediaSupported) {
      mediaBtn.disabled = false;
      mediaBtn.className = 'flex items-center justify-center w-8 h-8 rounded-lg transition-all text-[var(--c-tx3)] hover:text-[var(--c-tx2)] hover:bg-[var(--c-hi)]';
      const labels = [imageSupported && 'image', videoSupported && 'video'].filter(Boolean).join(' / ');
      mediaBtn.title = `Attach ${labels} (or paste)`;
      if (fileInput) {
        fileInput.accept = [imageSupported && 'image/*', videoSupported && 'video/*'].filter(Boolean).join(',');
      }
    } else {
      mediaBtn.disabled = true;
      mediaBtn.className = 'flex items-center justify-center w-8 h-8 rounded-lg transition-all text-[var(--c-tx3)] opacity-40 cursor-not-allowed';
      mediaBtn.title = 'Vision not enabled for this model';
      if (this._pendingImage) this._clearImage();
      if (this._pendingVideo) this._clearVideo();
    }

    if (audioSupported) {
      audioBtn.disabled = false;
      audioBtn.className = 'flex items-center justify-center w-8 h-8 rounded-lg transition-all text-[var(--c-tx3)] hover:text-[var(--c-tx2)] hover:bg-[var(--c-hi)]';
      audioBtn.title = 'Attach audio for transcription or translation';
    } else {
      audioBtn.disabled = true;
      audioBtn.className = 'flex items-center justify-center w-8 h-8 rounded-lg transition-all text-[var(--c-tx3)] opacity-40 cursor-not-allowed';
      audioBtn.title = 'Audio not enabled for this model';
      if (this._pendingAudio) this._clearAudio();
    }
  }

  focus() {
    this.el?.querySelector('#message-input')?.focus();
  }
}