lbry-desktop/ui/js/component/tipLink/view.jsx

93 lines
1.9 KiB
React
Raw Normal View History

import React from "react";
import Link from "component/link";
import { FormField } from "component/form";
import PriceForm from "component/priceForm";
class TipLink extends React.PureComponent {
constructor(props) {
super(props);
this.state = {
feeAmount: "1.00",
currency: "LBC",
};
}
handleTipPublisherButtonClicked() {
this.props.onTipShow();
}
handleTipButtonClicked() {
let address = this.props.claim.address;
let amount = this.state.feeAmount;
this.props.setAddress(address);
this.props.setAmount(amount);
this.props.sendToAddress();
this.props.onTipHide();
}
handleTipCancelButtonClicked() {
this.props.onTipHide();
}
handleFeeAmountChange(event) {
this.setState({
feeAmount: event.target.value,
});
}
handleCurrencyChange(event) {
this.setState({
currency: event.target.value,
});
}
render() {
const { showTipBox } = this.props;
let tipLink = (
<Link
label={__("Tip")}
button="text"
icon="icon-gift"
onClick={this.handleTipPublisherButtonClicked.bind(this)}
/>
);
let tipBox = (
<span>
<PriceForm
min="0.01"
placeholder="1.00"
step="0.1"
onFeeChange={event => this.handleFeeAmountChange(event)}
defaultFeeValue="1.00"
onCurrencyChange={event => this.handleCurrencyChange(event)}
defaultCurrencyValue="LBC"
/>
{__(" ")}
<Link
label={__("Tip")}
button="primary"
onClick={this.handleTipButtonClicked.bind(this)}
/>
<Link
label={__("Cancel")}
button="alt"
onClick={this.handleTipCancelButtonClicked.bind(this)}
/>
</span>
);
return (
<div className="menu-container">
{showTipBox ? tipBox : tipLink}
</div>
);
}
}
export default TipLink;