* accessing toast error correctly * wrapping try-catch around fs.stat on cli arg * implemented array push * changing arg execution order for sketch arc * addressing sketchFromKclValue error for Sketches in Uservals * addressing 'update to He inside a test not wrapped in act(...' error * yarn fmt fix * implemented polygon stdlib function * changing polygon inscribed arg description in docs * addressing cargo clippy warning * Add tangential arc unavailable reason tooltip * fixing tsc errors * preventing hidden dirs from showing up as projects and prohibits renaming projects as hidden * adding unit test for desktop listProjects * showing no completions when last typed word is a number * fmt * Make clippy happy * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest) * yarn tsc fix: added missing toast import in Home.tsx * A snapshot a day keeps the bugs away! 📷🐛 (OS: windows-latest) * regenerating markdown docs for incoming merge from main --------- Co-authored-by: arnav <arnav@agupta.org> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
119 lines
3.6 KiB
TypeScript
119 lines
3.6 KiB
TypeScript
import toast from 'react-hot-toast'
|
|
import ReactJson from 'react-json-view'
|
|
import { useMemo } from 'react'
|
|
import {
|
|
ProgramMemory,
|
|
Path,
|
|
ExtrudeSurface,
|
|
sketchFromKclValue,
|
|
} from 'lang/wasm'
|
|
import { useKclContext } from 'lang/KclProvider'
|
|
import { useResolvedTheme } from 'hooks/useResolvedTheme'
|
|
import { ActionButton } from 'components/ActionButton'
|
|
import { err, trap } from 'lib/trap'
|
|
import Tooltip from 'components/Tooltip'
|
|
import { useModelingContext } from 'hooks/useModelingContext'
|
|
|
|
export const MemoryPaneMenu = () => {
|
|
const { programMemory } = useKclContext()
|
|
|
|
function copyProgramMemoryToClipboard() {
|
|
if (globalThis && 'navigator' in globalThis) {
|
|
navigator.clipboard
|
|
.writeText(JSON.stringify(programMemory))
|
|
.then(() => toast.success('Program memory copied to clipboard'))
|
|
.catch((e) =>
|
|
trap(new Error('Failed to copy program memory to clipboard'))
|
|
)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<>
|
|
<ActionButton
|
|
Element="button"
|
|
iconStart={{
|
|
icon: 'clipboardPlus',
|
|
iconClassName: '!text-current',
|
|
bgClassName: 'bg-transparent',
|
|
}}
|
|
className="!p-0 !bg-transparent hover:text-primary border-transparent hover:border-primary !outline-none"
|
|
onClick={copyProgramMemoryToClipboard}
|
|
>
|
|
<Tooltip position="bottom-right" delay={750}>
|
|
Copy to clipboard
|
|
</Tooltip>
|
|
</ActionButton>
|
|
</>
|
|
)
|
|
}
|
|
|
|
export const MemoryPane = () => {
|
|
const theme = useResolvedTheme()
|
|
const { programMemory } = useKclContext()
|
|
const { state } = useModelingContext()
|
|
const ProcessedMemory = useMemo(
|
|
() => processMemory(programMemory),
|
|
[programMemory]
|
|
)
|
|
return (
|
|
<div className="h-full relative">
|
|
<div className="absolute inset-0 p-2 flex flex-col items-start">
|
|
<div className="overflow-auto h-full w-full pb-12">
|
|
<ReactJson
|
|
src={ProcessedMemory}
|
|
collapsed={1}
|
|
collapseStringsAfterLength={60}
|
|
enableClipboard={false}
|
|
displayDataTypes={false}
|
|
displayObjectSize={true}
|
|
indentWidth={2}
|
|
quotesOnKeys={false}
|
|
sortKeys={true}
|
|
name={false}
|
|
theme={theme === 'light' ? 'rjv-default' : 'monokai'}
|
|
/>
|
|
</div>
|
|
</div>
|
|
{state.matches('Sketch') && (
|
|
<div
|
|
className="absolute inset-0 dark:bg-chalkboard-90/80 bg-chalkboard-10/80 cursor-not-allowed"
|
|
title="Variables won't update in sketch mode"
|
|
></div>
|
|
)}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export const processMemory = (programMemory: ProgramMemory) => {
|
|
const processedMemory: any = {}
|
|
for (const [key, val] of programMemory?.visibleEntries()) {
|
|
if (
|
|
(val.type === 'UserVal' && val.value.type === 'Sketch') ||
|
|
// @ts-ignore
|
|
(val.type !== 'Function' && val.type !== 'UserVal')
|
|
) {
|
|
const sg = sketchFromKclValue(val, key)
|
|
if (val.type === 'Solid') {
|
|
processedMemory[key] = val.value.map(({ ...rest }: ExtrudeSurface) => {
|
|
return rest
|
|
})
|
|
} else if (!err(sg)) {
|
|
processedMemory[key] = sg.paths.map(({ __geoMeta, ...rest }: Path) => {
|
|
return rest
|
|
})
|
|
} else {
|
|
processedMemory[key] = val.value
|
|
}
|
|
//@ts-ignore
|
|
} else if (val.type === 'Function') {
|
|
processedMemory[key] = `__function(${(val as any)?.expression?.params
|
|
?.map?.(({ identifier }: any) => identifier?.name || '')
|
|
.join(', ')})__`
|
|
} else {
|
|
processedMemory[key] = val.value
|
|
}
|
|
}
|
|
return processedMemory
|
|
}
|