16 lines
374 B
TypeScript
16 lines
374 B
TypeScript
import { REACT_APP_SERVER_BASE_URL } from '~/config';
|
|
|
|
export const getImageAbsoluteURIOrBase64 = (imageUrl?: string | null) => {
|
|
if (!imageUrl) {
|
|
return null;
|
|
}
|
|
|
|
if (imageUrl?.startsWith('data:') || imageUrl?.startsWith('https:')) {
|
|
return imageUrl;
|
|
}
|
|
|
|
const serverFilesUrl = REACT_APP_SERVER_BASE_URL;
|
|
|
|
return `${serverFilesUrl}/files/${imageUrl}`;
|
|
};
|