-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(schematics): tree schematic (#11739)
- Loading branch information
1 parent
1c67663
commit 1540e2f
Showing
9 changed files
with
340 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
.../tree/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.__styleext__
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
.type-icon { | ||
color: #999; | ||
margin-right: 5px; | ||
} |
22 changes: 22 additions & 0 deletions
22
...hematics/tree/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<mat-tree [dataSource]="dataSource" [treeControl]="treeControl"> | ||
<mat-tree-node *matTreeNodeDef="let node" matTreeNodeToggle matTreeNodePadding> | ||
<button mat-icon-button disabled></button> | ||
<mat-icon class="type-icon" [attr.aria-label]="node.type + 'icon'"> | ||
{{ node.type === 'file' ? 'description' : 'folder' }} | ||
</mat-icon> | ||
{{node.name}} | ||
</mat-tree-node> | ||
|
||
<mat-tree-node *matTreeNodeDef="let node;when: hasChild" matTreeNodePadding> | ||
<button mat-icon-button matTreeNodeToggle | ||
[attr.aria-label]="'toggle ' + node.name"> | ||
<mat-icon class="mat-icon-rtl-mirror"> | ||
{{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}} | ||
</mat-icon> | ||
</button> | ||
<mat-icon class="type-icon" [attr.aria-label]="node.type + 'icon'"> | ||
{{ node.type ==='file' ? 'description' : 'folder' }} | ||
</mat-icon> | ||
{{node.name}} | ||
</mat-tree-node> | ||
</mat-tree> |
24 changes: 24 additions & 0 deletions
24
...atics/tree/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
|
||
import { fakeAsync, ComponentFixture, TestBed } from '@angular/core/testing'; | ||
|
||
import { <%= classify(name) %>Component } from './<%= dasherize(name) %>.component'; | ||
|
||
describe('<%= classify(name) %>Component', () => { | ||
let component: <%= classify(name) %>Component; | ||
let fixture: ComponentFixture<<%= classify(name) %>Component>; | ||
|
||
beforeEach(fakeAsync(() => { | ||
TestBed.configureTestingModule({ | ||
declarations: [ <%= classify(name) %>Component ] | ||
}) | ||
.compileComponents(); | ||
|
||
fixture = TestBed.createComponent(<%= classify(name) %>Component); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
})); | ||
|
||
it('should compile', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
113 changes: 113 additions & 0 deletions
113
...schematics/tree/files/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
import { Component<% if (!!viewEncapsulation) { %>, ViewEncapsulation<% }%><% if (changeDetection !== 'Default') { %>, ChangeDetectionStrategy<% }%> } from '@angular/core'; | ||
import { MatTreeFlatDataSource, MatTreeFlattener } from '@angular/material/tree'; | ||
import { of as observableOf } from 'rxjs'; | ||
import { FlatTreeControl } from '@angular/cdk/tree'; | ||
import { files } from './example-data'; | ||
|
||
/** File node data with nested structure. */ | ||
export interface FileNode { | ||
name: string; | ||
type: string; | ||
children?: FileNode[]; | ||
} | ||
|
||
/** Flat node with expandable and level information */ | ||
export interface TreeNode { | ||
name: string; | ||
type: string; | ||
level: number; | ||
expandable: boolean; | ||
} | ||
|
||
@Component({ | ||
selector: '<%= selector %>',<% if (inlineTemplate) { %> | ||
template: ` | ||
<mat-tree [dataSource]="dataSource" [treeControl]="treeControl"> | ||
<mat-tree-node *matTreeNodeDef="let node" matTreeNodeToggle matTreeNodePadding> | ||
<button mat-icon-button disabled></button> | ||
<mat-icon class="type-icon" [attr.aria-label]="node.type + 'icon'"> | ||
{{ node.type ==='file' ? 'description' : 'folder' }} | ||
</mat-icon> | ||
{{node.name}} | ||
</mat-tree-node> | ||
<mat-tree-node *matTreeNodeDef="let node;when: hasChild" matTreeNodePadding> | ||
<button mat-icon-button matTreeNodeToggle | ||
[attr.aria-label]="'toggle ' + node.name"> | ||
<mat-icon class="mat-icon-rtl-mirror"> | ||
{{treeControl.isExpanded(node) ? 'expand_more' : 'chevron_right'}} | ||
</mat-icon> | ||
</button> | ||
<mat-icon class="type-icon" [attr.aria-label]="node.type + 'icon'"> | ||
{{ node.type === 'file' ? 'description' : 'folder' }} | ||
</mat-icon> | ||
{{node.name}} | ||
</mat-tree-node> | ||
</mat-tree> | ||
`,<% } else { %> | ||
templateUrl: './<%= dasherize(name) %>.component.html',<% } if (inlineStyle) { %> | ||
styles: [ | ||
` | ||
.type-icon { | ||
color: #999; | ||
margin-right: 5px; | ||
} | ||
` | ||
]<% } else { %> | ||
styleUrls: ['./<%= dasherize(name) %>.component.<%= styleext %>']<% } %><% if (!!viewEncapsulation) { %>, | ||
encapsulation: ViewEncapsulation.<%= viewEncapsulation %><% } if (changeDetection !== 'Default') { %>, | ||
changeDetection: ChangeDetectionStrategy.<%= changeDetection %><% } %> | ||
}) | ||
export class <%= classify(name) %>Component { | ||
|
||
/** The TreeControl controls the expand/collapse state of tree nodes. */ | ||
treeControl: FlatTreeControl<TreeNode>; | ||
|
||
/** The TreeFlattener is used to generate the flat list of items from hierarchical data. */ | ||
treeFlattener: MatTreeFlattener<FileNode, TreeNode>; | ||
|
||
/** The MatTreeFlatDataSource connects the control and flattener to provide data. */ | ||
dataSource: MatTreeFlatDataSource<FileNode, TreeNode>; | ||
|
||
constructor() { | ||
this.treeFlattener = new MatTreeFlattener( | ||
this.transformer, | ||
this.getLevel, | ||
this.isExpandable, | ||
this.getChildren); | ||
|
||
this.treeControl = new FlatTreeControl<TreeNode>(this.getLevel, this.isExpandable); | ||
this.dataSource = new MatTreeFlatDataSource(this.treeControl, this.treeFlattener); | ||
this.dataSource.data = files; | ||
} | ||
|
||
/** Transform the data to something the tree can read. */ | ||
transformer(node: FileNode, level: number) { | ||
return { | ||
name: node.name, | ||
type: node.type, | ||
level: level, | ||
expandable: !!node.children | ||
}; | ||
} | ||
|
||
/** Get the level of the node */ | ||
getLevel(node: TreeNode) { | ||
return node.level; | ||
} | ||
|
||
/** Get whether the node is expanded or not. */ | ||
isExpandable(node: TreeNode) { | ||
return node.expandable; | ||
}; | ||
|
||
/** Get the children for the node. */ | ||
getChildren(node: FileNode) { | ||
return observableOf(node.children); | ||
} | ||
|
||
/** Get whether the node has children or not. */ | ||
hasChild(index: number, node: TreeNode){ | ||
return node.expandable; | ||
} | ||
} |
46 changes: 46 additions & 0 deletions
46
src/lib/schematics/tree/files/__path__/__name@dasherize@if-flat__/example-data.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/** Example file/folder data. */ | ||
export const files = [ | ||
{ | ||
name: 'material2', | ||
type: 'folder', | ||
children: [ | ||
{ | ||
name: 'src', | ||
type: 'folder', | ||
children: [ | ||
{ | ||
name: 'cdk', | ||
children: [ | ||
{ name: 'package.json', type: 'file' }, | ||
{ name: 'BUILD.bazel', type: 'file' }, | ||
] | ||
}, | ||
{ name: 'lib', type: 'folder' } | ||
] | ||
} | ||
] | ||
}, | ||
{ | ||
name: 'angular', | ||
type: 'folder', | ||
children: [ | ||
{ | ||
name: 'packages', | ||
type: 'folder', | ||
children: [ | ||
{ name: '.travis.yml', type: 'file' }, | ||
{ name: 'firebase.json', type: 'file' } | ||
] | ||
}, | ||
{ name: 'package.json', type: 'file' } | ||
] | ||
}, | ||
{ | ||
name: 'angularjs', | ||
type: 'folder', | ||
children: [ | ||
{ name: 'gulpfile.js', type: 'file' }, | ||
{ name: 'README.md', type: 'file' } | ||
] | ||
} | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import {chain, Rule, noop, Tree, SchematicContext} from '@angular-devkit/schematics'; | ||
import {Schema} from './schema'; | ||
import {addModuleImportToModule, findModuleFromOptions} from '../utils/ast'; | ||
import {buildComponent} from '../utils/devkit-utils/component'; | ||
|
||
/** | ||
* Scaffolds a new tree component. | ||
* Internally it bootstraps the base component schematic | ||
*/ | ||
export default function(options: Schema): Rule { | ||
return chain([ | ||
buildComponent({ ...options }), | ||
options.skipImport ? noop() : addTreeModulesToModule(options) | ||
]); | ||
} | ||
|
||
/** | ||
* Adds the required modules to the relative module. | ||
*/ | ||
function addTreeModulesToModule(options: Schema) { | ||
return (host: Tree) => { | ||
const modulePath = findModuleFromOptions(host, options); | ||
addModuleImportToModule(host, modulePath, 'MatTreeModule', '@angular/material'); | ||
addModuleImportToModule(host, modulePath, 'MatIconModule', '@angular/material'); | ||
addModuleImportToModule(host, modulePath, 'MatButtonModule', '@angular/material'); | ||
return host; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
{ | ||
"$schema": "http://json-schema.org/schema", | ||
"id": "SchematicsMaterialTree", | ||
"title": "Material Tree Options Schema", | ||
"type": "object", | ||
"properties": { | ||
"path": { | ||
"type": "string", | ||
"format": "path", | ||
"description": "The path to create the component.", | ||
"visible": false | ||
}, | ||
"project": { | ||
"type": "string", | ||
"description": "The name of the project.", | ||
"visible": false | ||
}, | ||
"name": { | ||
"type": "string", | ||
"description": "The name of the component.", | ||
"$default": { | ||
"$source": "argv", | ||
"index": 0 | ||
} | ||
}, | ||
"inlineStyle": { | ||
"description": "Specifies if the style will be in the ts file.", | ||
"type": "boolean", | ||
"default": false, | ||
"alias": "s" | ||
}, | ||
"inlineTemplate": { | ||
"description": "Specifies if the template will be in the ts file.", | ||
"type": "boolean", | ||
"default": false, | ||
"alias": "t" | ||
}, | ||
"viewEncapsulation": { | ||
"description": "Specifies the view encapsulation strategy.", | ||
"enum": ["Emulated", "Native", "None"], | ||
"type": "string", | ||
"alias": "v" | ||
}, | ||
"changeDetection": { | ||
"description": "Specifies the change detection strategy.", | ||
"enum": ["Default", "OnPush"], | ||
"type": "string", | ||
"default": "Default", | ||
"alias": "c" | ||
}, | ||
"prefix": { | ||
"type": "string", | ||
"format": "html-selector", | ||
"description": "The prefix to apply to generated selectors.", | ||
"alias": "p" | ||
}, | ||
"styleext": { | ||
"description": "The file extension to be used for style files.", | ||
"type": "string", | ||
"default": "css" | ||
}, | ||
"spec": { | ||
"type": "boolean", | ||
"description": "Specifies if a spec file is generated.", | ||
"default": true | ||
}, | ||
"flat": { | ||
"type": "boolean", | ||
"description": "Flag to indicate if a dir is created.", | ||
"default": false | ||
}, | ||
"skipImport": { | ||
"type": "boolean", | ||
"description": "Flag to skip the module import.", | ||
"default": false | ||
}, | ||
"selector": { | ||
"type": "string", | ||
"format": "html-selector", | ||
"description": "The selector to use for the component." | ||
}, | ||
"module": { | ||
"type": "string", | ||
"description": "Allows specification of the declaring module.", | ||
"alias": "m" | ||
}, | ||
"export": { | ||
"type": "boolean", | ||
"default": false, | ||
"description": "Specifies if declaring module exports the component." | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
import {Schema as ComponentSchema} from '@schematics/angular/component/schema'; | ||
|
||
export interface Schema extends ComponentSchema {} |