feat: allow direct image load when improxy fails
This commit is contained in:
parent
7a717a5c56
commit
a0ced76d46
@ -1,5 +1,6 @@
|
|||||||
import useImgProxy from "Hooks/useImgProxy";
|
import useImgProxy from "Hooks/useImgProxy";
|
||||||
import { useEffect, useState } from "react";
|
import { useEffect, useState } from "react";
|
||||||
|
import { FormattedMessage } from "react-intl";
|
||||||
|
|
||||||
interface ProxyImgProps extends React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> {
|
interface ProxyImgProps extends React.DetailedHTMLProps<React.ImgHTMLAttributes<HTMLImageElement>, HTMLImageElement> {
|
||||||
size?: number;
|
size?: number;
|
||||||
@ -8,6 +9,8 @@ interface ProxyImgProps extends React.DetailedHTMLProps<React.ImgHTMLAttributes<
|
|||||||
export const ProxyImg = (props: ProxyImgProps) => {
|
export const ProxyImg = (props: ProxyImgProps) => {
|
||||||
const { src, size, ...rest } = props;
|
const { src, size, ...rest } = props;
|
||||||
const [url, setUrl] = useState<string>();
|
const [url, setUrl] = useState<string>();
|
||||||
|
const [loadFailed, setLoadFailed] = useState(false);
|
||||||
|
const [bypass, setBypass] = useState(false);
|
||||||
const { proxy } = useImgProxy();
|
const { proxy } = useImgProxy();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
@ -17,5 +20,25 @@ export const ProxyImg = (props: ProxyImgProps) => {
|
|||||||
}
|
}
|
||||||
}, [src]);
|
}, [src]);
|
||||||
|
|
||||||
return <img src={url} {...rest} />;
|
if (loadFailed) {
|
||||||
|
if (bypass) {
|
||||||
|
return <img src={src} {...rest} />;
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
className="note-invoice error"
|
||||||
|
onClick={e => {
|
||||||
|
e.stopPropagation();
|
||||||
|
setBypass(true);
|
||||||
|
}}>
|
||||||
|
<FormattedMessage
|
||||||
|
defaultMessage="Failed to proxy image from {host}, click here to load directly"
|
||||||
|
values={{
|
||||||
|
host: new URL(src ?? "").hostname,
|
||||||
|
}}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
return <img src={url} {...rest} onError={() => setLoadFailed(true)} />;
|
||||||
};
|
};
|
||||||
|
@ -157,6 +157,9 @@
|
|||||||
"5ykRmX": {
|
"5ykRmX": {
|
||||||
"defaultMessage": "Send zap"
|
"defaultMessage": "Send zap"
|
||||||
},
|
},
|
||||||
|
"65BmHb": {
|
||||||
|
"defaultMessage": "Failed to proxy image from {host}, click here to load directly"
|
||||||
|
},
|
||||||
"6Yfvvp": {
|
"6Yfvvp": {
|
||||||
"defaultMessage": "Get an identifier"
|
"defaultMessage": "Get an identifier"
|
||||||
},
|
},
|
||||||
|
@ -51,6 +51,7 @@
|
|||||||
"5rOdPG": "Once you setup your key manager extension and generated a key, you can follow our new users flow to setup your profile and help you find some interesting people on Nostr to follow.",
|
"5rOdPG": "Once you setup your key manager extension and generated a key, you can follow our new users flow to setup your profile and help you find some interesting people on Nostr to follow.",
|
||||||
"5u6iEc": "Transfer to Pubkey",
|
"5u6iEc": "Transfer to Pubkey",
|
||||||
"5ykRmX": "Send zap",
|
"5ykRmX": "Send zap",
|
||||||
|
"65BmHb": "Failed to proxy image from {host}, click here to load directly",
|
||||||
"6Yfvvp": "Get an identifier",
|
"6Yfvvp": "Get an identifier",
|
||||||
"6ewQqw": "Likes ({n})",
|
"6ewQqw": "Likes ({n})",
|
||||||
"6uMqL1": "Unpaid",
|
"6uMqL1": "Unpaid",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user