* migrate selection types * extract selection event into selections.ts * move code-mirror selection functions into selections.ts * move more selection logit out of code mirror and engine connection * add selection functions pure * tidy up naming * write a novel about how selections work * final comments
64 lines
1.6 KiB
TypeScript
64 lines
1.6 KiB
TypeScript
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<Value>(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: '',
|
|
})
|
|
}
|