blob: e971a012a9bba29de12c996e74876662389b51d2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import { logUtils } from '@0x/utils';
import * as _ from 'lodash';
import * as React from 'react';
import { CustomType } from '@0x/types';
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 const CustomEnum = (props: CustomEnumProps) => {
const type = props.type;
if (!_.startsWith(type.defaultValue, STRING_ENUM_CODE_PREFIX)) {
logUtils.log('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>
);
};
|