Project

General

Profile

Actions

Feature #22605

open

Dialog box to select workflow run project opens automatically

Added by Peter Amstutz about 1 month ago. Updated about 1 hour ago.

Status:
In Progress
Priority:
Normal
Assigned To:
Category:
Workbench2
Target version:
Story points:
-
Release relationship:
Auto

Description

When you are launching a workflow ("Step 2" opens) it should immediately open the dialog to set "Project where the workflow will run".

If there is a starting project provided, and the starting project is writable by the user, the dialog box should have that project selected by default -- this ensures that in the current case where the selected project is the right one, the user only has to click "ok". Otherwise, start with nothing selected.

The title of the dialog box should say "Project where the workflow will run".


Files

2025-03-14_11-21-33.mkv (523 KB) 2025-03-14_11-21-33.mkv Peter Amstutz, 03/14/2025 03:26 PM
2025-03-14_11-32-00.mkv (326 KB) 2025-03-14_11-32-00.mkv Peter Amstutz, 03/14/2025 03:33 PM

Subtasks 2 (2 open0 closed)

Task #22639: Review 22605-open-wf-dialogIn ProgressLisa Knox04/01/2025Actions
Task #22681: ReviewIn ProgressPeter Amstutz03/19/2025Actions

Related issues 1 (0 open1 closed)

Related to Arvados - Bug #22673: Write E2E tests for wf treepickerDuplicateLisa KnoxActions
Actions #1

Updated by Peter Amstutz about 1 month ago

  • Position changed from -940160 to -940153
Actions #2

Updated by Peter Amstutz about 1 month ago

  • Description updated (diff)
Actions #3

Updated by Peter Amstutz about 1 month ago

  • Description updated (diff)
Actions #4

Updated by Peter Amstutz about 1 month ago

  • Target version changed from Development 2025-03-19 to Development 2025-02-26
  • Assigned To set to Stephen Smith
Actions #5

Updated by Peter Amstutz about 1 month ago

  • Target version changed from Development 2025-02-26 to Development 2025-03-19
Actions #6

Updated by Peter Amstutz about 1 month ago

  • Assigned To deleted (Stephen Smith)
Actions #7

Updated by Lisa Knox about 1 month ago

  • Assigned To set to Lisa Knox
  • Status changed from New to In Progress
Actions #8

Updated by Brett Smith 29 days ago

  • Subtask #22639 added
Actions #9

Updated by Peter Amstutz 24 days ago

  • Release set to 75
Actions #10

Updated by Lisa Knox 24 days ago

22605-open-wf-dialog @ dac29ddce86496a44545957cb1cde74c4b8a4567
developer-run-tests-services-workbench2: #1461

  • ✅ All agreed upon points are implemented / addressed.
  • n/a Anything not implemented (discovered or discussed during work) has a follow-up story.
  • ✅ Code is tested and passing, both automated and manual, what manual testing was done is described
  • ✅ New or changed UX/UX and has gotten feedback from stakeholders.
  • n/a Documentation has been updated.
  • ✅ Behaves appropriately at the intended scale (describe intended scale).
  • ✅ Considered backwards and forwards compatibility issues between client and server.
  • ✅ Follows our coding standards and GUI style guidelines.

The original issue (iirc) was that a user could select a workflow, click "RUN WORKFLOW", see the target location field as blank (if they noticed it at all) and then start the run and have it appear in an unexpected location. The main reason for this is that there is always a default selected location, but that is not being communicated to the user. There was also the issue where under certain circumstances, the 'cancel' button would do the same thing as the 'ok' button. Now the project picker form always opens the first time the "Project where the process will run" input renders, the target project is always visible to the user, and the logic around the form submission is corrected.

Actions #11

Updated by Peter Amstutz 24 days ago

Stephen may have implementation feedback but I have a couple of behavior notes:

  • The dialog box just says "Choose a project" and not "Choose project where the workflow will run" as described in the requirements
  • The default selected project should be selected in the tree (with the tree expanded as necessary); Stephen can provide more info but I know he had worked on this for another ticket.

I wasn't running the latest version of the branch, so hold on.

Actions #12

Updated by Peter Amstutz 24 days ago

Revised notes, looking at the correct version (dac29ddce86496a44545957cb1cde74c4b8a4567) now

  • The default selected project should be selected in the tree (with the tree expanded as necessary); Stephen can provide more info but I know he had worked on this for another ticket.
  • This sequence is confusing:
    1. Run a workflow where the default project is not writable.
    2. When the dialog appears, it appears that the home project is selected. Click OK without interacting with anything.
    3. The "Run Workflow" button will remain disabled -- when it would have been enabled if you explicitly selected a project
Actions #13

Updated by Stephen Smith 23 days ago

Overall I didn't see any minor things that stuck out to me, so the main feedback I have is that you can accomplish pre-selecting / expanding the tree to the selected uuid by using currentUuids={[uuid]} when calling the ProjectsTreePicker, see DirectoryTreePickerField for an example - you shouldn't need to pass include* since this is just for projects. At risk of making some of the work redundant, I think the best approach would be to set the input value to the default value when the second stage of the form open - if I'm understanding the current implementation correctly, the input is handling both the default and input value at the same time, whereas if we load the default value into the input before anything happens then the input should be none the wiser and not need any special handling - also I'm pretty sure using currentUuids (which triggers the tree to automatically load and expand) should also handle loading the necessary resources along the way.

Actions #14

Updated by Lisa Knox 21 days ago

22605-open-wf-dialog @ 6f9e7bff40b0fc65e713dea3994a7bba1a49547a

developer-run-tests-services-workbench2: #1462

This sequence is confusing...

  • Addressed by providing a fallback check to the 'valid' selector in RunProcessSecondStepForm. Basically, the 'owner' field of the redux form will always be populated when RunProcessInputsForm renders, so if we know the RunProcessInputsForm is rendering, we can ignore that bit of validation and not disable the Run Workflow button. When opening the project picker on a project where the user does not have write access, the selection will default to that user's root project.

Overall I didn't see any minor things that stuck out to me, so the main feedback I have is that you can accomplish pre-selecting / expanding the tree to the selected uuid by using currentUuids={[uuid]}...

  • This worked just fine, but some adjustments had to be made so that the user's root project would expand.

At risk of making some of the work redundant, I think the best approach would be to set the input value to the default value when the second stage of the form open - if I'm understanding the current implementation correctly, the input is handling both the default and input value at the same time, whereas if we load the default value into the input before anything happens then the input should be none the wiser and not need any special handling

  • This would mean determining what the default project is two component tree levels up from where it is actually being used. Since the default project needs to be determined within the ProjectInputComponent anyway, this would mean going through the work of determining the default project twice, all to save less than a line of code. Unless there is a compelling reason to change this, I think it's better to leave it as-is.

also I'm pretty sure using currentUuids (which triggers the tree to automatically load and expand) should also handle loading the necessary resources along the way.

  • It doesn't load the user's root project if it is not already an ancestor of the selected project. If I attempt to run a wf from a project that was shared with me, for example, and I click "Home Projects" in the picker, it will not show up on the right side because it is not loaded.
Actions #15

Updated by Stephen Smith 20 days ago

This lgtm!

Actions #16

Updated by Peter Amstutz 20 days ago

I'm seeing a couple of things:

1. If you go to the project the workflow is located in and you have write access, then hit "run workflow" (seems to be the same for either the toolbar or the button on the workflow panel itself), you get strange behavior from the picker:

https://dev.arvados.org/attachments/3806

The first time, it fails to open the tree completely, and the selection behavior is weirdly lagged where the details show the previously selected item and not the current selection.

After closing the dialog and opening it again, it behaves as expected.

2. The second thing I noticed is that if you go to the project the workflow is located in and you do not have write access, it selects the last project that you selected in this same dialog box. It's not clear if that's intentional behavior or a bug (possibly related to the first bug).

https://dev.arvados.org/attachments/3807

Actions #18

Updated by Peter Amstutz 17 days ago

This is behaving better, but still not quite right.

The gist seems to be this:

(a) If you reload the app, then select a project that you have write access to and then go to launch a workflow using the NEW button, it correctly selects the project in the dialog.

(b) If you go to launch a workflow using the toolbar, where you can't write to the default directory, this also works as expected, selecting the root project

(c) However, if you again select a project that you have write access to and then go to launch a workflow using the NEW button, it will not select the project in the picker, but instead select the root project. Weirdly, the workflow's input form will show the correct project.

It feels like step (b) leaves some lingering state that messes up step (c).

Actions #19

Updated by Lisa Knox 17 days ago

I had mistakenly set the default project to reset when the parent project was unwriteable, not the current selected project. Also set the default owner to reset when the input itself unmounts, meaning no leftover state. It should be good now.

Actions #20

Updated by Peter Amstutz 17 days ago

I have bad news.

The bug in note-18 does appear to be fixed.

But I am still seeing the first bug from note-16 (the behavior in https://dev.arvados.org/attachments/3806 is the same).

If you click run on the toolbar and you can write to the project, it is supposed to select that project. The picking tree isn't expanded and the selection behaves strangely.

Actions #21

Updated by Lisa Knox 16 days ago

  • Related to Bug #22673: Write E2E tests for wf treepicker added
Actions #22

Updated by Peter Amstutz 15 days ago

  • Target version changed from Development 2025-03-19 to Development 2025-04-02
Actions #23

Updated by Peter Amstutz 15 days ago

  • Subtask #22681 added
Actions #24

Updated by Peter Amstutz 15 days ago

  • Release changed from 75 to 77
Actions #25

Updated by Lisa Knox 8 days ago

22605-open-wf-dialog @ c32079da83fa71bb9e65005bc9599b01691e463c
developer-run-tests-services-workbench2: #1475

There were many hurdles that stood in the way of this ticket, and it took a significant rewrite of the data flow to get everything in working order, but it is now good. New tests are written and consistently pass.

Actions #26

Updated by Stephen Smith 2 days ago

  • For all of the if cases in componentDidMount and componentDidUpdate of run-wf-project-input.tsx, it would be nice to have a short comment on when the case is triggered / what user interaction it catches just to make it a little easier to follow along what situations those are handling and why
  • I saw that isUserResource also checks 'email' in resource, since ResourceKind.USER is only set on the User resource, it seems like it's not necessary to check for the email field unless the intention is to check that a value is there - in which case I think it would be better to check that outside of the function to avoid confusion if someone uses isUserResource somewhere else
  • In projects-tree-picker I noticed you added await this.resetAllPickers() - since resetAllPickers is a void function, awaiting it probably doesn't do anything, and I believe since RESET_TREE_PICKER is not a thunk but goes directly to the reducer, I think it's synchronous and shouldn't need awaiting. (Reading about it here https://stackoverflow.com/a/75464347/733880)
Actions #27

Updated by Peter Amstutz 1 day ago

  • Target version changed from Development 2025-04-02 to Development 2025-04-16
Actions #28

Updated by Lisa Knox about 22 hours ago

22605-open-wf-dialog @ 20214f6d8b901bfed0fc0d3b88f498e86c7f88fa
developer-run-tests-services-workbench2: #1487

  • For all of the if cases in componentDidMount and componentDidUpdate ...
  • I saw that isUserResource also checks...

Done and done

  • In projects-tree-picker I noticed you added @await...

This is necessary because of the way react batches state updates (https://react.dev/learn/queueing-a-series-of-state-updates). Basically, because the same piece of state is changing more than once in the same function, only the latest state change will go through. In this case, when the selected uuids array changes while rendering, it will cause the selected tree node to be triggered twice, and the tree will try to expand and highlight both nodes. By awaiting the reset, we ensure that only the latest selected uuids array is activated.

Actions

Also available in: Atom PDF