mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
1b6e58c417
* Wire collectibles frontend UI with controller data
94 lines
2.6 KiB
JavaScript
94 lines
2.6 KiB
JavaScript
import React, { useState } from 'react';
|
|
import { useHistory } from 'react-router-dom';
|
|
import { useDispatch } from 'react-redux';
|
|
import { util } from '@metamask/controllers';
|
|
import { useI18nContext } from '../../hooks/useI18nContext';
|
|
import { DEFAULT_ROUTE } from '../../helpers/constants/routes';
|
|
|
|
import Box from '../../components/ui/box';
|
|
import TextField from '../../components/ui/text-field';
|
|
import PageContainer from '../../components/ui/page-container';
|
|
import {
|
|
addCollectibleVerifyOwnership,
|
|
setNewCollectibleAddedMessage,
|
|
} from '../../store/actions';
|
|
|
|
export default function AddCollectible() {
|
|
const t = useI18nContext();
|
|
const history = useHistory();
|
|
const dispatch = useDispatch();
|
|
|
|
const [address, setAddress] = useState('');
|
|
const [tokenId, setTokenId] = useState('');
|
|
const [disabled, setDisabled] = useState(true);
|
|
|
|
const handleAddCollectible = async () => {
|
|
try {
|
|
await dispatch(addCollectibleVerifyOwnership(address, tokenId));
|
|
} catch (error) {
|
|
const { message } = error;
|
|
dispatch(setNewCollectibleAddedMessage(message));
|
|
history.push(DEFAULT_ROUTE);
|
|
return;
|
|
}
|
|
dispatch(setNewCollectibleAddedMessage('success'));
|
|
history.push(DEFAULT_ROUTE);
|
|
};
|
|
|
|
const validateAndSetAddress = (val) => {
|
|
setDisabled(!util.isValidHexAddress(val) || !tokenId);
|
|
setAddress(val);
|
|
};
|
|
|
|
const validateAndSetTokenId = (val) => {
|
|
setDisabled(!util.isValidHexAddress(address) || !val);
|
|
setTokenId(val);
|
|
};
|
|
|
|
return (
|
|
<PageContainer
|
|
title={t('addNFT')}
|
|
onSubmit={() => {
|
|
handleAddCollectible();
|
|
}}
|
|
submitText={t('add')}
|
|
onCancel={() => {
|
|
history.push(DEFAULT_ROUTE);
|
|
}}
|
|
onClose={() => {
|
|
history.push(DEFAULT_ROUTE);
|
|
}}
|
|
disabled={disabled}
|
|
contentComponent={
|
|
<Box padding={4}>
|
|
<Box>
|
|
<TextField
|
|
id="address"
|
|
label={t('address')}
|
|
placeholder="0x..."
|
|
type="text"
|
|
value={address}
|
|
onChange={(e) => validateAndSetAddress(e.target.value)}
|
|
fullWidth
|
|
autoFocus
|
|
margin="normal"
|
|
/>
|
|
</Box>
|
|
<Box>
|
|
<TextField
|
|
id="token-id"
|
|
label={t('id')}
|
|
placeholder={t('nftTokenIdPlaceholder')}
|
|
type="number"
|
|
value={tokenId}
|
|
onChange={(e) => validateAndSetTokenId(e.target.value)}
|
|
fullWidth
|
|
margin="normal"
|
|
/>
|
|
</Box>
|
|
</Box>
|
|
}
|
|
/>
|
|
);
|
|
}
|