mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-07-25 19:55:50 +00:00
44 lines
1.3 KiB
TypeScript
44 lines
1.3 KiB
TypeScript
// Copyright 2017-2026 @pezkuwi/app-nfts authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import type { Changes } from '@pezkuwi/react-hooks/useEventChanges';
|
|
import type { StorageKey, u32 } from '@pezkuwi/types';
|
|
import type { EventRecord } from '@pezkuwi/types/interfaces';
|
|
|
|
import { createNamedHook, useApi, useEventChanges, useMapKeys } from '@pezkuwi/react-hooks';
|
|
|
|
const OPT_KEYS = {
|
|
transform: (keys: StorageKey<[u32]>[]): u32[] =>
|
|
keys
|
|
.map(({ args: [id] }) => id)
|
|
.sort((a, b) => a.cmp(b))
|
|
};
|
|
|
|
function filter (records: EventRecord[]): Changes<u32> {
|
|
const added: u32[] = [];
|
|
const removed: u32[] = [];
|
|
|
|
records.forEach(({ event: { data: [id], method } }): void => {
|
|
if (method === 'Created' || method === 'ForceCreated') {
|
|
added.push(id as u32);
|
|
} else {
|
|
removed.push(id as u32);
|
|
}
|
|
});
|
|
|
|
return { added, removed };
|
|
}
|
|
|
|
function useCollectionIdsImpl (): u32[] | undefined {
|
|
const { api } = useApi();
|
|
const startValue = useMapKeys(api.query.uniques.class, [], OPT_KEYS);
|
|
|
|
return useEventChanges([
|
|
api.events.uniques.Created,
|
|
api.events.uniques.Destroyed,
|
|
api.events.uniques.ForceCreated
|
|
], filter, startValue);
|
|
}
|
|
|
|
export default createNamedHook('useCollectionIds', useCollectionIdsImpl);
|