-
Notifications
You must be signed in to change notification settings - Fork 38
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
feat(ws): Implement Start restart and stop workspace actions #162
feat(ws): Implement Start restart and stop workspace actions #162
Conversation
f56e1a3
to
1ee488d
Compare
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.
Hi @ElayAharoni , thanks for the PR. IMO, we should have one component (and its .tsx
file) for each of those modals, instead of managing UI features as React states. This way each component would be isolated and could call the appropriate BFF service to execute its action. In the Workspaces.tsx
, we would have only the const [isXModalOpen, setIsXModalOpen] = React.useState(false);
boolean state to manage if each popup is opened or not.
This idea is similar to what Model Registry does with ModelVersionsTableRow
using the ArchiveModelVersionModal
modal.
759dd78
to
b57356a
Compare
83de775
to
db40107
Compare
i have made changes according to @thesuperzapper requests. |
db40107
to
4fef141
Compare
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.
Hi @ElayAharoni , thanks for adding all the redirect information on this UI. I still think we should have one component (in its own .tsx file) for each of those modals as we discussed before, with a reusable component in a separate file for the redirects information. The WorkspaceActionAlert
currently has a lot of responsibilities, and the separation would help the understanding and maintainability of this code.
4558e11
to
59060e3
Compare
hi @paulovmr i did the requested changes |
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.
Thanks @ElayAharoni , the components modularity looks good to me now! I've left a few comments inline, and I have a few suggestions regarding some naming:
- Consider renaming
RestartActionAlert
toWorkspaceRestartActionModal
(and similarly to the others) - Consider renaming
ActionWithUpdatesBody
toWorkspaceRedirectInformationView
- Consider changing the
activeActionData
state to be only aenum
with the type of the action. The already existingselectedWorkspace
state could be used to hold the workspace and passed to the modal directly. Also please consider renaming it toactiveActionType
.
workspaces/frontend/src/app/pages/Workspaces/workspaceActions/ActionWithUpdatesBody.tsx
Outdated
Show resolved
Hide resolved
workspaces/frontend/src/app/pages/Workspaces/workspaceActions/StartActionAlert.tsx
Outdated
Show resolved
Hide resolved
workspaces/frontend/src/app/pages/Workspaces/workspaceActions/StopActionAlert.tsx
Outdated
Show resolved
Hide resolved
5cd2049
to
2da85b8
Compare
workspaces/frontend/src/app/pages/Workspaces/workspaceActions/WorkspaceRestartActionModal.tsx
Outdated
Show resolved
Hide resolved
workspaces/frontend/src/app/pages/Workspaces/workspaceActions/WorkspaceRestartActionModal.tsx
Outdated
Show resolved
Hide resolved
workspaces/frontend/src/app/pages/Workspaces/workspaceActions/WorkspaceStartActionModal.tsx
Outdated
Show resolved
Hide resolved
workspaces/frontend/src/app/pages/Workspaces/workspaceActions/WorkspaceStopActionModal.tsx
Outdated
Show resolved
Hide resolved
workspaces/frontend/src/app/pages/Workspaces/workspaceActions/WorkspaceStopActionModal.tsx
Outdated
Show resolved
Hide resolved
7403a63
to
12e2f9b
Compare
workspaces/frontend/src/app/pages/Workspaces/workspaceActions/WorkspaceStartActionModal.tsx
Outdated
Show resolved
Hide resolved
Signed-off-by: Elay Aharoni (EXT-Nokia) <[email protected]>
12e2f9b
to
8114ef4
Compare
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: ederign, paulovmr The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/lgtm |
…w#162) Signed-off-by: Elay Aharoni (EXT-Nokia) <[email protected]> Co-authored-by: Elay Aharoni (EXT-Nokia) <[email protected]>
Fixes: #146
Implemented Start, restart and stop workspace actions present in the workspace table actions kebab dropdown.
with the requested buttons and warning, from the issue description.
snapshots:
start with pending updates:

restart without pending updates:

stop without pending updates:

stop with pending updates:

restart with pending updates:
