mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* Fetch the userInfo once loggedIn and expose the cabilibility of admin * Rollback method * Return same use if defined * Use the same pepleContent service for UserInfoCOmpnent * Remove useless import * Use interface * Use angular resolver instead of guard * Remove fdescribe * Fix linting * Regenerate doc * Improve doc * Fix optional * Fix the unit test * Fix comment * Fix lint * Fix unit * Add fetch user as part of the ssoGuard * Fix unit test after fetch * Add additional unit * Fix await
1.5 KiB
1.5 KiB
Title, Added, Status, Last reviewed
Title | Added | Status | Last reviewed |
---|---|---|---|
App List Cloud Component | v3.0.0 | Experimental | 2019-01-08 |
App List Cloud Component
Shows all deployed cloud application instances.
Basic Usage
<adf-cloud-app-list
[layoutType]="'GRID'">
</adf-cloud-app-list>
Transclusions
You can show custom content when there are no apps available by supplying an
<adf-custom-empty-content>
section:
<adf-cloud-app-list
[layoutType]="'GRID'">
<adf-custom-empty-content>
No Apps present
</adf-custom-empty-content>
</adf-cloud-app-list>
Activiti 7
If you are generating a project for Activiti 7, you must add the list of apps you want to use in app.config.json .
For example :
"alfresco-deployed-apps" : [{"name": "simple-app"}]
Class members
Properties
Name | Type | Default value | Description |
---|---|---|---|
layoutType | string |
LAYOUT_GRID | (required) Defines the layout of the apps. There are two possible values, "GRID" and "LIST". |
Events
Name | Type | Description |
---|---|---|
appClick | EventEmitter < ApplicationInstanceModel > |
Emitted when an app entry is clicked. |