Files
pezkuwi-sdk-ui/packages/react-hooks/src/useFavorites.ts
T
pezkuwichain d949863789 Initial commit: Pezkuwi SDK UI
Comprehensive web interface for interacting with Pezkuwi blockchain.

Features:
- Blockchain explorer
- Wallet management
- Staking interface
- Governance participation
- Developer tools

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-19 13:55:36 +03:00

32 lines
1002 B
TypeScript

// Copyright 2017-2026 @pezkuwi/react-hooks authors & contributors
// SPDX-License-Identifier: Apache-2.0
import { useCallback, useMemo, useState } from 'react';
import { createNamedHook } from './createNamedHook.js';
import { useCacheKey } from './useCacheKey.js';
// hook for favorites with local storage
function useFavoritesImpl (storageKeyBase: string): [string[], (address: string) => void] {
const [getCache, setCache] = useCacheKey<string[]>(storageKeyBase);
const [favorites, setFavorites] = useState<string[]>(() => getCache() || []);
const toggleFavorite = useCallback(
(address: string): void => setFavorites(
(favorites) => setCache(
favorites.includes(address)
? favorites.filter((a) => address !== a)
: [...favorites, address]
)
),
[setCache]
);
return useMemo(
() => [favorites, toggleFavorite],
[favorites, toggleFavorite]
);
}
export const useFavorites = createNamedHook('useFavorites', useFavoritesImpl);