import React from 'react';
import { Button, View, Text } from 'react-native';
const theme = {
OBJECT_PREVIEW_ARRAY_MAX_PROPERTIES: 10,
OBJECT_PREVIEW_OBJECT_MAX_PROPERTIES: 5,
OBJECT_NAME_COLOR: 'rgb(136, 19, 145)',
OBJECT_VALUE_NULL_COLOR: 'rgb(128, 128, 128)',
OBJECT_VALUE_UNDEFINED_COLOR: 'rgb(128, 128, 128)',
OBJECT_VALUE_REGEXP_COLOR: 'rgb(196, 26, 22)',
OBJECT_VALUE_STRING_COLOR: 'rgb(196, 26, 22)',
OBJECT_VALUE_SYMBOL_COLOR: 'rgb(196, 26, 22)',
OBJECT_VALUE_NUMBER_COLOR: 'rgb(28, 0, 207)',
OBJECT_VALUE_BOOLEAN_COLOR: 'rgb(28, 0, 207)',
OBJECT_VALUE_FUNCTION_PREFIX_COLOR: 'rgb(13, 34, 170)',
ARROW_COLOR: '#6e6e6e',
ARROW_MARGIN_RIGHT: 3,
ARROW_FONT_SIZE: 12,
ARROW_ANIMATION_DURATION: '0',
};
class Inspect extends React.Component<{ name?: string; value: any }, { expanded: boolean }> {
state = { expanded: false };
render() {
const { name, value } = this.props;
const { expanded } = this.state;
const toggle = (
{name &&
((Array.isArray(value) && value.length) ||
(value &&
typeof value === 'object' &&
!Array.isArray(value) &&
Object.keys(value).length)) ? (
);
const nameComponent = name ? (
{name}
) : null;
if (Array.isArray(value)) {
if (name) {
return (
<>
{toggle}
{nameComponent}
{': ' + (value.length === 0 ? '[]' : expanded ? '[' : '[...]')}
{expanded ? (
{value.map((v, i) => (
))}
{']'}
) : null}
>
);
}
return (
{'['}
{value.map((v, i) => (
))}
{']'}
);
}
if (value && typeof value === 'object' && !(value instanceof RegExp)) {
if (name) {
return (
<>
{toggle}
{nameComponent}
{': ' + (Object.keys(value).length === 0 ? '{}' : expanded ? '{' : '{...}')}
{expanded ? (
{Object.entries(value).map(([key, v]) => (
))}
{'}'}
) : null}
>
);
}
return (
{'{'}
{Object.entries(value).map(([key, v]) => (
))}
{'}'}
);
}
if (name) {
return (
{toggle}
{nameComponent}
{': '}
);
}
return (
);
}
}
function Value({ value }: { value: any }) {
if (value === null) {
return null;
}
if (value === undefined) {
return undefined;
}
if (value instanceof RegExp) {
return (
{'/' + value.source + '/' + value.flags}
);
}
switch (typeof value) {
case 'string':
return (
{JSON.stringify(value)}
);
case 'number':
return (
{JSON.stringify(value)}
);
case 'boolean':
return (
{JSON.stringify(value)}
);
case 'function':
return [Function];
}
return {JSON.stringify(value)};
}
export default Inspect;