mirror of
https://github.com/jupyterhub/jupyterhub.git
synced 2025-10-17 06:52:59 +00:00
This commit is contained in:
21
jsx/src/components/ReactObjectTableViewer/LICENSE
Normal file
21
jsx/src/components/ReactObjectTableViewer/LICENSE
Normal 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.
|
@@ -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;
|
Reference in New Issue
Block a user