PHP 8.2.31
Preview: useSiteLogo.js Size: 802 B
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/extendify_old/src/Launch/hooks/useSiteLogo.js

import { getSiteLogo } from '@launch/api/DataApi';
import { useSiteProfile } from '@launch/hooks/useSiteProfile';
import { resizeImage } from '@shared/utils/resize-image';
import useSWRImmutable from 'swr/immutable';

export const useSiteLogo = () => {
	const { siteProfile, loading: profileLoading } = useSiteProfile();

	const { data, error } = useSWRImmutable(
		profileLoading || !siteProfile
			? null
			: {
					key: 'site-logo',
					logoObjectName: siteProfile?.logoObjectName,
				},
		async ({ logoObjectName }) => {
			const rawLogoUrl = await getSiteLogo(logoObjectName);
			return await resizeImage(rawLogoUrl, {
				size: { width: 256, height: 256 },
				mimeType: 'image/webp',
			});
		},
	);

	return {
		logoUrl: data,
		error,
		loading: profileLoading || (!data && !error),
	};
};

Directory Contents

Dirs: 0 × Files: 14

Name Size Perms Modified Actions
555 B lrw-r--r-- 2023-10-11 06:07:34
Edit Download
342 B lrw-r--r-- 2024-10-08 14:19:28
Edit Download
1.32 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
480 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download
3.71 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
439 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download
802 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download
616 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download
533 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download
582 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download
445 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download
599 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download
5.59 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
492 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).