aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-docs/src/ts/components/custom_enum.tsx
diff options
context:
space:
mode:
authorTom Schmidt <imtomhschmidt@gmail.com>2018-03-10 07:22:59 +0800
committerGitHub <noreply@github.com>2018-03-10 07:22:59 +0800
commit47af38ecb8d59789af9db2079e18ee0b6e589786 (patch)
treeabd75e02d19d7c2e9c7b8df1ebe7152e2d364a40 /packages/react-docs/src/ts/components/custom_enum.tsx
parent654c790c3df3ee857952a1023761f186bb9c777d (diff)
parent7116f100ee194f46d0e34782afa8f680791adc9c (diff)
downloaddexon-0x-contracts-47af38ecb8d59789af9db2079e18ee0b6e589786.tar
dexon-0x-contracts-47af38ecb8d59789af9db2079e18ee0b6e589786.tar.gz
dexon-0x-contracts-47af38ecb8d59789af9db2079e18ee0b6e589786.tar.bz2
dexon-0x-contracts-47af38ecb8d59789af9db2079e18ee0b6e589786.tar.lz
dexon-0x-contracts-47af38ecb8d59789af9db2079e18ee0b6e589786.tar.xz
dexon-0x-contracts-47af38ecb8d59789af9db2079e18ee0b6e589786.tar.zst
dexon-0x-contracts-47af38ecb8d59789af9db2079e18ee0b6e589786.zip
Merge branch 'development' into feature/website/web3-logging
Diffstat (limited to 'packages/react-docs/src/ts/components/custom_enum.tsx')
-rw-r--r--packages/react-docs/src/ts/components/custom_enum.tsx33
1 files changed, 33 insertions, 0 deletions
diff --git a/packages/react-docs/src/ts/components/custom_enum.tsx b/packages/react-docs/src/ts/components/custom_enum.tsx
new file mode 100644
index 000000000..deb33ff1d
--- /dev/null
+++ b/packages/react-docs/src/ts/components/custom_enum.tsx
@@ -0,0 +1,33 @@
+import * as _ from 'lodash';
+import * as React from 'react';
+
+import { CustomType } from '../types';
+import { utils } from '../utils/utils';
+
+const STRING_ENUM_CODE_PREFIX = ' strEnum(';
+
+export interface CustomEnumProps {
+ type: CustomType;
+}
+
+// This component renders custom string enums that was a work-around for versions of
+// TypeScript <2.4.0 that did not support them natively. We keep it around to support
+// older versions of 0x.js <0.9.0
+export function CustomEnum(props: CustomEnumProps) {
+ const type = props.type;
+ if (!_.startsWith(type.defaultValue, STRING_ENUM_CODE_PREFIX)) {
+ utils.consoleLog('We do not yet support `Variable` types that are not strEnums');
+ return null;
+ }
+ // Remove the prefix and postfix, leaving only the strEnum values without quotes.
+ const enumValues = type.defaultValue.slice(10, -3).replace(/'/g, '');
+ return (
+ <span>
+ {`{`}
+ {'\t'}
+ {enumValues}
+ <br />
+ {`}`}
+ </span>
+ );
+}