-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Delete to right-click context menu of feature tree operations #5302
Changes from all commits
1e9cf6f
e60cabb
30edf2a
c696f08
2c40e8a
3865637
1b9f5f2
9f93346
e9086c5
913f264
7197b6c
9f323c2
68c8974
6add1d7
0642e49
6c9d14a
b09c240
2bb548c
d3e4b12
fcf3272
3344208
30397ba
5fe3023
482487c
648616c
32e8975
9008648
b3467bb
33468c4
5a5138a
84d1745
d2f0865
4ec4469
774e3ef
1a67d34
481bef8
f2c76b0
663076f
40e4f22
87eabef
d8dc49b
5ef0a1e
72272d5
4bb23bc
42178fa
e063622
ced49f8
4ce6054
36d4830
0fd18c1
d8a9abb
d70ebca
bcf3790
f94671f
84ae567
ee54cdd
45416df
d3afa38
a11d72e
89975f7
b46f4c5
a7f4b0f
3190292
09cfbc1
235e6a1
1f5f429
99d0d49
9ed44b0
d028c77
bc4851b
13abdd0
6a776f0
b725ccc
2353e2d
1200d9b
7a79292
e075622
064a41d
6360b8a
f4f0533
6a16e47
6b1cc36
6df5e70
ab6995b
a8b7328
3379cc4
e60b0e6
2501a98
3e1f858
db895d6
77902d5
5713bfd
40fb6a4
680fc30
2227287
1d8348c
b213834
4a0d852
e1494c9
5580631
5d22308
89b0ccb
8f0a40b
22c0003
11a678d
11eceef
8c1f5e1
58ec610
508e1c9
ad8e306
5ae92bc
cba2349
a686fe9
acc8493
83f458f
ceab2ea
4a8897b
1854064
4a8e582
de526ae
a78ec6c
41340c8
520f899
60dcf9d
dc7b901
5f8ae22
c1db093
01bf804
8a920b6
57c75b2
4e165e7
039092e
34f38df
473443e
f29bd5b
d46f563
bd10c65
500d92d
d7f834f
9a89926
b390e3e
9999e4e
0208eec
b937934
b4d1a36
bf1a42f
3747db0
09f3e6e
42016b7
df89774
4ea1338
acb399a
4acf74f
18d5bb3
be65086
19cd4eb
9b89d89
c95e309
6c14b2b
401b869
1126bf0
9aee967
5e06ffa
1a6c54f
c1ffde2
d48ff15
a9deea8
b8e06d6
c1f2ecc
e08b217
b63806c
bc3d843
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2029,9 +2029,6 @@ profile003 = circle({ center = [6.92, -4.2], radius = 3.16 }, sketch001) | |
await moveToClearToolBarPopover() | ||
await pointOnSegment({ shouldDbClick: true }) | ||
await page.waitForTimeout(600) | ||
|
||
await toolbar.lineBtn.click() | ||
await page.waitForTimeout(100) | ||
Comment on lines
-2032
to
-2034
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's the fix we talked about, also done separately at #5425 |
||
}) | ||
|
||
await test.step('select and delete code for a profile', async () => {}) | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
import { Selection } from 'lib/selections' | ||
import { getFaceDetails } from 'clientSideScene/sceneEntities' | ||
import { deleteFromSelection } from 'lang/modifyAst' | ||
import { codeManager, engineCommandManager, kclManager } from 'lib/singletons' | ||
import { err } from 'lib/trap' | ||
import { executeAst } from 'lang/langHelpers' | ||
|
||
export const deletionErrorMessage = | ||
'Unable to delete selection. Please edit manually in code pane.' | ||
|
||
export async function deleteSelectionPromise( | ||
selection: Selection | ||
): Promise<Error | void> { | ||
Comment on lines
+11
to
+13
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This replaces the old |
||
let ast = kclManager.ast | ||
|
||
const modifiedAst = await deleteFromSelection( | ||
ast, | ||
selection, | ||
kclManager.variables, | ||
engineCommandManager.artifactGraph, | ||
getFaceDetails | ||
) | ||
if (err(modifiedAst)) { | ||
return new Error(deletionErrorMessage) | ||
} | ||
|
||
const testExecute = await executeAst({ | ||
ast: modifiedAst, | ||
engineCommandManager, | ||
isMock: true, | ||
}) | ||
if (testExecute.errors.length) { | ||
return new Error(deletionErrorMessage) | ||
} | ||
|
||
await kclManager.updateAst(modifiedAst, true) | ||
await codeManager.updateEditorWithAstAndWriteToFile(modifiedAst) | ||
} |
Large diffs are not rendered by default.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[nit]
This is something you could consider rolling into the toolbar fixture
Not exactly sure of what API we'd want @franknoirot might have some thoughts since I think he added the
getFeatureTreeOperation
it could be rolling into that maybe, but I'm not sure.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah agreed that we'll definitely more of that type of testing. Let me create an issue for this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#5419