mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-02-23 15:02:52 +03:00
* Remove UNSAFE method from JSONTree * Bump peer dep * Fix types * Remove proptypes * Remove unused * shouldExpandNode => shouldExpandNodeInitially * Cleanup * Update usages * Tighten types * Create four-parrots-poke.md * Format * Fix inspector-monitor types * Fix log-monitor types * Fix rtk-query-monitor types * Fix type
42 lines
1.0 KiB
TypeScript
42 lines
1.0 KiB
TypeScript
import React from 'react';
|
|
import JSONNestedNode from './JSONNestedNode';
|
|
import type { CommonInternalProps } from './types';
|
|
|
|
// Returns the "n Items" string for this node,
|
|
// generating and caching it if it hasn't been created yet.
|
|
function createItemString(data: any, limit: number) {
|
|
let count = 0;
|
|
let hasMore = false;
|
|
if (Number.isSafeInteger(data.size)) {
|
|
count = data.size;
|
|
} else {
|
|
// eslint-disable-next-line no-unused-vars
|
|
for (const entry of data) {
|
|
if (limit && count + 1 > limit) {
|
|
hasMore = true;
|
|
break;
|
|
}
|
|
count += 1;
|
|
}
|
|
}
|
|
return `${hasMore ? '>' : ''}${count} ${count !== 1 ? 'entries' : 'entry'}`;
|
|
}
|
|
|
|
interface Props extends CommonInternalProps {
|
|
data: unknown;
|
|
nodeType: string;
|
|
}
|
|
|
|
// Configures <JSONNestedNode> to render an iterable
|
|
export default function JSONIterableNode(props: Props) {
|
|
return (
|
|
<JSONNestedNode
|
|
{...props}
|
|
nodeType="Iterable"
|
|
nodeTypeIndicator="()"
|
|
createItemString={createItemString}
|
|
expandable
|
|
/>
|
|
);
|
|
}
|