200 lines
4.7 KiB
TypeScript
Raw Normal View History

2023-06-29 11:06:58 +00:00
import React from 'react'
import { Box, Flex } from '@chakra-ui/react'
import { safe } from '~/functions/safe'
2023-06-28 08:25:17 +00:00
export const Thingtime = props => {
// const cuid = React.useMemo(() => {
// return Math.random().toString(36).substring(7)
// }, [])
const cuid = React.useRef(Math.random().toString(36).substring(7))
2023-06-28 08:25:17 +00:00
const thing = React.useMemo(() => {
return props.thing
}, [props.thing])
2023-06-29 11:06:58 +00:00
const mode = React.useMemo(() => {
return 'view'
}, [])
const validKeyTypes = React.useMemo(() => {
return ['object', 'array']
}, [])
const keys = React.useMemo(() => {
if (validKeyTypes?.includes(typeof thing)) {
return Object.keys(thing)
} else {
return []
}
}, [thing, validKeyTypes])
React.useEffect(() => {
if (window?.thingtime?.things) {
window.thingtime.things.count =
(window?.thingtime?.things?.count || 1) + 1
}
}, [])
const type = React.useMemo(() => {
return typeof thing
}, [thing])
const renderableValue = React.useMemo(() => {
if (type === 'string') {
return thing
} else if (type === 'number') {
return thing
} else if (type === 'boolean') {
return thing ? 'true' : 'false'
} else if (type === 'object') {
return JSON.stringify(thing, null, 2)
} else {
return null
}
}, [thing, type])
const flattenedKeys = React.useMemo(() => {
// create an array of all keys on object so that if object is
// { my: { child: {} } }
// the array looks like
// ['my', 'my.child']
const ret = []
try {
const randId = Math.random().toString(36).substring(7)
window.thingtime.tmp[randId] = 0
const recurse = (obj, prefix) => {
Object.keys(obj).forEach(key => {
if (typeof obj[key] === 'object') {
if (window?.thingtime?.tmp[randId] < 1000) {
window.thingtime.tmp[randId]++
recurse(obj[key], `${prefix}${prefix && '.'}${key}`)
} else {
console.error('Recursion limit reached in Thingtime.tsx')
}
} else {
ret.push({
key: `${prefix}${prefix && '.'}${key}`,
human: `${prefix}${prefix && ' '}${key}`
})
}
})
}
console.log('nik ret 1', thing)
recurse(thing, '')
} catch (err) {
// console.error('Error in Thingtime.tsx creating flattenedKeys', err)
}
console.log('nik ret 2', ret)
return ret
}, [thing])
let value = null
let editableValue = null
2023-06-29 11:06:58 +00:00
const keysToUse = keys
// const keysToUse = flattenedKeys
const template1Modes = ['view', 'edit']
if (template1Modes?.includes(mode)) {
console.log('nik keys', keys)
if (keys?.length) {
value = (
2023-06-29 11:06:58 +00:00
<Flex
position='relative'
flexDir='column'
minW='500px'
maxW='100%'
pl={6}
>
{keysToUse?.length &&
keysToUse.map((key, idx) => {
if (!key?.human) {
key = {
human: key,
key: key
}
}
const nextThing = thing[key?.key]
return (
<Thingtime
key={idx}
parent={thing}
path={key}
thing={nextThing}
></Thingtime>
)
})}
</Flex>
)
} else {
editableValue = (
<Box
contentEditable={mode === 'edit'}
border='none'
outline={'none'}
py={2}
fontSize={'20px'}
>
{renderableValue}
</Box>
2023-06-29 11:06:58 +00:00
)
}
}
const contextMenu = (
<Flex userSelect={'none'} position='absolute' top={0} right={0}>
2023-06-29 11:06:58 +00:00
Settings
</Flex>
)
const [showContextMenu, setShowContextMenu] = React.useState(false)
const path = React.useMemo(() => {
return <Flex fontSize='12px'>{props?.path?.human}</Flex>
}, [props?.path])
const handleMouseEvent = React.useCallback(
e => {
const target = e?.target
// extract cuid from className
console.log('nik eh', target?.className, cuid)
const className = target?.className
if (className?.includes(cuid?.current)) {
setShowContextMenu(e?.type === 'mouseenter')
}
},
[cuid]
)
console.log('nik cuid', cuid)
return safe(
2023-06-29 11:06:58 +00:00
<Flex
onMouseEnter={handleMouseEvent}
onMouseLeave={handleMouseEvent}
2023-06-29 11:06:58 +00:00
position='relative'
flexDir='column'
py={3}
2023-06-29 11:06:58 +00:00
{...props}
className={`thing-${cuid?.current}`}
2023-06-29 11:06:58 +00:00
>
2023-06-29 11:41:42 +00:00
{/* {cuid?.current} */}
{path}
2023-06-29 11:06:58 +00:00
{showContextMenu && contextMenu}
{editableValue}
{value}
2023-06-29 11:06:58 +00:00
</Flex>
)
}