hisaruki commited on
Commit
f542108
·
1 Parent(s): 160a16b

エラー処理を整理

Browse files
Files changed (1) hide show
  1. gemini.js +74 -43
gemini.js CHANGED
@@ -292,9 +292,37 @@ function debugPrompt() {
292
  });
293
  }
294
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
295
  function fetchStream(ENDPOINT, payload) {
296
  const novelContent2 = document.getElementById('novelContent2');
297
- const requestButton = document.getElementById('requestButton');
298
  controller = new AbortController();
299
  const signal = controller.signal;
300
 
@@ -382,11 +410,11 @@ function fetchStream(ENDPOINT, payload) {
382
  }).catch(error => {
383
  if (error.name === 'AbortError') {
384
  console.log('フェッチがユーザーによって中止されました');
 
385
  } else {
386
  console.error('ストリーム読み取りエラー:', error);
 
387
  }
388
- document.getElementById('stopButton').classList.add('d-none');
389
- requestButton.disabled = false;
390
  });
391
  }
392
 
@@ -395,29 +423,31 @@ function fetchStream(ENDPOINT, payload) {
395
  .catch(error => {
396
  if (error.name === 'AbortError') {
397
  console.log('フェッチがユーザーよって中止されました');
 
398
  } else {
399
  console.error('フェッチエラー:', error);
 
400
  }
401
- requestButton.disabled = false;
402
  });
403
  }
404
 
405
- function fetchNonStream(ENDPOINT, payload) {
406
  const novelContent2 = document.getElementById('novelContent2');
407
- fetch(ENDPOINT, payload)
408
- .then(response => response.json())
409
- .then(data => {
410
- if (data && data.candidates && data.candidates[0].content && data.candidates[0].content.parts && data.candidates[0].content.parts[0].text) {
411
- novelContent2.value += data.candidates[0].content.parts[0].text;
412
- novelContent2.scrollTop = novelContent2.scrollHeight;
413
- }
414
- })
415
- .catch(error => {
416
- console.error('エラー:', error);
417
- })
418
- .finally(() => {
419
- document.getElementById('requestButton').disabled = false;
420
- });
 
421
  }
422
 
423
  function createOpenAIPayload() {
@@ -464,7 +494,7 @@ function createOpenAIPayload() {
464
 
465
  function fetchOpenAIStream(ENDPOINT, payload) {
466
  const novelContent2 = document.getElementById('novelContent2');
467
- const requestButton = document.getElementById('requestButton');
468
  controller = new AbortController();
469
  const signal = controller.signal;
470
 
@@ -520,11 +550,11 @@ function fetchOpenAIStream(ENDPOINT, payload) {
520
  }).catch(error => {
521
  if (error.name === 'AbortError') {
522
  console.log('フェッチがユーザーによって中止されました');
 
523
  } else {
524
  console.error('ストリーム読み取りエラー:', error);
 
525
  }
526
- document.getElementById('stopButton').classList.add('d-none');
527
- requestButton.disabled = false;
528
  });
529
  }
530
 
@@ -533,33 +563,35 @@ function fetchOpenAIStream(ENDPOINT, payload) {
533
  .catch(error => {
534
  if (error.name === 'AbortError') {
535
  console.log('フェッチがユーザーよって中止されました');
 
536
  } else {
537
  console.error('フェッチエラー:', error);
 
538
  }
539
- requestButton.disabled = false;
540
  });
541
  }
542
 
543
- function fetchOpenAINonStream(ENDPOINT, payload) {
544
  const novelContent2 = document.getElementById('novelContent2');
545
- fetch(ENDPOINT, {
546
- ...payload,
547
- mode: 'cors', // CORSモードを追加
548
- credentials: 'same-origin' // 必要に応じて認証情報を含める
549
- })
550
- .then(response => response.json())
551
- .then(data => {
552
- if (data && data.choices && data.choices[0].message && data.choices[0].message.content) {
553
- novelContent2.value += data.choices[0].message.content;
554
- novelContent2.scrollTop = novelContent2.scrollHeight;
555
- }
556
- })
557
- .catch(error => {
558
- console.error('エラー:', error);
559
- })
560
- .finally(() => {
561
- document.getElementById('requestButton').disabled = false;
562
  });
 
 
 
 
 
 
 
 
 
 
 
 
563
  }
564
 
565
  async function tokenCount() {
@@ -693,8 +725,7 @@ function stopGeneration() {
693
  controller.abort();
694
  controller = null;
695
  }
696
- document.getElementById('stopButton').classList.add('d-none');
697
- document.getElementById('requestButton').disabled = false;
698
  }
699
 
700
  // 新しい関数を追加
 
292
  });
293
  }
294
 
295
+ // 新しい関数を追加
296
+ function updateRequestButtonState(state, flashClass = null) {
297
+ const requestButton = document.getElementById('requestButton');
298
+ const stopButton = document.getElementById('stopButton');
299
+
300
+ switch (state) {
301
+ case 'generating':
302
+ requestButton.disabled = true;
303
+ stopButton.classList.remove('d-none');
304
+ break;
305
+ case 'idle':
306
+ requestButton.disabled = false;
307
+ stopButton.classList.add('d-none');
308
+ break;
309
+ case 'error':
310
+ requestButton.disabled = false;
311
+ stopButton.classList.add('d-none');
312
+ break;
313
+ }
314
+
315
+ if (flashClass) {
316
+ requestButton.classList.add(flashClass);
317
+ setTimeout(() => {
318
+ requestButton.classList.remove(flashClass);
319
+ }, 2000);
320
+ }
321
+ }
322
+
323
  function fetchStream(ENDPOINT, payload) {
324
  const novelContent2 = document.getElementById('novelContent2');
325
+ updateRequestButtonState('generating');
326
  controller = new AbortController();
327
  const signal = controller.signal;
328
 
 
410
  }).catch(error => {
411
  if (error.name === 'AbortError') {
412
  console.log('フェッチがユーザーによって中止されました');
413
+ updateRequestButtonState('idle');
414
  } else {
415
  console.error('ストリーム読み取りエラー:', error);
416
+ updateRequestButtonState('error', 'red-flash-bg');
417
  }
 
 
418
  });
419
  }
420
 
 
423
  .catch(error => {
424
  if (error.name === 'AbortError') {
425
  console.log('フェッチがユーザーよって中止されました');
426
+ updateRequestButtonState('idle');
427
  } else {
428
  console.error('フェッチエラー:', error);
429
+ updateRequestButtonState('error', 'red-flash-bg');
430
  }
 
431
  });
432
  }
433
 
434
+ async function fetchNonStream(ENDPOINT, payload) {
435
  const novelContent2 = document.getElementById('novelContent2');
436
+ updateRequestButtonState('generating');
437
+ try {
438
+ const response = await fetch(ENDPOINT, payload);
439
+ const data = await response.json();
440
+ if (data && data.candidates && data.candidates[0].content && data.candidates[0].content.parts && data.candidates[0].content.parts[0].text) {
441
+ novelContent2.value += data.candidates[0].content.parts[0].text;
442
+ novelContent2.scrollTop = novelContent2.scrollHeight;
443
+ updateRequestButtonState('idle', 'green-flash-bg');
444
+ } else {
445
+ throw new Error('予期しないレスポンス形式');
446
+ }
447
+ } catch (error) {
448
+ console.error('エラー:', error);
449
+ updateRequestButtonState('error', 'red-flash-bg');
450
+ }
451
  }
452
 
453
  function createOpenAIPayload() {
 
494
 
495
  function fetchOpenAIStream(ENDPOINT, payload) {
496
  const novelContent2 = document.getElementById('novelContent2');
497
+ updateRequestButtonState('generating');
498
  controller = new AbortController();
499
  const signal = controller.signal;
500
 
 
550
  }).catch(error => {
551
  if (error.name === 'AbortError') {
552
  console.log('フェッチがユーザーによって中止されました');
553
+ updateRequestButtonState('idle');
554
  } else {
555
  console.error('ストリーム読み取りエラー:', error);
556
+ updateRequestButtonState('error', 'red-flash-bg');
557
  }
 
 
558
  });
559
  }
560
 
 
563
  .catch(error => {
564
  if (error.name === 'AbortError') {
565
  console.log('フェッチがユーザーよって中止されました');
566
+ updateRequestButtonState('idle');
567
  } else {
568
  console.error('フェッチエラー:', error);
569
+ updateRequestButtonState('error', 'red-flash-bg');
570
  }
 
571
  });
572
  }
573
 
574
+ async function fetchOpenAINonStream(ENDPOINT, payload) {
575
  const novelContent2 = document.getElementById('novelContent2');
576
+ updateRequestButtonState('generating');
577
+ try {
578
+ const response = await fetch(ENDPOINT, {
579
+ ...payload,
580
+ mode: 'cors',
581
+ credentials: 'same-origin'
 
 
 
 
 
 
 
 
 
 
 
582
  });
583
+ const data = await response.json();
584
+ if (data && data.choices && data.choices[0].message && data.choices[0].message.content) {
585
+ novelContent2.value += data.choices[0].message.content;
586
+ novelContent2.scrollTop = novelContent2.scrollHeight;
587
+ updateRequestButtonState('idle', 'green-flash-bg');
588
+ } else {
589
+ throw new Error('予期しないレスポンス形式');
590
+ }
591
+ } catch (error) {
592
+ console.error('エラー:', error);
593
+ updateRequestButtonState('error', 'red-flash-bg');
594
+ }
595
  }
596
 
597
  async function tokenCount() {
 
725
  controller.abort();
726
  controller = null;
727
  }
728
+ updateRequestButtonState('idle');
 
729
  }
730
 
731
  // 新しい関数を追加