Skip to content

Commit

Permalink
Produce an error when streaming doesn't yield any results
Browse files Browse the repository at this point in the history
  • Loading branch information
MytsV committed Oct 9, 2024
1 parent 56aedf1 commit 5de1d89
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion public/streamWorker.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
self.onmessage = async function (event) {
const {url, fetchOptions, updateDelay = 50, maxUpdateLength = 100} = event.data;
const buffer = [];
let foundEntries = false;

const postData = () => {
foundEntries = true;
// Remove the first {maxUpdateLength} or all elements from the buffer
const dataToSend = buffer.length > maxUpdateLength ? buffer.splice(0, maxUpdateLength) : buffer.splice(0);
self.postMessage({type: 'data', data: dataToSend});
Expand All @@ -17,7 +19,11 @@ self.onmessage = async function (event) {
const finalize = () => {
handleUpdate();
if (buffer.length === 0) {
self.postMessage({type: 'finish'});
if (foundEntries) {
self.postMessage({type: 'finish'});
} else {
handleError('not_found', 'No entries found.');
}
}
};

Expand Down

0 comments on commit 5de1d89

Please sign in to comment.