MyCrypto/common/components/Footer/index.tsx

265 lines
8.8 KiB
TypeScript
Raw Normal View History

import logo from 'assets/images/logo-mycrypto.svg';
import {
bityReferralURL,
ledgerReferralURL,
trezorReferralURL,
bitboxReferralURL,
donationAddressMap,
2017-12-06 15:04:57 -08:00
VERSION,
knowledgeBaseURL
2018-01-20 12:06:28 -08:00
} from 'config';
import React from 'react';
import translate from 'translations';
import './index.scss';
Migrate to Typescript (#224) * Refactor babel/types * Refactor entry point * Refactor actions * Refactor api * Full project refactor -- Broad type fixing sweep * - completely fix merge conflicts - handle various type errors * Add tslint to package.json * Dependency cleanup * Fix module resolution * Work on type definitions for untyped libs * progress commit * Add more definition typing * various type additions * Add unit types * Fix sagaiterator + unit types * various types added * additional type additions * Fix typing on Sagas * remove flowfixmes; swap translate for translateRaw * Get rid of contracts - awaiting Henry's contract PR * Remove contracts from routing * Fix most of actions/reducers * refactor actions directory structure * fix reducer action type imports * Fix most of type errors pre-actions refactor * fix action creator imports in containers * Refactor more * Refactor index of actions * fix action imports; use module level index export * package-lock.json updated * Use action types in props * Type up action creators * Fix most of connect errors * Typefixing progress * More types * Fix run-time errors * Caching improvements for webpack * Remove path resolve from webpack * Update non-breaking packages to latest version * Fix token typing * Remove unused color code * Fix wallet decrypt dispatch * Set redux-form related props/functions to ANY, since we're stripping it out later on * Revert BigNumber.js package changes * Extend window to custom object for Perf * Format Navigation * Typecase keystore errors as any (since we shouldnt touch this) * Push wallet context fix * - find/replace value->payload in swap - properly type swap state properties - extract inline reducer into reducer function * - type local storage retrieved items as generic * - bind all RPCClient methods with fat arrow * - reformat * Change to enums for constants * Change state into any * Fix swap errors * ensure that seconds are passed into state as integers * Fix rest of errors * use parseInt explicitly instead of type coercion * Fix derivation-checker, remove flow command, add tslint command, add tslint-react, tell travis to use tslint instead of flow. * Whoops, remove those tests. * Remove unsupported (yet) config option. * Fix precommit to target ts and tsx files. * Fix some errors, ignore some silly rules. * Revert jest to v19, use ts-jest and make all tests typescript. Fixes all but one. * Get rid of saga tests * Fix tslint errors
2017-09-24 19:06:28 -07:00
import PreFooter from './PreFooter';
import Modal, { IButton } from 'components/ui/Modal';
import { NewTabLink } from 'components/ui';
import OnboardModal from 'containers/OnboardModal';
const AffiliateTag = ({ link, text }: Link) => {
return (
<li className="Footer-affiliate-tag" key={link}>
<NewTabLink href={link}>{text}</NewTabLink>
</li>
);
};
const SocialMediaLink = ({ link, text }: Link) => {
return (
<NewTabLink className="Footer-social-media-link" key={link} href={link}>
<i className={`sm-icon sm-logo-${text} sm-24px`} />
</NewTabLink>
);
};
const SOCIAL_MEDIA: Link[] = [
{
link: 'https://www.reddit.com/r/mycrypto/',
text: 'reddit'
},
{
link: 'https://twitter.com/mycrypto',
text: 'twitter'
},
{
link: 'https://www.facebook.com/MyCrypto/',
text: 'facebook'
},
{
link: 'https://medium.com/@mycrypto',
text: 'medium'
},
{
link: 'https://www.linkedin.com/company/mycrypto',
text: 'linkedin'
},
{
link: 'https://github.com/MyCryptoHQ',
text: 'github'
}
];
const PRODUCT_INFO: Link[] = [
{
link: 'https://github.com/MyCryptoHQ/MyCrypto',
text: 'Github: Current Site'
},
{
link: 'https://github.com/MyCryptoHQ',
text: 'Github: MyCrypto Org'
},
{
link: 'https://github.com/MyCryptoHQ/MyCrypto/releases/latest',
text: 'Github: Latest Release'
},
{
link:
'https://chrome.google.com/webstore/detail/myetherwallet-cx/nlbmnnijcnlegkjjpcfjclmcfggfefdm?hl=en',
text: 'MyEtherWallet Extension'
},
{
link:
'https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn',
text: 'Anti - Phishing Extension'
}
];
interface Link {
link: string;
text: string;
}
interface Props {
latestBlock: string;
}
interface State {
isOpen: boolean;
}
export default class Footer extends React.PureComponent<Props, State> {
constructor(props: Props) {
super(props);
this.state = { isOpen: false };
}
public openModal = () => {
this.setState({ isOpen: true });
};
public closeModal = () => {
this.setState({ isOpen: false });
};
Migrate to Typescript (#224) * Refactor babel/types * Refactor entry point * Refactor actions * Refactor api * Full project refactor -- Broad type fixing sweep * - completely fix merge conflicts - handle various type errors * Add tslint to package.json * Dependency cleanup * Fix module resolution * Work on type definitions for untyped libs * progress commit * Add more definition typing * various type additions * Add unit types * Fix sagaiterator + unit types * various types added * additional type additions * Fix typing on Sagas * remove flowfixmes; swap translate for translateRaw * Get rid of contracts - awaiting Henry's contract PR * Remove contracts from routing * Fix most of actions/reducers * refactor actions directory structure * fix reducer action type imports * Fix most of type errors pre-actions refactor * fix action creator imports in containers * Refactor more * Refactor index of actions * fix action imports; use module level index export * package-lock.json updated * Use action types in props * Type up action creators * Fix most of connect errors * Typefixing progress * More types * Fix run-time errors * Caching improvements for webpack * Remove path resolve from webpack * Update non-breaking packages to latest version * Fix token typing * Remove unused color code * Fix wallet decrypt dispatch * Set redux-form related props/functions to ANY, since we're stripping it out later on * Revert BigNumber.js package changes * Extend window to custom object for Perf * Format Navigation * Typecase keystore errors as any (since we shouldnt touch this) * Push wallet context fix * - find/replace value->payload in swap - properly type swap state properties - extract inline reducer into reducer function * - type local storage retrieved items as generic * - bind all RPCClient methods with fat arrow * - reformat * Change to enums for constants * Change state into any * Fix swap errors * ensure that seconds are passed into state as integers * Fix rest of errors * use parseInt explicitly instead of type coercion * Fix derivation-checker, remove flow command, add tslint command, add tslint-react, tell travis to use tslint instead of flow. * Whoops, remove those tests. * Remove unsupported (yet) config option. * Fix precommit to target ts and tsx files. * Fix some errors, ignore some silly rules. * Revert jest to v19, use ts-jest and make all tests typescript. Fixes all but one. * Get rid of saga tests * Fix tslint errors
2017-09-24 19:06:28 -07:00
public render() {
const buttons: IButton[] = [{ text: 'Okay', type: 'default', onClick: this.closeModal }];
return (
<div>
<OnboardModal />
<PreFooter />
<footer className="Footer" role="contentinfo" aria-label="footer">
<div className="Footer-about">
<p aria-hidden="true">
<NewTabLink href="/">
<img
className="Footer-about-logo"
src={logo}
height="55px"
width="auto"
alt="MyCrypto logo"
/>
</NewTabLink>
</p>
<p className="Footer-about-text">{translate('FOOTER_1')}</p>
2017-12-06 15:04:57 -08:00
<NewTabLink href={knowledgeBaseURL}>Knowledge Base</NewTabLink>
<NewTabLink href="https://www.myetherwallet.com/helpers">
Helpers & ENS Debugging
</NewTabLink>
<button className="Footer-modal-button" onClick={this.openModal}>
Disclaimer
</button>
<Modal
isOpen={this.state.isOpen}
title="Disclaimer"
buttons={buttons}
handleClose={this.closeModal}
>
<p>
<b>Be safe & secure: </b>
2017-12-06 15:04:57 -08:00
<NewTabLink href={`${knowledgeBaseURL}/security/securing-your-ethereum`}>
We highly recommend that you read our guide on How to Prevent Loss & Theft for
some recommendations on how to be proactive about your security.
</NewTabLink>
</p>
<p>
<b>Always backup your keys: </b>
MyCrypto.com & MyCrypto CX are not "web wallets". You do not create an account or
give us your funds to hold onto. No data leaves your computer / your browser. We
make it easy for you to create, save, and access your information and interact with
the blockchain.
</p>
<p>
<b>We are not responsible for any loss: </b>
Ethereum, MyCrypto.com & MyCrypto CX, and some of the underlying Javascript
libraries we use are under active development. While we have thoroughly tested &
tens of thousands of wallets have been successfully created by people all over the
globe, there is always the possibility something unexpected happens that causes your
funds to be lost. Please do not invest more than you are willing to lose, and please
be careful.
</p>
<p>
<b>Translations of MyCrypto: </b>
The community has done an amazing job translating MyCrypto into a variety of
languages. However, MyCrypto can only verify the validity and accuracy of the
information provided in English and, because of this, the English version of our
website is the official text.
</p>
<p>
<b>MIT License</b> Copyright © 2015-2017 MyCrypto LLC
</p>
<p>
Permission is hereby granted, free of charge, to any person obtaining a copy of this
software and associated documentation files (the "Software"), to deal in the
Software without restriction, including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so, subject to the
following conditions:
</p>
<p>
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
</p>
<b>
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
</b>
</Modal>
<p>Latest Block#: {this.props.latestBlock}</p>
<p>v{VERSION}</p>
<p>&copy; {new Date().getFullYear()} MyCrypto, LLC</p>
</div>
<div className="Footer-info">
<h5>
<i aria-hidden="true">👫</i>
You can support us by supporting our blockchain-family.
</h5>
<p>Consider using our affiliate links to</p>
<ul className="Footer-affiliate-wrap">
<AffiliateTag link={bityReferralURL} text="Swap ETH/BTC/EUR/CHF via Bity.com" />
</ul>
<p>Buy a</p>
<ul className="Footer-affiliate-wrap">
<AffiliateTag link={ledgerReferralURL} text="Ledger Nano S" />
<AffiliateTag link={trezorReferralURL} text="TREZOR" />
<AffiliateTag link={bitboxReferralURL} text="Digital Bitbox" />
</ul>
<h5>
<i aria-hidden="true">💝</i>
{translate('FOOTER_2')}
</h5>
<ul>
<li>
ETH: <span className="mono wrap">{donationAddressMap.ETH}</span>
</li>
<li>
{' '}
BTC: <span className="mono wrap">{donationAddressMap.BTC}</span>
</li>
</ul>
</div>
<div className="Footer-links">
{PRODUCT_INFO.map((productInfoItem, idx) => (
<NewTabLink target="_blank" key={idx} href={productInfoItem.link}>
{productInfoItem.text}
</NewTabLink>
))}
<div className="Footer-social-media-wrap">
{SOCIAL_MEDIA.map((socialMediaItem, idx) => (
<SocialMediaLink
link={socialMediaItem.link}
key={idx}
text={socialMediaItem.text}
/>
))}
</div>
</div>
</footer>
</div>
);
}
2017-04-11 22:04:27 -07:00
}