import { colors } from '@0xproject/react-shared'; import * as _ from 'lodash'; import DropDownMenu from 'material-ui/DropDownMenu'; import MenuItem from 'material-ui/MenuItem'; import * as React from 'react'; import { Link } from 'react-router-dom'; import { Dispatcher } from 'ts/redux/dispatcher'; import { Deco, Key, Language, WebsitePaths } from 'ts/types'; import { constants } from 'ts/utils/constants'; import { Translate } from 'ts/utils/translate'; interface MenuItemsBySection { [sectionName: string]: FooterMenuItem[]; } interface FooterMenuItem { title: string; path?: string; isExternal?: boolean; } const ICON_DIMENSION = 16; const linkStyle = { color: colors.white, cursor: 'pointer', }; const languageToMenuTitle = { [Language.English]: 'English', [Language.Russian]: 'Русский', [Language.Spanish]: 'Español', [Language.Korean]: '한국어', [Language.Chinese]: '中文', }; export interface FooterProps { translate: Translate; dispatcher: Dispatcher; } interface FooterState { selectedLanguage: Language; } export class Footer extends React.Component { constructor(props: FooterProps) { super(props); this.state = { selectedLanguage: props.translate.getLanguage(), }; } public render() { const menuItemsBySection: MenuItemsBySection = { [Key.Documentation]: [ { title: '0x.js', path: WebsitePaths.ZeroExJs, }, { title: this.props.translate.get(Key.SmartContracts, Deco.Cap), path: WebsitePaths.SmartContracts, }, { title: this.props.translate.get(Key.Connect, Deco.Cap), path: WebsitePaths.Connect, }, { title: this.props.translate.get(Key.Whitepaper, Deco.Cap), path: WebsitePaths.Whitepaper, isExternal: true, }, { title: this.props.translate.get(Key.Wiki, Deco.Cap), path: WebsitePaths.Wiki, }, { title: this.props.translate.get(Key.Faq, Deco.Cap), path: WebsitePaths.FAQ, }, ], [Key.Community]: [ { title: this.props.translate.get(Key.RocketChat, Deco.Cap), isExternal: true, path: constants.URL_ZEROEX_CHAT, }, { title: this.props.translate.get(Key.Blog, Deco.Cap), isExternal: true, path: constants.URL_BLOG, }, { title: 'Twitter', isExternal: true, path: constants.URL_TWITTER, }, { title: 'Reddit', isExternal: true, path: constants.URL_REDDIT, }, { title: this.props.translate.get(Key.Forum, Deco.Cap), isExternal: true, path: constants.URL_DISCOURSE_FORUM, }, ], [Key.Organization]: [ { title: this.props.translate.get(Key.About, Deco.Cap), isExternal: false, path: WebsitePaths.About, }, { title: this.props.translate.get(Key.Careers, Deco.Cap), isExternal: false, path: WebsitePaths.Jobs, }, { title: this.props.translate.get(Key.Contact, Deco.Cap), isExternal: true, path: 'mailto:team@0xproject.com', }, ], }; const languageMenuItems = _.map(languageToMenuTitle, (menuTitle: string, language: Language) => { return ; }); return (
© ZeroEx, Intl.
{languageMenuItems}
{this._renderHeader(Key.Documentation)} {_.map(menuItemsBySection[Key.Documentation], this._renderMenuItem.bind(this))}
{this._renderHeader(Key.Community)} {_.map(menuItemsBySection[Key.Community], this._renderMenuItem.bind(this))}
{this._renderHeader(Key.Organization)} {_.map(menuItemsBySection[Key.Organization], this._renderMenuItem.bind(this))}
); } private _renderIcon(fileName: string) { return (
); } private _renderMenuItem(item: FooterMenuItem) { const titleToIcon: { [title: string]: string } = { [this.props.translate.get(Key.RocketChat, Deco.Cap)]: 'rocketchat.png', [this.props.translate.get(Key.Blog, Deco.Cap)]: 'medium.png', Twitter: 'twitter.png', Reddit: 'reddit.png', [this.props.translate.get(Key.Forum, Deco.Cap)]: 'discourse.png', }; const iconIfExists = titleToIcon[item.title]; return (
{item.isExternal ? ( {!_.isUndefined(iconIfExists) ? (
{this._renderIcon(iconIfExists)}
{item.title}
) : ( item.title )}
) : (
{!_.isUndefined(iconIfExists) && (
{this._renderIcon(iconIfExists)}
)} {item.title}
)}
); } private _renderHeader(key: Key) { const headerStyle = { color: colors.grey400, letterSpacing: 2, fontFamily: 'Roboto Mono', fontSize: 13, }; return (
{this.props.translate.get(key, Deco.Upper)}
); } private _updateLanguage(e: any, index: number, value: Language) { this.setState({ selectedLanguage: value, }); this.props.dispatcher.updateSelectedLanguage(value); } }