import { DApp, TOKEN_PROPOSAL, useLinks } from '@vegaprotocol/environment'; import * as Schema from '@vegaprotocol/types'; import { ExternalLink, Intent, Notification } from '@vegaprotocol/ui-toolkit'; import { useUpdateProposal } from '../lib'; import { useT } from '../use-t'; type AssetProposalNotificationProps = { assetId?: string; }; export const AssetProposalNotification = ({ assetId, }: AssetProposalNotificationProps) => { const t = useT(); const tokenLink = useLinks(DApp.Governance); const { data: proposal } = useUpdateProposal({ id: assetId, proposalType: Schema.ProposalType.TYPE_UPDATE_ASSET, }); if (proposal) { const proposalLink = tokenLink( TOKEN_PROPOSAL.replace(':id', proposal.id || '') ); const message = ( <> {t('Changes have been proposed for this asset.')}{' '} {t('View proposal')} ); return (
); } return null; };