mirror of
https://github.com/invoke-ai/InvokeAI
synced 2024-08-30 20:32:17 +00:00
revert to using fetch, add token if needed (#5720)
Co-authored-by: Mary Hipp <maryhipp@Marys-MacBook-Air.local>
This commit is contained in:
parent
9d6e4ff1fb
commit
34cc26a4ed
@ -1,22 +1,28 @@
|
|||||||
|
import { useStore } from '@nanostores/react';
|
||||||
import { useAppToaster } from 'app/components/Toaster';
|
import { useAppToaster } from 'app/components/Toaster';
|
||||||
|
import { $authToken } from 'app/store/nanostores/authToken';
|
||||||
import { useAppDispatch } from 'app/store/storeHooks';
|
import { useAppDispatch } from 'app/store/storeHooks';
|
||||||
import { imageDownloaded } from 'features/gallery/store/actions';
|
import { imageDownloaded } from 'features/gallery/store/actions';
|
||||||
import { useCallback } from 'react';
|
import { useCallback } from 'react';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
|
|
||||||
import { useImageUrlToBlob } from './useImageUrlToBlob';
|
|
||||||
|
|
||||||
export const useDownloadImage = () => {
|
export const useDownloadImage = () => {
|
||||||
const toaster = useAppToaster();
|
const toaster = useAppToaster();
|
||||||
const { t } = useTranslation();
|
const { t } = useTranslation();
|
||||||
const imageUrlToBlob = useImageUrlToBlob();
|
|
||||||
const dispatch = useAppDispatch();
|
const dispatch = useAppDispatch();
|
||||||
|
const authToken = useStore($authToken);
|
||||||
|
|
||||||
const downloadImage = useCallback(
|
const downloadImage = useCallback(
|
||||||
async (image_url: string, image_name: string) => {
|
async (image_url: string, image_name: string) => {
|
||||||
try {
|
try {
|
||||||
const blob = await imageUrlToBlob(image_url);
|
const requestOpts = authToken
|
||||||
|
? {
|
||||||
|
headers: {
|
||||||
|
Authorization: `Bearer ${authToken}`,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
: {};
|
||||||
|
const blob = await fetch(image_url, requestOpts).then((resp) => resp.blob());
|
||||||
if (!blob) {
|
if (!blob) {
|
||||||
throw new Error('Unable to create Blob');
|
throw new Error('Unable to create Blob');
|
||||||
}
|
}
|
||||||
@ -40,7 +46,7 @@ export const useDownloadImage = () => {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
[t, toaster, imageUrlToBlob, dispatch]
|
[t, toaster, dispatch, authToken]
|
||||||
);
|
);
|
||||||
|
|
||||||
return { downloadImage };
|
return { downloadImage };
|
||||||
|
Loading…
Reference in New Issue
Block a user