Add check for database query

This commit is contained in:
nthouliss 2022-04-04 11:30:50 +10:00
parent 1414080db6
commit 88c165d5ab

View File

@ -86,7 +86,7 @@ function ImportExportModal({
} }
} }
const toastMessage = <span>{message} <b>{text}</b></span> const toastMessage = <span>{message} <b>{text}</b></span>
addToast(toastMessage, {appearance: "warning", autoDismiss: true }); addToast(toastMessage, { appearance: "warning", autoDismiss: true });
} }
function openFileDialog() { function openFileDialog() {
@ -123,7 +123,7 @@ function ImportExportModal({
} catch (e) { } catch (e) {
setIsLoading(false); setIsLoading(false);
backgroundTaskRunningRef.current = false; backgroundTaskRunningRef.current = false;
if (e instanceof(Error)) { if (e instanceof (Error)) {
if (e.message.startsWith("Max buffer length exceeded")) { if (e.message.startsWith("Max buffer length exceeded")) {
setError( setError(
new Error( new Error(
@ -201,7 +201,9 @@ function ImportExportModal({
let newTokens: Token[] = []; let newTokens: Token[] = [];
if (checkedTokens.length > 0) { if (checkedTokens.length > 0) {
const tokenIds = checkedTokens.map((token) => token.id); const tokenIds = checkedTokens.map((token) => token.id);
const tokensToAdd: Token[] = await importDB.table<Token>("tokens").bulkGet(tokenIds); const tokensToAdd: Token[] | undefined = await importDB.table<Token>("tokens").bulkGet(tokenIds);
if (tokensToAdd) {
for (let token of tokensToAdd) { for (let token of tokensToAdd) {
if (token) { if (token) {
// Generate new ids // Generate new ids
@ -235,6 +237,7 @@ function ImportExportModal({
} }
} }
} }
}
let newMaps: Map[] = []; let newMaps: Map[] = [];
let newStates: MapState[] = []; let newStates: MapState[] = [];
@ -456,7 +459,7 @@ function ImportExportModal({
saveAs(blob, `${shortid.generate()}.owlbear`); saveAs(blob, `${shortid.generate()}.owlbear`);
addSuccessToast("Exported", checkedMaps.length, checkedTokens.length); addSuccessToast("Exported", checkedMaps.length, checkedTokens.length);
} catch (e: unknown) { } catch (e: unknown) {
if (e instanceof(Error)) { if (e instanceof (Error)) {
console.error(e); console.error(e);
setError(e); setError(e);
} }