2017-03-26 13:32:29 -07:00
|
|
|
import { NgModule } from '@angular/core';
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
|
2017-03-30 16:51:51 -07:00
|
|
|
import { ContributorService } from './contributor/contributor.service';
|
2017-03-26 13:32:29 -07:00
|
|
|
import { CopierService } from 'app/shared/copier.service';
|
2017-03-30 16:51:51 -07:00
|
|
|
import { PrettyPrinter } from './code/pretty-printer.service';
|
2017-03-26 13:32:29 -07:00
|
|
|
|
|
|
|
// Any components that we want to use inside embedded components must be declared or imported here
|
|
|
|
// It is not enough just to import them inside the AppModule
|
|
|
|
|
|
|
|
// Reusable components (used inside embedded components)
|
|
|
|
import { MdTabsModule } from '@angular/material';
|
|
|
|
import { CodeComponent } from './code/code.component';
|
|
|
|
|
|
|
|
// Embedded Components
|
|
|
|
import { ApiListComponent } from './api/api-list.component';
|
|
|
|
import { CodeExampleComponent } from './code/code-example.component';
|
|
|
|
import { CodeTabsComponent } from './code/code-tabs.component';
|
2017-03-30 16:51:51 -07:00
|
|
|
import { ContributorListComponent } from './contributor/contributor-list.component';
|
|
|
|
import { ContributorComponent } from './contributor/contributor.component';
|
2017-03-26 13:32:29 -07:00
|
|
|
import { DocTitleComponent } from './doc-title.component';
|
2017-03-28 14:41:50 -07:00
|
|
|
import { LiveExampleComponent, EmbeddedPlunkerComponent } from './live-example/live-example.component';
|
2017-03-26 13:32:29 -07:00
|
|
|
|
|
|
|
/** Components that can be embedded in docs
|
|
|
|
* such as CodeExampleComponent, LiveExampleComponent,...
|
|
|
|
*/
|
|
|
|
export const embeddedComponents: any[] = [
|
2017-03-30 16:51:51 -07:00
|
|
|
ApiListComponent, CodeExampleComponent, CodeTabsComponent,
|
|
|
|
ContributorListComponent, DocTitleComponent, LiveExampleComponent
|
2017-03-26 13:32:29 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
/** Injectable class w/ property returning components that can be embedded in docs */
|
|
|
|
export class EmbeddedComponents {
|
|
|
|
components = embeddedComponents;
|
|
|
|
}
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [ CommonModule, MdTabsModule ],
|
|
|
|
declarations: [
|
|
|
|
embeddedComponents,
|
2017-03-28 14:41:50 -07:00
|
|
|
CodeComponent,
|
2017-03-30 16:51:51 -07:00
|
|
|
ContributorComponent,
|
2017-03-28 14:41:50 -07:00
|
|
|
EmbeddedPlunkerComponent
|
2017-03-26 13:32:29 -07:00
|
|
|
],
|
|
|
|
providers: [
|
2017-03-30 16:51:51 -07:00
|
|
|
ContributorService,
|
|
|
|
CopierService,
|
2017-03-26 13:32:29 -07:00
|
|
|
EmbeddedComponents,
|
2017-03-30 16:51:51 -07:00
|
|
|
PrettyPrinter
|
2017-03-26 13:32:29 -07:00
|
|
|
],
|
|
|
|
entryComponents: [ embeddedComponents ]
|
|
|
|
})
|
|
|
|
export class EmbeddedModule { }
|