aboutsummaryrefslogtreecommitdiffstats
path: root/packages
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-10-16 00:43:45 +0800
committerFabio Berger <me@fabioberger.com>2018-10-16 00:43:45 +0800
commit6bf27ac57fe895cc5e2cd990c4186fd05d34d77e (patch)
treeb9451ad1a3372cb72e311999e82d49e3c6d0568f /packages
parentce151f630d10664353ff1c9172a7495557792abe (diff)
downloaddexon-0x-contracts-6bf27ac57fe895cc5e2cd990c4186fd05d34d77e.tar
dexon-0x-contracts-6bf27ac57fe895cc5e2cd990c4186fd05d34d77e.tar.gz
dexon-0x-contracts-6bf27ac57fe895cc5e2cd990c4186fd05d34d77e.tar.bz2
dexon-0x-contracts-6bf27ac57fe895cc5e2cd990c4186fd05d34d77e.tar.lz
dexon-0x-contracts-6bf27ac57fe895cc5e2cd990c4186fd05d34d77e.tar.xz
dexon-0x-contracts-6bf27ac57fe895cc5e2cd990c4186fd05d34d77e.tar.zst
dexon-0x-contracts-6bf27ac57fe895cc5e2cd990c4186fd05d34d77e.zip
chore: replace Github with Wiki in topBar and refactor so can display internal & external links
Diffstat (limited to 'packages')
-rw-r--r--packages/website/ts/components/documentation/docs_top_bar.tsx36
1 files changed, 21 insertions, 15 deletions
diff --git a/packages/website/ts/components/documentation/docs_top_bar.tsx b/packages/website/ts/components/documentation/docs_top_bar.tsx
index 28a205d7a..2c37f8387 100644
--- a/packages/website/ts/components/documentation/docs_top_bar.tsx
+++ b/packages/website/ts/components/documentation/docs_top_bar.tsx
@@ -22,11 +22,10 @@ interface DocsTopBarState {
}
interface MenuItemInfo {
- title: string;
- url: string;
iconUrl: string;
fontColor: string;
fontWeight?: string;
+ link: ALink;
}
export class DocsTopBar extends React.Component<DocsTopBarProps, DocsTopBarState> {
@@ -46,20 +45,28 @@ export class DocsTopBar extends React.Component<DocsTopBarProps, DocsTopBarState
public render(): React.ReactNode {
const menuItemInfos: MenuItemInfo[] = [
{
- title: this.props.translate.get(Key.Github, Deco.Cap),
- url: constants.URL_GITHUB_ORG,
+ link: {
+ title: this.props.translate.get(Key.Wiki, Deco.Cap),
+ to: WebsitePaths.Wiki,
+ },
iconUrl: '/images/developers/github_icon.svg',
fontColor: colors.linkSectionGrey,
},
{
- title: this.props.translate.get(Key.Forum, Deco.Cap),
- url: constants.URL_FORUM,
+ link: {
+ title: this.props.translate.get(Key.Forum, Deco.Cap),
+ to: constants.URL_FORUM,
+ shouldOpenInNewTab: true,
+ },
iconUrl: '/images/developers/forum_icon.svg',
fontColor: colors.linkSectionGrey,
},
{
- title: this.props.translate.get(Key.LiveChat, Deco.Cap),
- url: constants.URL_ZEROEX_CHAT,
+ link: {
+ title: this.props.translate.get(Key.LiveChat, Deco.Cap),
+ to: constants.URL_ZEROEX_CHAT,
+ shouldOpenInNewTab: true,
+ },
iconUrl: '/images/developers/chat_icon.svg',
fontColor: colors.lightLinkBlue,
fontWeight: 'bold',
@@ -113,11 +120,10 @@ export class DocsTopBar extends React.Component<DocsTopBarProps, DocsTopBarState
private _renderMenuItems(menuItemInfos: MenuItemInfo[]): React.ReactNode {
const menuItems = _.map(menuItemInfos, menuItemInfo => {
return (
- <a
- key={`menu-item-${menuItemInfo.title}`}
- href={menuItemInfo.url}
- target="_blank"
- className="text-decoration-none"
+ <Link
+ key={`menu-item-${menuItemInfo.link.title}`}
+ to={menuItemInfo.link.to}
+ shouldOpenInNewTab={menuItemInfo.link.shouldOpenInNewTab}
>
<Container className="flex">
<img src={menuItemInfo.iconUrl} width="18" />
@@ -127,11 +133,11 @@ export class DocsTopBar extends React.Component<DocsTopBarProps, DocsTopBarState
fontWeight={menuItemInfo.fontWeight || 'normal'}
fontColor={menuItemInfo.fontColor}
>
- {menuItemInfo.title}
+ {menuItemInfo.link.title}
</Text>
</Container>
</Container>
- </a>
+ </Link>
);
});
return menuItems;