1
0
mirror of https://github.com/garraflavatra/rolens.git synced 2025-04-20 01:01:03 +00:00
rolens/frontend/src/components/objectgrid.svelte

85 lines
1.9 KiB
Svelte

<script>
import Grid from './grid.svelte';
export let data = [];
export let key = '_id';
export let activePath = [];
export let hideObjectIndicators = false;
const columns = [
{ key: 'key', label: 'Key' },
{ key: 'value', label: 'Value' },
{ key: 'type', label: 'Type' },
];
let items = [];
$: if (data) {
items = [];
if (Array.isArray(data)) {
for (const item of data) {
const newItem = {};
newItem.key = item[key];
newItem.type = getType(item[key]);
newItem.children = dissectObject(item);
newItem.menu = item.menu;
items = [ ...items, newItem ];
}
}
else {
items = dissectObject(data);
}
}
function getType(value) {
if (Array.isArray(value)) {
return `array (${value.length} item${value.length === 1 ? '' : 's'})`;
}
else if (typeof value === 'number') {
if (value.toString().includes('.')) {
return 'double';
}
return 'integer';
}
// else if (new Date(value).toString() !== 'Invalid Date') {
// return 'date';
// }
else if (value === null) {
return 'null';
}
else if (typeof value === 'object') {
const keys = Object.keys(value);
return `object (${keys.length} item${keys.length === 1 ? '' : 's'})`;
}
else {
return typeof value;
}
}
function dissectObject(object) {
const entries = [ ...Array.isArray(object) ? object.entries() : Object.entries(object) ];
return entries.map(([ key, value ]) => {
key = key + '';
const type = getType(value);
const child = { key, value, type, menu: value?.menu };
if (type.startsWith('object') || type.startsWith('array')) {
child.children = dissectObject(value);
}
return child;
});
}
</script>
<Grid
key="key"
on:select
on:trigger
bind:activePath
{columns}
{items}
{hideObjectIndicators}
/>