mirror of
https://github.com/Alfresco/alfresco-content-app.git
synced 2025-07-24 17:31:52 +00:00
[ACA-19] Toggle join request - library action (#800)
* [ACA-19] join/cancel join library actions * [ACA-19] show the info drawer * [ACA-19] custom icon for join library * [ACA-19] css to 'see' custom icon for extension * [ACA-19] reformat with prettier * [ACA-19] better role display * [ACA-19] simplify cancel request rule * [ACA-19] refactor and use toggle join/cancel join component & directive * [ACA-19] reformat with Prettier * [ACA-19] fix title for svgIcon * [ACA-19] fix translation * [ACA-19] unit test
This commit is contained in:
committed by
Denys Vuika
parent
7734844893
commit
49e80ddce1
@@ -47,6 +47,7 @@ import { LibraryStatusColumnComponent } from '../components/common/library-statu
|
||||
import { TrashcanNameColumnComponent } from '../components/common/trashcan-name-column/trashcan-name-column.component';
|
||||
import { LocationLinkComponent } from '../components/common/location-link/location-link.component';
|
||||
import { DocumentDisplayModeComponent } from '../components/toolbar/document-display-mode/document-display-mode.component';
|
||||
import { ToggleJoinLibraryComponent } from '../components/toolbar/toggle-join-library/toggle-join-library.component';
|
||||
|
||||
export function setupExtensions(service: AppExtensionService): Function {
|
||||
return () => service.load();
|
||||
@@ -85,6 +86,7 @@ export class CoreExtensionsModule {
|
||||
'app.components.tabs.versions': VersionsTabComponent,
|
||||
'app.toolbar.toggleInfoDrawer': ToggleInfoDrawerComponent,
|
||||
'app.toolbar.toggleFavorite': ToggleFavoriteComponent,
|
||||
'app.toolbar.toggleJoinLibrary': ToggleJoinLibraryComponent,
|
||||
'app.toolbar.cardView': DocumentDisplayModeComponent,
|
||||
'app.shared-link.toggleSharedLink': ToggleSharedComponent,
|
||||
'app.columns.name': NameColumnComponent,
|
||||
@@ -110,6 +112,9 @@ export class CoreExtensionsModule {
|
||||
'app.selection.file': app.hasFileSelected,
|
||||
'app.selection.file.canShare': app.canShareFile,
|
||||
'app.selection.library': app.hasLibrarySelected,
|
||||
'app.selection.isPrivateLibrary': app.isPrivateLibrary,
|
||||
'app.selection.hasLibraryRole': app.hasLibraryRole,
|
||||
'app.selection.hasNoLibraryRole': app.hasNoLibraryRole,
|
||||
'app.selection.folder': app.hasFolderSelected,
|
||||
'app.selection.folder.canUpdate': app.canUpdateSelectedFolder,
|
||||
|
||||
|
Reference in New Issue
Block a user