import React, { Component } from 'react'; import { Checkbox, Switch, Tooltip, Paper, Button , Grid, Typography, TextField, Select, FormHelperText, MenuItem, FormControl, Radio, FormControlLabel, RadioGroup} from "@mui/material" import { AdapterDateFns, LocalizationProvider, DateTimePicker} from '@mui/lab'; import DateFnsUtils from "@date-io/date-fns"; import { Link } from 'react-router-dom' import getFlags from './getFlags' function getCookie(name) { let cookieValue = null; if (document.cookie && document.cookie !== '') { const cookies = document.cookie.split(';'); for (let i = 0; i < cookies.length; i++) { const cookie = cookies[i].trim(); // Does this cookie string begin with the name we want? if (cookie.substring(0, name.length + 1) === (name + '=')) { cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); break; } } } return cookieValue; } const csrftoken = getCookie('csrftoken'); // pretty numbers function pn(x) { if(x==null){ return(null) } var parts = x.toString().split("."); parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ","); return parts.join("."); } export default class MakerPage extends Component { defaultCurrency = 1; defaultCurrencyCode = 'USD'; defaultPaymentMethod = "not specified"; defaultPremium = 0; minTradeSats = 20000; maxTradeSats = 800000; constructor(props) { super(props); this.state={ is_explicit: false, type: 0, currency: this.defaultCurrency, currencyCode: this.defaultCurrencyCode, payment_method: this.defaultPaymentMethod, premium: 0, satoshis: null, currencies_dict: {"1":"USD"}, showAdvanced: false, allowBondless: false, publicExpiryTime: Date.now() + 86400000, } this.getCurrencyDict() } handleTypeChange=(e)=>{ this.setState({ type: e.target.value, }); } handleCurrencyChange=(e)=>{ this.setState({ currency: e.target.value, currencyCode: this.getCurrencyCode(e.target.value), }); } handleAmountChange=(e)=>{ this.setState({ amount: e.target.value, }); } handlePaymentMethodChange=(e)=>{ this.setState({ payment_method: e.target.value, badPaymentMethod: e.target.value.length > 35, }); } handlePremiumChange=(e)=>{ if(e.target.value > 999){ var bad_premium = "Must be less than 999%" } if(e.target.value < -100){ var bad_premium = "Must be more than -100%" } this.setState({ premium: e.target.value, badPremium: bad_premium, }); } handleSatoshisChange=(e)=>{ if(e.target.value > this.maxTradeSats){ var bad_sats = "Must be less than " + pn(this.maxTradeSats) } if(e.target.value < this.minTradeSats){ var bad_sats = "Must be more than "+pn(this.minTradeSats) } this.setState({ satoshis: e.target.value, badSatoshis: bad_sats, }); } handleClickRelative=(e)=>{ this.setState({ is_explicit: false, }); this.handlePremiumChange(); } handleClickExplicit=(e)=>{ this.setState({ is_explicit: true, }); this.handleSatoshisChange(); } handleCreateOfferButtonPressed=()=>{ this.state.amount == null ? this.setState({amount: 0}) : null; const requestOptions = { method: 'POST', headers: {'Content-Type':'application/json', 'X-CSRFToken': getCookie('csrftoken')}, body: JSON.stringify({ type: this.state.type, currency: this.state.currency, amount: this.state.amount, payment_method: this.state.payment_method, is_explicit: this.state.is_explicit, premium: this.state.is_explicit ? null: this.state.premium, satoshis: this.state.is_explicit ? this.state.satoshis: null, }), }; fetch("/api/make/",requestOptions) .then((response) => response.json()) .then((data) => (this.setState({badRequest:data.bad_request}) & (data.id ? this.props.history.push('/order/' + data.id) :""))); } getCurrencyDict() { fetch('/static/assets/currencies.json') .then((response) => response.json()) .then((data) => this.setState({ currencies_dict: data })); } getCurrencyCode(val){ return this.state.currencies_dict[val.toString()] } StandardMakerOptions = () => { return( Buy or Sell Bitcoin? } label="Buy" labelPlacement="Top" /> } label="Sell" labelPlacement="Top" />

Choose a Pricing Method
} label="Relative" labelPlacement="Top" onClick={this.handleClickRelative} /> } label="Explicit" labelPlacement="Top" onClick={this.handleClickExplicit} />
{/* conditional shows either Premium % field or Satoshis field based on pricing method */}
) } AdvancedMakerOptions = () => { return( } label="Public Order Expiry Time" value={this.state.publicExpiryTime} onChange={(newValue) => {this.setState({publicExpiryTime: newValue})}} /> Allow bondless taker (Read More)} control={ this.setState({allowBondless: !this.state.allowBondless})} /> } /> ) } render() { return ( {/* ORDER MAKER */}
this.setState({showAdvanced: !this.state.showAdvanced})}/>} label="Advanced" />
{/* conditions to disable the make button */} {(this.state.amount == null || this.state.amount <= 0 || (this.state.is_explicit & (this.state.badSatoshis != null || this.state.satoshis == null)) || (!this.state.is_explicit & this.state.badPremium != null)) ?
: }
{this.state.badRequest ? {this.state.badRequest}
: ""}
Create a BTC {this.state.type==0 ? "buy":"sell"} order for {pn(this.state.amount)} {this.state.currencyCode} {this.state.is_explicit ? " of " + pn(this.state.satoshis) + " Satoshis" : (this.state.premium == 0 ? " at market price" : (this.state.premium > 0 ? " at a " + this.state.premium + "% premium":" at a " + -this.state.premium + "% discount") ) }
); } }