MyCrypto/common/components/Footer/index.tsx

179 lines
4.4 KiB
TypeScript
Raw Normal View History

import logo from 'assets/images/logo-mycrypto.svg';
import {
ledgerReferralURL,
trezorReferralURL,
bitboxReferralURL,
donationAddressMap,
2017-12-06 23:04:57 +00:00
VERSION,
knowledgeBaseURL
2018-01-20 20:06:28 +00: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-25 02:06:28 +00:00
import PreFooter from './PreFooter';
import Disclaimer from './Disclaimer';
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: knowledgeBaseURL,
text: 'Knowledge Base'
},
{
link: 'https://www.mycrypto.com/helpers.html',
text: 'Helpers & ENS Debugging'
},
{
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/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn',
text: 'Anti - Phishing Extension'
}
];
interface Link {
link: string;
text: string;
}
interface Props {
latestBlock: string;
}
export default class Footer extends React.PureComponent<Props> {
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-25 02:06:28 +00:00
public render() {
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>
<p className="Footer-copyright">
&copy; {new Date().getFullYear()} MyCrypto, LLC{' '}
<span className="Footer-copyright-spacer">&middot;</span> {VERSION}
</p>
<Disclaimer />
</div>
<div className="Footer-info">
<h5>You can support us by buying a...</h5>
<ul>
<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-12 05:04:27 +00:00
}