mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-28 19:55:53 +03:00
Cleanup walletModal, transaction, invoice
This commit is contained in:
parent
72fbbb11e5
commit
3b03f6ba59
@ -1,4 +1,4 @@
|
||||
import React, { useRef, useState, useEffect } from 'react';
|
||||
import React, { useState, useEffect } from 'react';
|
||||
import {
|
||||
Box,
|
||||
Icon,
|
||||
@ -57,7 +57,6 @@ const Invoice = ({ stopSending, payee, satsAmount }) => {
|
||||
const [ready, setReady] = useState(false);
|
||||
const [localError, setLocalError] = useState(error);
|
||||
const [broadcasting, setBroadcasting] = useState(false);
|
||||
const invoiceRef = useRef();
|
||||
|
||||
useEffect(() => {
|
||||
if (broadcasting && localError !== '') {
|
||||
@ -65,17 +64,6 @@ const Invoice = ({ stopSending, payee, satsAmount }) => {
|
||||
}
|
||||
}, [error, broadcasting, setBroadcasting]);
|
||||
|
||||
const clickDismiss = (e) => {
|
||||
if (invoiceRef && !invoiceRef.contains(e.target)) {
|
||||
stopSending();
|
||||
}
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
document.addEventListener('click', clickDismiss);
|
||||
return () => document.removeEventListener('click', clickDismiss);
|
||||
}, []);
|
||||
|
||||
const broadCastTx = (psbtHex) => {
|
||||
let command = {
|
||||
'broadcast-tx': psbtHex,
|
||||
@ -90,6 +78,7 @@ const Invoice = ({ stopSending, payee, satsAmount }) => {
|
||||
ticket,
|
||||
ship: parseInt(patp2dec('~' + window.ship)),
|
||||
}).then((urbitWallet) => {
|
||||
// this wasn't being used, not clear why it was pulled out.
|
||||
// const { xpub } =
|
||||
// network === 'testnet'
|
||||
// ? urbitWallet.bitcoinTestnet.keys
|
||||
@ -127,11 +116,11 @@ const Invoice = ({ stopSending, payee, satsAmount }) => {
|
||||
});
|
||||
};
|
||||
|
||||
const checkTicket = (e) => {
|
||||
const checkTicket = ({ target: { value } }) => {
|
||||
// TODO: port over bridge ticket validation logic
|
||||
setMasterTicket(e.target.value);
|
||||
setReady(isValidPatq(e.target.value));
|
||||
setLocalError(isValidPatq(e.target.value) ? '' : 'invalid-master-ticket');
|
||||
setMasterTicket(value);
|
||||
setReady(isValidPatq(value));
|
||||
setLocalError(isValidPatq(value) ? '' : 'invalid-master-ticket');
|
||||
};
|
||||
|
||||
let inputColor = 'black';
|
||||
@ -168,13 +157,11 @@ const Invoice = ({ stopSending, payee, satsAmount }) => {
|
||||
<Sent payee={payee} stopSending={stopSending} satsAmount={satsAmount} />
|
||||
) : (
|
||||
<Col
|
||||
ref={invoiceRef}
|
||||
width="100%"
|
||||
backgroundColor="white"
|
||||
borderRadius="48px"
|
||||
mb={5}
|
||||
p={5}
|
||||
onClick={() => stopSending()}
|
||||
>
|
||||
<Col
|
||||
p={5}
|
||||
@ -236,7 +223,7 @@ const Invoice = ({ stopSending, payee, satsAmount }) => {
|
||||
color={inputColor}
|
||||
backgroundColor={inputBg}
|
||||
borderColor={inputBorder}
|
||||
onChange={() => checkTicket()}
|
||||
onChange={(e) => checkTicket(e)}
|
||||
/>
|
||||
</Row>
|
||||
{error !== '' && (
|
||||
|
@ -1,4 +1,4 @@
|
||||
import React, { Component } from 'react';
|
||||
import React from 'react';
|
||||
import { Box, Text, Col } from '@tlon/indigo-react';
|
||||
import Transaction from './transaction.js';
|
||||
import { useSettings } from '../../hooks/useSettings.js';
|
||||
|
@ -39,11 +39,7 @@ const WalletModal = () => {
|
||||
}
|
||||
};
|
||||
|
||||
const checkXPub = ({
|
||||
event: {
|
||||
target: { value: xpubGiven },
|
||||
},
|
||||
}) => {
|
||||
const checkXPub = ({ target: { value: xpubGiven } }) => {
|
||||
setXpub(xpubGiven);
|
||||
setReadyToSubmit(xpubGiven.length > 0);
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user