Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Show a Not Found error when the DIDs or Rules search doesn't yield any results #493

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading