mirror of
https://github.com/status-im/MyCrypto.git
synced 2025-01-11 11:34:26 +00:00
816ce3180f
* Update account view routing * Temporarily add unicode character to translated strings for testing * Temporarily select add unicode to all untranslated strings * Format changes * Add all english translations for /account & /generate * Add the rest of the english translations * Add a few more missing translations * Update en translations * Get selectedLanguage from localstorage instead of redux sttate * Update snapshots * Add missing translation keys & Update translate functs & change variable prefix * translate all markdown strings & remove old translation strings * Update snapshot * Add a few more translation strs * Move raw strings being translated into json * All translation keys are now Uppercase * Fix up the last few translations * Update snapshot * Uppercase de translation strings * Bring back shapeshift logo on swap * Fix contracts tab translations * Fix a few more translations * Fix translations * remove debugging stuff * Update snapshots * Use react.fragment as markdown root renderer * Seperate markdown translations into their own function * Clean up translation functions * Clean up translation functions * Update snapshot * Fix some broken translation strings * Add prettier ignore file
234 lines
6.3 KiB
TypeScript
234 lines
6.3 KiB
TypeScript
import logo from 'assets/images/logo-mycrypto.svg';
|
|
import {
|
|
ledgerReferralURL,
|
|
trezorReferralURL,
|
|
ethercardReferralURL,
|
|
donationAddressMap,
|
|
VERSION,
|
|
knowledgeBaseURL,
|
|
discordURL
|
|
} from 'config';
|
|
import React from 'react';
|
|
import PreFooter from './PreFooter';
|
|
import DisclaimerModal from './DisclaimerModal';
|
|
import { NewTabLink } from 'components/ui';
|
|
import OnboardModal from 'containers/OnboardModal';
|
|
import './index.scss';
|
|
import { translateRaw } from 'translations';
|
|
|
|
const SocialMediaLink = ({ link, text }: Link) => {
|
|
return (
|
|
<NewTabLink className="SocialMediaLink" key={link} href={link} aria-label={text}>
|
|
<i className={`sm-icon sm-logo-${text}`} />
|
|
</NewTabLink>
|
|
);
|
|
};
|
|
|
|
const SOCIAL_MEDIA: Link[] = [
|
|
{
|
|
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'
|
|
},
|
|
{
|
|
link: 'https://www.reddit.com/r/mycrypto/',
|
|
text: 'reddit'
|
|
},
|
|
{
|
|
link: discordURL,
|
|
text: 'discord'
|
|
}
|
|
];
|
|
|
|
const PRODUCT_INFO: Link[] = [
|
|
{
|
|
link:
|
|
'https://chrome.google.com/webstore/detail/etheraddresslookup/pdknmigbbbhmllnmgdfalmedcmcefdfn',
|
|
text: translateRaw('ETHER_ADDRESS_LOOKUP')
|
|
},
|
|
{
|
|
link:
|
|
'https://chrome.google.com/webstore/detail/ethersecuritylookup/bhhfhgpgmifehjdghlbbijjaimhmcgnf',
|
|
text: translateRaw('ETHER_SECURITY_LOOKUP')
|
|
},
|
|
{
|
|
link: 'https://etherscamdb.info/',
|
|
text: translateRaw('ETHERSCAMDB')
|
|
},
|
|
{
|
|
link: 'https://www.mycrypto.com/helpers.html',
|
|
text: translateRaw('FOOTER_HELP_AND_DEBUGGING')
|
|
},
|
|
{
|
|
link: 'mailto:press@mycrypto.com',
|
|
text: translateRaw('FOOTER_PRESS')
|
|
}
|
|
];
|
|
|
|
const AFFILIATES: Link[] = [
|
|
{
|
|
link: ledgerReferralURL,
|
|
text: translateRaw('LEDGER_REFERAL_1')
|
|
},
|
|
{
|
|
link: trezorReferralURL,
|
|
text: translateRaw('TREZOR_REFERAL')
|
|
},
|
|
{
|
|
link: ethercardReferralURL,
|
|
text: translateRaw('ETHERCARD_REFERAL')
|
|
}
|
|
];
|
|
|
|
const FRIENDS: Link[] = [
|
|
{
|
|
link: 'https://metamask.io/',
|
|
text: 'MetaMask'
|
|
},
|
|
{
|
|
link: 'https://infura.io/',
|
|
text: 'Infura'
|
|
},
|
|
{
|
|
link: 'https://etherscan.io/',
|
|
text: 'Etherscan'
|
|
}
|
|
];
|
|
|
|
interface Link {
|
|
link: string;
|
|
text: string;
|
|
}
|
|
|
|
interface Props {
|
|
latestBlock: string;
|
|
}
|
|
|
|
interface State {
|
|
isDisclaimerOpen: boolean;
|
|
}
|
|
|
|
export default class Footer extends React.PureComponent<Props, State> {
|
|
public state: State = {
|
|
isDisclaimerOpen: false
|
|
};
|
|
|
|
public render() {
|
|
return (
|
|
<div>
|
|
<PreFooter openModal={this.toggleModal} />
|
|
<footer className="Footer" role="contentinfo" aria-label="footer">
|
|
<div className="Footer-links Footer-section">
|
|
<div className="Footer-links-social">
|
|
{SOCIAL_MEDIA.map((socialMediaItem, idx) => (
|
|
<SocialMediaLink
|
|
link={socialMediaItem.link}
|
|
key={idx}
|
|
text={socialMediaItem.text}
|
|
/>
|
|
))}
|
|
</div>
|
|
|
|
<div className="Footer-links-links">
|
|
{PRODUCT_INFO.map((productInfoItem, idx) => (
|
|
<NewTabLink key={idx} href={productInfoItem.link}>
|
|
{productInfoItem.text}
|
|
</NewTabLink>
|
|
))}
|
|
</div>
|
|
</div>
|
|
|
|
<div className="Footer-about Footer-section">
|
|
<NewTabLink className="Footer-about-logo" href="/">
|
|
<img
|
|
className="Footer-about-logo-img"
|
|
src={logo}
|
|
height="55px"
|
|
width="auto"
|
|
alt="MyCrypto logo"
|
|
/>
|
|
</NewTabLink>
|
|
|
|
<div className="Footer-about-links">
|
|
<a href="https://mycrypto.com">MyCrypto.com</a>
|
|
<NewTabLink href={knowledgeBaseURL}>{translateRaw('FOOTER_SUPPORT')}</NewTabLink>
|
|
<NewTabLink href="https://about.mycrypto.com">
|
|
{translateRaw('FOOTER_TEAM')}
|
|
</NewTabLink>
|
|
</div>
|
|
|
|
<p className="Footer-about-text">{translateRaw('FOOTER_ABOUT')}</p>
|
|
|
|
<div className="Footer-about-legal">
|
|
<div className="Footer-about-legal-text">
|
|
© {new Date().getFullYear()} MyCrypto, Inc.
|
|
</div>
|
|
<div className="Footer-about-legal-text">
|
|
<a onClick={this.toggleModal}>{translateRaw('DISCLAIMER')}</a>
|
|
</div>
|
|
<div className="Footer-about-legal-text">v{VERSION}</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div className="Footer-support Footer-section">
|
|
<h5 className="Footer-support-title">{translateRaw('FOOTER_AFFILIATE_TITLE')}</h5>
|
|
<div className="Footer-support-affiliates">
|
|
{AFFILIATES.map((link, i) => (
|
|
<NewTabLink key={i} href={link.link}>
|
|
{link.text}
|
|
</NewTabLink>
|
|
))}
|
|
</div>
|
|
|
|
<div className="Footer-support-donate">
|
|
<div className="Footer-support-donate-currency">
|
|
{translateRaw('DONATE_CURRENCY', { $currency: 'ETH' })}
|
|
</div>
|
|
<div className="Footer-support-donate-address">{donationAddressMap.ETH}</div>
|
|
</div>
|
|
|
|
<div className="Footer-support-donate">
|
|
<div className="Footer-support-donate-currency">
|
|
{translateRaw('DONATE_CURRENCY', { $currency: 'BTC' })}
|
|
</div>
|
|
<div className="Footer-support-donate-address">{donationAddressMap.BTC}</div>
|
|
</div>
|
|
|
|
<div className="Footer-support-friends">
|
|
{FRIENDS.map((link, i) => (
|
|
<NewTabLink key={i} href={link.link}>
|
|
{link.text}
|
|
</NewTabLink>
|
|
))}
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<OnboardModal />
|
|
<DisclaimerModal isOpen={this.state.isDisclaimerOpen} handleClose={this.toggleModal} />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
private toggleModal = () => {
|
|
this.setState(state => {
|
|
this.setState({ isDisclaimerOpen: !state.isDisclaimerOpen });
|
|
});
|
|
};
|
|
}
|