mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-22 07:48:00 +00:00
29 lines
724 B
TypeScript
29 lines
724 B
TypeScript
// Copyright 2017-2026 @pezkuwi/react-hooks authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import { useMemo } from 'react';
|
|
|
|
import { createNamedHook } from './createNamedHook.js';
|
|
|
|
interface Result {
|
|
ipfsHash: string;
|
|
ipfsShort: string;
|
|
ipfsUrl: string;
|
|
}
|
|
|
|
function useIpfsLinkImpl (ipfsHash?: string | null): Result | null {
|
|
return useMemo(
|
|
() => ipfsHash
|
|
? {
|
|
ipfsHash,
|
|
ipfsShort: `${ipfsHash.substring(0, 4)}…${ipfsHash.slice(-4)}`,
|
|
// ipfsUrl: `https://cloudflare-ipfs.com/ipfs/${ipfs}`
|
|
ipfsUrl: `https://ipfs.io/ipfs/${ipfsHash}`
|
|
}
|
|
: null,
|
|
[ipfsHash]
|
|
);
|
|
}
|
|
|
|
export const useIpfsLink = createNamedHook('useIpfsLink', useIpfsLinkImpl);
|