import { Styles } from '@0xproject/react-shared'; import * as _ from 'lodash'; import * as React from 'react'; import { MenuItem } from 'ts/components/ui/menu_item'; import { Environments, WebsitePaths } from 'ts/types'; import { colors } from 'ts/utils/colors'; import { configs } from 'ts/utils/configs'; export interface MenuTheme { paddingLeft: number; textColor: string; iconColor: string; selectedIconColor: string; selectedBackgroundColor: string; } export interface MenuItemEntry { to: string; labelText: string; iconName: string; } export interface MenuProps { selectedPath?: string; theme?: MenuTheme; menuItemEntries?: MenuItemEntry[]; } export const defaultMenuItemEntries: MenuItemEntry[] = [ { to: `${WebsitePaths.Portal}/account`, labelText: 'Account overview', iconName: 'zmdi-balance-wallet', }, { to: `${WebsitePaths.Portal}/trades`, labelText: 'Trade history', iconName: 'zmdi-format-list-bulleted', }, { to: `${WebsitePaths.Portal}/weth`, labelText: 'Wrapped ETH', iconName: 'zmdi-circle-o', }, { to: `${WebsitePaths.Portal}/direct`, labelText: 'Trade direct', iconName: 'zmdi-swap', }, ]; const DEFAULT_MENU_THEME: MenuTheme = { paddingLeft: 30, textColor: colors.white, iconColor: colors.white, selectedIconColor: colors.white, selectedBackgroundColor: colors.menuItemDefaultSelectedBackground, }; export const Menu: React.StatelessComponent = (props: MenuProps) => { return (
{_.map(props.menuItemEntries, entry => { const isSelected = entry.to === props.selectedPath; return ( ); })}
); }; Menu.defaultProps = { theme: DEFAULT_MENU_THEME, menuItemEntries: defaultMenuItemEntries, }; interface MenuItemLabelProps { title: string; iconName: string; selected: boolean; theme: MenuTheme; } const MenuItemLabel: React.StatelessComponent = (props: MenuItemLabelProps) => { const styles: Styles = { root: { backgroundColor: props.selected ? props.theme.selectedBackgroundColor : undefined, paddingLeft: props.theme.paddingLeft, }, icon: { color: props.selected ? props.theme.selectedIconColor : props.theme.iconColor, fontSize: 20, }, text: { color: props.theme.textColor, fontWeight: props.selected ? 'bold' : 'normal', fontSize: 16, }, }; return (
{props.title}
); };