mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
Add onchain submission form and swap cost details
This commit is contained in:
parent
dc9d5e5e2a
commit
c4396f504a
@ -36,7 +36,10 @@ class TradeBox extends Component {
|
|||||||
openConfirmDispute: false,
|
openConfirmDispute: false,
|
||||||
openEnableTelegram: false,
|
openEnableTelegram: false,
|
||||||
receiveTab: 0,
|
receiveTab: 0,
|
||||||
|
address: '',
|
||||||
|
miningFee: 1.05,
|
||||||
badInvoice: false,
|
badInvoice: false,
|
||||||
|
badAddress: false,
|
||||||
badStatement: false,
|
badStatement: false,
|
||||||
qrscanner: false,
|
qrscanner: false,
|
||||||
}
|
}
|
||||||
@ -543,6 +546,42 @@ class TradeBox extends Component {
|
|||||||
& this.props.completeSetState(data));
|
& this.props.completeSetState(data));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
handleInputAddressChanged=(e)=>{
|
||||||
|
this.setState({
|
||||||
|
address: e.target.value,
|
||||||
|
badAddress: false,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
handleMiningFeeChanged=(e)=>{
|
||||||
|
var fee = e.target.value
|
||||||
|
if (fee > 50){
|
||||||
|
fee = 50
|
||||||
|
}
|
||||||
|
|
||||||
|
this.setState({
|
||||||
|
miningFee: fee,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
handleClickSubmitAddressButton=()=>{
|
||||||
|
this.setState({badInvoice:false});
|
||||||
|
|
||||||
|
const requestOptions = {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {'Content-Type':'application/json', 'X-CSRFToken': getCookie('csrftoken'),},
|
||||||
|
body: JSON.stringify({
|
||||||
|
'action':'update_address',
|
||||||
|
'address': this.state.address,
|
||||||
|
'mining_fee_rate': Math.max(1, this.state.miningFee),
|
||||||
|
}),
|
||||||
|
};
|
||||||
|
fetch('/api/order/' + '?order_id=' + this.props.data.id, requestOptions)
|
||||||
|
.then((response) => response.json())
|
||||||
|
.then((data) => this.setState({badAddress:data_address})
|
||||||
|
& this.props.completeSetState(data));
|
||||||
|
}
|
||||||
|
|
||||||
handleInputDisputeChanged=(e)=>{
|
handleInputDisputeChanged=(e)=>{
|
||||||
this.setState({
|
this.setState({
|
||||||
statement: e.target.value,
|
statement: e.target.value,
|
||||||
@ -608,7 +647,6 @@ class TradeBox extends Component {
|
|||||||
</Grid>
|
</Grid>
|
||||||
<List dense={true}>
|
<List dense={true}>
|
||||||
<Divider/>
|
<Divider/>
|
||||||
|
|
||||||
<ListItem>
|
<ListItem>
|
||||||
<Typography variant="body2">
|
<Typography variant="body2">
|
||||||
{t("The taker is committed! Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC.",
|
{t("The taker is committed! Before letting you send {{amountFiat}} {{currencyCode}}, we want to make sure you are able to receive the BTC.",
|
||||||
@ -619,11 +657,13 @@ class TradeBox extends Component {
|
|||||||
|
|
||||||
<ListItem>
|
<ListItem>
|
||||||
<Paper elevation={2}>
|
<Paper elevation={2}>
|
||||||
<Tabs value={this.state.receiveTab} variant="fullWidth">
|
<Tabs value={this.state.receiveTab} variant="fullWidth" sx={{width:290}}>
|
||||||
<Tab disableRipple={true} label={<div style={{display:'flex', alignItems:'center', justifyContent:'center', flexWrap:'wrap'}}><BoltIcon/> Lightning</div>} onClick={() => this.setState({receiveTab:0})}/>
|
<Tab disableRipple={true} label={<div style={{display:'flex', alignItems:'center', justifyContent:'center', flexWrap:'wrap'}}><BoltIcon/> Lightning</div>} onClick={() => this.setState({receiveTab:0})}/>
|
||||||
<Tab label={<div style={{display:'flex', alignItems:'center', justifyContent:'center', flexWrap:'wrap'}}><LinkIcon/> Onchain</div>} disabled={!this.props.data.swap_allowed} onClick={() => this.setState({receiveTab:1})} />
|
<Tab label={<div style={{display:'flex', alignItems:'center', justifyContent:'center', flexWrap:'wrap'}}><LinkIcon/> Onchain</div>} disabled={!this.props.data.swap_allowed} onClick={() => this.setState({receiveTab:1, miningFee: this.props.data.suggested_mining_fee_rate})} />
|
||||||
</Tabs>
|
</Tabs>
|
||||||
</Paper>
|
</Paper>
|
||||||
|
</ListItem>
|
||||||
|
</List>
|
||||||
|
|
||||||
{/* LIGHTNING PAYOUT TAB */}
|
{/* LIGHTNING PAYOUT TAB */}
|
||||||
<div style={{display: this.state.receiveTab == 0 ? '':'none'}}>
|
<div style={{display: this.state.receiveTab == 0 ? '':'none'}}>
|
||||||
@ -676,57 +716,71 @@ class TradeBox extends Component {
|
|||||||
|
|
||||||
{/* ONCHAIN PAYOUT TAB */}
|
{/* ONCHAIN PAYOUT TAB */}
|
||||||
<div style={{display: this.state.receiveTab == 1 ? '':'none'}}>
|
<div style={{display: this.state.receiveTab == 1 ? '':'none'}}>
|
||||||
<div style={{height:15}}/>
|
<List dense={true}>
|
||||||
<Grid container spacing={1}>
|
<ListItem>
|
||||||
<Grid item xs={12} align="left">
|
|
||||||
<Typography variant="body2">
|
<Typography variant="body2">
|
||||||
{t("RoboSats will perform an on-the-fly reverse submarine swap and send to an onchain address for a fee. Submit onchain address. Preliminary {{amountSats}} Sats, swap allowed {{swapAllowed}}, swap fee {{swapFee}}%, mining fee suggested {{suggestedMiningFee}} Sats/vbyte",
|
{t("RoboSats will do a swap and send the Sats to your onchain address for a fee.")}
|
||||||
{amountSats: this.props.data.invoice_amount,
|
|
||||||
swapAllowed: this.props.data.swap_allowed,
|
|
||||||
swapFee: this.props.data.swap_fee_rate ,
|
|
||||||
suggestedMiningFee: this.props.data.suggested_mining_fee_rate}
|
|
||||||
)
|
|
||||||
}
|
|
||||||
</Typography>
|
</Typography>
|
||||||
</Grid>
|
</ListItem>
|
||||||
<Grid item xs={12} align="left">
|
|
||||||
<Typography variant="body2">
|
<Divider/>
|
||||||
{t("Swap fee: {{swapFeeSats}}Sats ({{swapFeeRate}}%)",
|
|
||||||
{swapFeeSats: this.props.data.invoice_amount * this.state.swap_fee_rate/100,
|
<ListItem>
|
||||||
swapFeeRate: this.state.swap_fee_rate})
|
<ListItemText
|
||||||
}
|
primary={pn(parseInt(this.props.data.invoice_amount * this.props.data.swap_fee_rate/100)) + " Sats (" + this.props.data.swap_fee_rate + "%)"}
|
||||||
</Typography>
|
secondary={t("Swap fee")}/>
|
||||||
<Typography variant="body2">
|
</ListItem>
|
||||||
{t("Mining fee: {{miningFee}}Sats ({{swapFeeRate}}%)",
|
|
||||||
{miningFee: this.props.data.suggestedMiningFee * 141})}
|
<Divider/>
|
||||||
</Typography>
|
|
||||||
<Typography variant="body2">
|
<ListItem>
|
||||||
{t("You receive: {{onchainAmount}}Sats)",
|
<ListItemText
|
||||||
{onchainAmount: pn(parseInt(this.props.data.invoice_amount - (this.props.data.suggestedMiningFee * 141) - (this.props.data.invoice_amount * this.state.swap_fee_rate/100)))})}
|
primary={pn(parseInt(Math.max(1 , this.state.miningFee) * 141)) + " Sats (" + Math.max(1, this.state.miningFee) + " Sats/vByte)"}
|
||||||
</Typography>
|
secondary={t("Mining fee")}/>
|
||||||
</Grid>
|
</ListItem>
|
||||||
<Grid item xs={12} align="center">
|
|
||||||
|
<Divider/>
|
||||||
|
|
||||||
|
<ListItem>
|
||||||
|
<ListItemText
|
||||||
|
primary={<b>{pn(parseInt(this.props.data.invoice_amount - (Math.max(1, this.state.miningFee) * 141) - (this.props.data.invoice_amount * this.props.data.swap_fee_rate/100)))+ " Sats"}</b>}
|
||||||
|
secondary={t("Final amount you will receive")}/>
|
||||||
|
</ListItem>
|
||||||
|
</List>
|
||||||
<TextField
|
<TextField
|
||||||
error={this.state.badAddress}
|
error={this.state.badAddress}
|
||||||
helperText={this.state.badAddress ? t(this.state.badAddress) : "" }
|
helperText={this.state.badAddress ? t(this.state.badAddress) : "" }
|
||||||
label={t("Payout Lightning Invoice")}
|
label={t("Bitcoin Address")}
|
||||||
required
|
required
|
||||||
value={this.state.invoice}
|
value={this.state.invoice}
|
||||||
|
sx={{width:170}}
|
||||||
inputProps={{
|
inputProps={{
|
||||||
style: {textAlign:"center"},
|
style: {textAlign:"center"},
|
||||||
maxHeight: 240,
|
|
||||||
}}
|
}}
|
||||||
onChange={null}
|
onChange={this.handleInputAddressChanged}
|
||||||
/>
|
/>
|
||||||
</Grid>
|
<TextField
|
||||||
|
error={this.state.miningFee < 1 || this.state.miningFee > 50}
|
||||||
|
helperText={this.state.miningFee < 1 || this.state.miningFee > 50 ? "Invalid" : ''}
|
||||||
|
label={t("Mining Fee")}
|
||||||
|
required
|
||||||
|
sx={{width:110}}
|
||||||
|
value={this.state.miningFee}
|
||||||
|
type="number"
|
||||||
|
inputProps={{
|
||||||
|
max:50,
|
||||||
|
min:1,
|
||||||
|
style: {textAlign:"center"},
|
||||||
|
}}
|
||||||
|
onChange={this.handleMiningFeeChanged}
|
||||||
|
/>
|
||||||
|
<div style={{height:10}}/>
|
||||||
|
|
||||||
<Grid item xs={12} align="center">
|
<Grid item xs={12} align="center">
|
||||||
<Button onClick={null} variant='contained' color='primary'>{t("Submit")}</Button>
|
<Button onClick={null} variant='contained' color='primary'>{t("Submit")}</Button>
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
</Grid>
|
|
||||||
</div>
|
</div>
|
||||||
</ListItem>
|
<List>
|
||||||
<Divider/>
|
<Divider/>
|
||||||
</List>
|
</List>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user