import { toolTips } from '../../useStore' import { Selections } from 'lib/selections' import { Program, Value } from '../../lang/wasm' import { getNodePathFromSourceRange, getNodeFromPath, } from '../../lang/queryAst' import { PathToNodeMap, getRemoveConstraintsTransforms, transformAstSketchLines, } from '../../lang/std/sketchcombos' import { kclManager } from 'lang/KclSinglton' export function removeConstrainingValuesInfo({ selectionRanges, }: { selectionRanges: Selections }) { const paths = selectionRanges.codeBasedSelections.map(({ range }) => getNodePathFromSourceRange(kclManager.ast, range) ) const nodes = paths.map( (pathToNode) => getNodeFromPath(kclManager.ast, pathToNode).node ) const isAllTooltips = nodes.every( (node) => node?.type === 'CallExpression' && toolTips.includes(node.callee.name as any) ) try { const transforms = getRemoveConstraintsTransforms( selectionRanges, kclManager.ast, 'removeConstrainingValues' ) const enabled = isAllTooltips && transforms.every(Boolean) return { enabled, transforms } } catch (e) { console.error(e) return { enabled: false, transforms: [] } } } export function applyRemoveConstrainingValues({ selectionRanges, }: { selectionRanges: Selections }): { modifiedAst: Program pathToNodeMap: PathToNodeMap } { const { transforms } = removeConstrainingValuesInfo({ selectionRanges }) return transformAstSketchLines({ ast: kclManager.ast, selectionRanges, transformInfos: transforms, programMemory: kclManager.programMemory, referenceSegName: '', }) }