aboutsummaryrefslogtreecommitdiffstats
path: root/packages/react-docs/src/components/enum.tsx
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-03-14 22:18:16 +0800
committerGitHub <noreply@github.com>2018-03-14 22:18:16 +0800
commite16feb27f4ec1987259a87f360824a0158bd8b10 (patch)
treee94cb3bc89e215c4df38ab161379023ab8e0c4e9 /packages/react-docs/src/components/enum.tsx
parent3f3e8be004818ddaa1921b3dff12bdd46052278b (diff)
parent83ae7ba08d55fa964bf7b7a985aea0fe1520c5c7 (diff)
downloaddexon-sol-tools-e16feb27f4ec1987259a87f360824a0158bd8b10.tar
dexon-sol-tools-e16feb27f4ec1987259a87f360824a0158bd8b10.tar.gz
dexon-sol-tools-e16feb27f4ec1987259a87f360824a0158bd8b10.tar.bz2
dexon-sol-tools-e16feb27f4ec1987259a87f360824a0158bd8b10.tar.lz
dexon-sol-tools-e16feb27f4ec1987259a87f360824a0158bd8b10.tar.xz
dexon-sol-tools-e16feb27f4ec1987259a87f360824a0158bd8b10.tar.zst
dexon-sol-tools-e16feb27f4ec1987259a87f360824a0158bd8b10.zip
Merge pull request #450 from 0xProject/convertScriptsToTs
Convert Scripts to TS & Other Misc. Fixes
Diffstat (limited to 'packages/react-docs/src/components/enum.tsx')
-rw-r--r--packages/react-docs/src/components/enum.tsx23
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/react-docs/src/components/enum.tsx b/packages/react-docs/src/components/enum.tsx
new file mode 100644
index 000000000..37f82f26e
--- /dev/null
+++ b/packages/react-docs/src/components/enum.tsx
@@ -0,0 +1,23 @@
+import * as _ from 'lodash';
+import * as React from 'react';
+
+import { EnumValue } from '../types';
+
+export interface EnumProps {
+ values: EnumValue[];
+}
+
+export function Enum(props: EnumProps) {
+ const values = _.map(props.values, (value, i) => {
+ const defaultValueIfAny = !_.isUndefined(value.defaultValue) ? ` = ${value.defaultValue}` : '';
+ return `\n\t${value.name}${defaultValueIfAny},`;
+ });
+ return (
+ <span>
+ {`{`}
+ {values}
+ <br />
+ {`}`}
+ </span>
+ );
+}