mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-09 19:44:56 +02:00
39 lines
1.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
import React from 'react';
|
|
import {JsonView} from 'react-json-view-lite';
|
|
import styles from './styles.module.css';
|
|
const paraisoStyles = {
|
|
container: styles.containerParaiso,
|
|
basicChildStyle: styles.basicElementParaiso,
|
|
label: styles.labelParaiso,
|
|
nullValue: styles.nullValueParaiso,
|
|
undefinedValue: styles.undefinedValueParaiso,
|
|
stringValue: styles.stringValueParaiso,
|
|
booleanValue: styles.booleanValueParaiso,
|
|
numberValue: styles.numberValueParaiso,
|
|
otherValue: styles.otherValueParaiso,
|
|
punctuation: styles.punctuationParaiso,
|
|
collapseIcon: styles.collapseIconParaiso,
|
|
expandIcon: styles.expandIconParaiso,
|
|
collapsedContent: styles.collapseContentParaiso,
|
|
};
|
|
export default function DebugJsonView({src, collapseDepth}) {
|
|
return (
|
|
<JsonView
|
|
data={src}
|
|
shouldExpandNode={(idx, value) => {
|
|
if (Array.isArray(value)) {
|
|
return value.length < 5;
|
|
}
|
|
return collapseDepth !== undefined && idx < collapseDepth;
|
|
}}
|
|
style={paraisoStyles}
|
|
/>
|
|
);
|
|
}
|