PHP 8.2.31
Preview: useUnsplashImages.js Size: 650 B
/home/nshryvcy/radiantskinclinics.org/wp-content/plugins/extendify_old/src/Draft/hooks/useUnsplashImages.js

import { fetchImages } from '@shared/lib/unsplash';
import { useUnsplashCacheStore } from '@shared/state/unsplash-cache';
import useSWRImmutable from 'swr/immutable';

const searchImages = async (search, source = null) => {
	const cache = useUnsplashCacheStore.getState();
	if (search === 'unsplash' && !cache.isEmpty() && !cache.hasExpired()) {
		return cache.images;
	}
	return await fetchImages(search, source);
};

export const useUnsplashImages = (search, source = null) => {
	const key = search || 'unsplash';
	const { data, error } = useSWRImmutable(key, () => searchImages(key, source));
	return { data, error, loading: !data && !error };
};

Directory Contents

Dirs: 0 × Files: 5

Name Size Perms Modified Actions
1.37 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
705 B lrw-r--r-- 2023-10-11 06:07:34
Edit Download
2.87 KB lrw-r--r-- 2026-02-19 03:27:14
Edit Download
992 B lrw-r--r-- 2026-02-19 03:27:14
Edit Download
650 B lrw-r--r-- 2025-05-19 16:47:28
Edit Download

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