This commit is contained in:
Simon Li
2023-04-14 19:30:48 +01:00
parent 7b496a5b4a
commit 8a3f5d8f2e
2 changed files with 110 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2021 jinkwon.lee<uzmystic@gmail.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

View File

@@ -0,0 +1,89 @@
import React, {
CSSProperties,
FC
} from 'react';
import { TableViewerLayoutType } from './types';
export interface PropTypes {
data?: Record<string, unknown>;
style?: CSSProperties;
keyStyle?: CSSProperties;
valueStyle?: CSSProperties;
className?: string;
layout?: TableViewerLayoutType;
}
const ReactObjectTableViewer: FC<PropTypes> = (props: PropTypes) => {
const opt = {
layout: 'vertical' as TableViewerLayoutType,
...props,
};
const data: any = opt.data;
const keys: string[] = Object.keys(data || {}) || [];
return (
<table
className={opt.className}
style={{
...opt.style,
}}
>
{opt.layout === 'vertical' && (
<tbody>
{keys.map((k, key) => {
const val: any = data[k];
const isObject: boolean = typeof val === 'object';
return <tr key={key}>
<th
style={{
...opt.keyStyle,
}}
>{k}</th>
{isObject && <td><ReactObjectTableViewer {...opt} data={val}/></td>}
{!isObject && <td
style={{
whiteSpace: 'nowrap',
...opt.valueStyle,
}}
>{`${val}`}</td>}
</tr>;
})}
</tbody>
)}
{opt.layout === 'horizontal' && (
<tbody>
<tr>
{keys.map((k, key) => (<th
key={key}
style={{
...opt.keyStyle,
}}
>{k}</th>))}
</tr>
<tr>
{keys.map((k, key) => {
const val: any = data[k];
const isObject: boolean = typeof val === 'object';
return <React.Fragment key={key}>
{isObject && <td><ReactObjectTableViewer {...opt} data={val}/></td>}
{!isObject && <td
key={key}
style={{
whiteSpace: 'nowrap',
...opt.valueStyle,
}}
>{`${val}`}</td>}
</React.Fragment>;
})}
</tr>
</tbody>
)}
</table>
);
};
export default ReactObjectTableViewer;