mirror of
https://github.com/pezkuwichain/pezkuwi-sdk-ui.git
synced 2026-04-25 04:37:57 +00:00
d949863789
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>
32 lines
1002 B
TypeScript
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);
|