diff options
author | Fabio Berger <me@fabioberger.com> | 2018-08-03 17:14:01 +0800 |
---|---|---|
committer | Fabio Berger <me@fabioberger.com> | 2018-08-03 17:14:01 +0800 |
commit | 6dd656bdfc5e9878a8a6e332b4ea844556f75d56 (patch) | |
tree | c5fb6f39b4e32142047c667006a5beca5c147813 /packages/website/ts/components | |
parent | b5d98a280352d8f697876b35741fcf7b60b3b569 (diff) | |
download | dexon-sol-tools-6dd656bdfc5e9878a8a6e332b4ea844556f75d56.tar dexon-sol-tools-6dd656bdfc5e9878a8a6e332b4ea844556f75d56.tar.gz dexon-sol-tools-6dd656bdfc5e9878a8a6e332b4ea844556f75d56.tar.bz2 dexon-sol-tools-6dd656bdfc5e9878a8a6e332b4ea844556f75d56.tar.lz dexon-sol-tools-6dd656bdfc5e9878a8a6e332b4ea844556f75d56.tar.xz dexon-sol-tools-6dd656bdfc5e9878a8a6e332b4ea844556f75d56.tar.zst dexon-sol-tools-6dd656bdfc5e9878a8a6e332b4ea844556f75d56.zip |
Add OrderWatcher docs page
Diffstat (limited to 'packages/website/ts/components')
-rw-r--r-- | packages/website/ts/components/top_bar/top_bar.tsx | 29 |
1 files changed, 22 insertions, 7 deletions
diff --git a/packages/website/ts/components/top_bar/top_bar.tsx b/packages/website/ts/components/top_bar/top_bar.tsx index d2f530fb5..c921867d7 100644 --- a/packages/website/ts/components/top_bar/top_bar.tsx +++ b/packages/website/ts/components/top_bar/top_bar.tsx @@ -84,7 +84,9 @@ const DOC_WEBSITE_PATHS_TO_KEY = { [WebsitePaths.ContractWrappers]: Key.ContractWrappers, [WebsitePaths.Connect]: Key.Connect, [WebsitePaths.ZeroExJs]: Key.ZeroExJs, -} + [WebsitePaths.OrderUtils]: Key.OrderUtils, + [WebsitePaths.OrderWatcher]: Key.OrderWatcher, +}; const DEFAULT_HEIGHT = 68; const EXPANDED_HEIGHT = 75; @@ -166,12 +168,28 @@ export class TopBar extends React.Component<TopBarProps, TopBarState> { primaryText={this.props.translate.get(Key.Web3Wrapper, Deco.CapWords)} /> </Link>, - <Link key="subMenuItem-contractWrappers" to={WebsitePaths.ContractWrappers} className="text-decoration-none"> + <Link + key="subMenuItem-contractWrappers" + to={WebsitePaths.ContractWrappers} + className="text-decoration-none" + > <MenuItem style={{ fontSize: styles.menuItem.fontSize }} primaryText={this.props.translate.get(Key.ContractWrappers, Deco.CapWords)} /> </Link>, + <Link key="subMenuItem-orderUtils" to={WebsitePaths.OrderUtils} className="text-decoration-none"> + <MenuItem + style={{ fontSize: styles.menuItem.fontSize }} + primaryText={this.props.translate.get(Key.OrderUtils, Deco.CapWords)} + /> + </Link>, + <Link key="subMenuItem-orderWatcher" to={WebsitePaths.OrderWatcher} className="text-decoration-none"> + <MenuItem + style={{ fontSize: styles.menuItem.fontSize }} + primaryText={this.props.translate.get(Key.OrderWatcher, Deco.CapWords)} + /> + </Link>, <Link key="subMenuItem-sol-compiler" to={WebsitePaths.SolCompiler} className="text-decoration-none"> <MenuItem style={{ fontSize: styles.menuItem.fontSize }} @@ -359,7 +377,7 @@ export class TopBar extends React.Component<TopBarProps, TopBarState> { {this.props.translate.get(key, Deco.Cap)}{' '} {this.props.translate.get(Key.Docs, Deco.Cap)} </MenuItem> - </Link> + </Link>; } })} {!this._isViewingPortal() && ( @@ -391,10 +409,7 @@ export class TopBar extends React.Component<TopBarProps, TopBarState> { const isViewingDocsPage = _.some(DOC_WEBSITE_PATHS_TO_KEY, (_key, websitePath) => { return this._doesUrlInclude(websitePath); }); - if ( - !isViewingDocsPage || - _.isUndefined(this.props.menu) - ) { + if (!isViewingDocsPage || _.isUndefined(this.props.menu)) { return undefined; } return ( |