Add orderWatcher to 0x.js docs

This commit is contained in:
Fabio Berger
2017-11-29 18:57:21 -06:00
parent 3d73167f53
commit c57190dead
3 changed files with 14 additions and 1 deletions

View File

@@ -35,6 +35,7 @@ const zeroExJsDocSections = {
tokenRegistry: 'tokenRegistry',
etherToken: 'etherToken',
proxy: 'proxy',
orderWatcher: 'orderWatcher',
types: 'types',
};
@@ -66,6 +67,9 @@ const docsInfoConfig: DocsInfoConfig = {
zeroExJsDocSections.etherToken,
zeroExJsDocSections.proxy,
],
orderWatcher: [
zeroExJsDocSections.orderWatcher,
],
types: [
zeroExJsDocSections.types,
],
@@ -122,6 +126,12 @@ const docsInfoConfig: DocsInfoConfig = {
'LogEvent',
'LogEntry',
'DecodedLogEvent',
'EventWatcherCallback',
'OnOrderStateChangeCallback',
'OrderStateValid',
'OrderStateInvalid',
'OrderState',
'FilterObject',
],
sectionNameToModulePath: {
[zeroExJsDocSections.zeroEx]: ['"src/0x"'],
@@ -133,11 +143,13 @@ const docsInfoConfig: DocsInfoConfig = {
'"src/contract_wrappers/proxy_wrapper"',
'"src/contract_wrappers/token_transfer_proxy_wrapper"',
],
[zeroExJsDocSections.orderWatcher]: ['"src/order_watcher/order_state_watcher"'],
[zeroExJsDocSections.types]: ['"src/types"'],
},
menuSubsectionToVersionWhenIntroduced: {
[zeroExJsDocSections.etherToken]: '0.7.1',
[zeroExJsDocSections.proxy]: '0.8.0',
[zeroExJsDocSections.orderWatcher]: '0.27.1',
},
sections: zeroExJsDocSections,
visibleConstructors: [zeroExJsDocSections.zeroEx],

View File

@@ -35,6 +35,7 @@ const typeToSection: {[typeName: string]: string} = {
EtherTokenWrapper: 'etherToken',
ProxyWrapper: 'proxy',
TokenTransferProxyWrapper: 'proxy',
OrderStateWatcher: 'orderWatcher',
};
interface TypeProps {

View File

@@ -220,7 +220,7 @@ export const typeDocUtils = {
let callPath = (!_.isUndefined(sections.zeroEx) && sectionName !== sections.zeroEx) ?
`${topLevelInterface}${sectionName}.` :
topLevelInterface;
callPath = isConstructor ? '' : callPath;
callPath = isConstructor || entity.name === '__type' ? '' : callPath;
const parameters = _.map(signature.parameters, param => {
return typeDocUtils._convertParameter(param, sections, sectionName);