mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
* [ADF-2596] Updated prop script to handle names from input decorators * [ADF-2596] Fixed inputs with accessors * [ADF-2596] Fixed remaining inputs with wrong names * [ADF-2596] Updated prop script to handle names from input decorators * [ADF-2596] Fixed inputs with accessors * [ADF-2596] Fixed remaining inputs with wrong names
1.7 KiB
1.7 KiB
Added, Status, Last reviewed
Added | Status | Last reviewed |
---|---|---|
v2.0.0 | Active | 2018-04-10 |
Node Favorite directive
Selectively toggles nodes as favorites.
Basic Usage
<adf-toolbar>
<button mat-icon-button
(toggle)="done()"
[adf-node-favorite]="documentList.selection">
</button>
</adf-toolbar>
<adf-document-list #documentList ...>
...
</adf-document-list>
@Component({
selector: 'my-component'
})
export class MyComponent {
done() {
// ...
}
}
Class members
Properties
Name | Type | Default value | Description |
---|---|---|---|
adf-node-favorite | MinimalNodeEntity[] |
[] | Array of nodes to toggle as favorites. |
Events
Name | Type | Description |
---|---|---|
toggle | EventEmitter<any> |
Emitted when the favorite setting is complete. |
Details
You can bind the directive instance to a template variable through the adfFavorite reference, which also lets you add extra styling to the element:
<button
mat-menu-item
#selection="adfFavorite"
[ngClass]="{ 'icon-highlight': selection.hasFavorites() }"
[adf-node-favorite]="documentList.selection">
<mat-icon [ngClass]="{ 'icon-highlight': selection.hasFavorites() }">
{{ selection.hasFavorites() ? 'star' : 'star_border' }}
</mat-icon>
</button>
The directive behaves as follows:
- If there are no favorite nodes in the selection, then all are marked as favorites
- If there are one or more favorite node in the selection, then only those that are not favorites are marked
- If all nodes in the selection are favorites, then they all have their favorite status removed
See the Demo Shell for examples of usage.