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

85 lines
2.7 KiB
React
Raw Normal View History

2017-06-08 02:56:52 +02:00
import React from "react";
import { Modal } from "component/modal";
import { CreditAmount } from "component/common";
import Link from "component/link";
import RewardLink from "component/rewardLink";
2017-07-10 19:19:42 +02:00
class ModalWelcome extends React.PureComponent {
2017-07-28 03:13:12 +02:00
constructor(props) {
super(props);
this.state = {
isFirstScreen: true,
};
}
2017-06-08 02:56:52 +02:00
render() {
2017-07-28 03:13:12 +02:00
const { closeModal, totalRewardValue, verifyAccount } = this.props;
const totalRewardRounded = Math.round(totalRewardValue / 10) * 10;
2017-06-08 02:56:52 +02:00
2017-07-25 00:59:26 +02:00
return (
<Modal type="custom" isOpen={true} contentLabel="Welcome to LBRY">
2017-07-28 03:13:12 +02:00
{this.state.isFirstScreen &&
<section>
<h3 className="modal__header">{__("Welcome to LBRY")}</h3>
<p>
{__(
"Using LBRY is like dating a centaur. Totally normal up top, and"
)}
{" "}<em>{__("way different")}</em> {__("underneath.")}
</p>
<p>{__("Up top, LBRY is similar to popular media sites.")}</p>
<p>
{__(
"Below, LBRY is controlled by users -- you -- via blockchain and decentralization."
)}
</p>
<div className="modal__buttons">
<Link
button="primary"
onClick={() => {
this.setState({ isFirstScreen: false });
}}
label={__("Continue")}
/>
</div>
</section>}
{!this.state.isFirstScreen &&
<section>
<h3 className="modal__header">{__("Claim Your Credits")}</h3>
<p>
The LBRY network is controlled and powered by credits called{" "}
<em>LBC</em>, a blockchain asset.
</p>
<p>
{__("New patrons receive ")} {" "}
{totalRewardValue
? <CreditAmount amount={totalRewardRounded} />
: <span className="credit-amount">{__("credits")}</span>}
{" "} {__("in rewards for usage and influence of the network.")}
</p>
<p>
{__(
"You'll also earn weekly bonuses for checking out the greatest new stuff."
)}
</p>
<div className="modal__buttons">
2017-07-25 00:59:26 +02:00
<Link
button="primary"
onClick={verifyAccount}
2017-07-28 03:13:12 +02:00
label={__("You Had Me At Free LBC")}
/>
<Link
button="alt"
onClick={closeModal}
label={__("I Burn Money")}
/>
</div>
</section>}
2017-07-25 00:59:26 +02:00
</Modal>
);
2017-06-08 02:56:52 +02:00
}
}
2017-07-10 19:19:42 +02:00
export default ModalWelcome;