[ACA-4365] Expanded info drawer for permissions, properties and comments (#2080)

* [ACA-4365] Expanded info drawer for permissions, properties and comments

* Add unit tests for details component

* Fix linting

* Fix e2e tests

* Fix e2e tests

* Change to Progress Bar

* Add unit test for node effects

* Fix unit test

* Standardize styles info drawer

* Remove permissions tab

* Updadte ADF dependencies

* Update permissions icon

* Improve navigation

* Fix linting
This commit is contained in:
davidcanonieto
2021-04-28 09:30:07 +01:00
committed by GitHub
parent febaf6601a
commit cc6bb7e95b
35 changed files with 534 additions and 422 deletions
@@ -46,7 +46,8 @@ export enum NodeActionTypes {
UnlockForWriting = 'UNLOCK_WRITE_LOCK',
AddFavorite = 'ADD_FAVORITE',
RemoveFavorite = 'REMOVE_FAVORITE',
ChangeAspects = 'ASPECT_LIST'
ChangeAspects = 'ASPECT_LIST',
ExpandInfoDrawer = 'EXPAND_INFO_DRAWER'
}
export class SetSelectedNodesAction implements Action {
@@ -126,6 +127,11 @@ export class ManagePermissionsAction implements Action {
constructor(public payload: MinimalNodeEntity) {}
}
export class ExpandInfoDrawerAction implements Action {
readonly type = NodeActionTypes.ExpandInfoDrawer;
constructor(public payload: MinimalNodeEntity) {}
}
export class PrintFileAction implements Action {
readonly type = NodeActionTypes.PrintFile;
@@ -30,7 +30,8 @@ export enum RouterActionTypes {
NavigateUrl = 'NAVIGATE_URL',
NavigateRoute = 'NAVIGATE_ROUTE',
NavigateFolder = 'NAVIGATE_FOLDER',
NavigateParentFolder = 'NAVIGATE_PARENT_FOLDER'
NavigateParentFolder = 'NAVIGATE_PARENT_FOLDER',
NavigateToPreviousPage = 'NAVIGATE_TO_PREVIOUS_PAGE'
}
export class NavigateUrlAction implements Action {
@@ -56,3 +57,9 @@ export class NavigateToParentFolder implements Action {
constructor(public payload: MinimalNodeEntity) {}
}
export class NavigateToPreviousPage implements Action {
readonly type = RouterActionTypes.NavigateToPreviousPage;
constructor() {}
}