2017-02-17 02:55:52 -08:00
|
|
|
import { ViewArrayImpl } from "./services/view-array/view-array.impl";
|
|
|
|
import { RegexMatchViewComponent } from "./directives/ui/regex-match-view/regex-match-view.component";
|
2017-04-05 14:14:08 -07:00
|
|
|
import { NgModule } from 'ng-metadata/core';
|
|
|
|
import { QuayRoutesModule } from "./quay-routes.module";
|
2017-02-17 15:46:43 -08:00
|
|
|
import { DockerfilePathSelectComponent } from './directives/ui/dockerfile-path-select/dockerfile-path-select.component';
|
2017-03-21 17:24:11 -04:00
|
|
|
import { ContextPathSelectComponent } from './directives/ui/context-path-select/context-path-select.component';
|
2017-02-17 17:08:33 -08:00
|
|
|
import { ManageTriggerCustomGitComponent } from './directives/ui/manage-trigger-custom-git/manage-trigger-custom-git.component';
|
2017-02-18 01:45:00 -08:00
|
|
|
import { ManageTriggerGithostComponent } from './directives/ui/manage-trigger-githost/manage-trigger-githost.component';
|
2017-02-19 18:35:46 -08:00
|
|
|
import { LinearWorkflowComponent } from './directives/ui/linear-workflow/linear-workflow.component';
|
2017-02-21 15:59:26 -08:00
|
|
|
import { LinearWorkflowSectionComponent } from './directives/ui/linear-workflow/linear-workflow-section.component';
|
2017-04-05 14:14:08 -07:00
|
|
|
import { QuayConfigModule } from './quay-config.module';
|
2017-03-23 17:16:19 -04:00
|
|
|
import { AppPublicViewComponent } from './directives/ui/app-public-view/app-public-view.component';
|
|
|
|
import { VisibilityIndicatorComponent } from './directives/ui/visibility-indicator/visibility-indicator.component';
|
|
|
|
import { CorTableComponent } from './directives/ui/cor-table/cor-table.component';
|
|
|
|
import { CorTableColumn } from './directives/ui/cor-table/cor-table-col.component';
|
|
|
|
import { ChannelIconComponent } from './directives/ui/channel-icon/channel-icon.component';
|
2017-03-05 20:47:23 -08:00
|
|
|
import { BuildServiceImpl } from './services/build/build.service.impl';
|
2017-03-06 00:02:57 -08:00
|
|
|
import { AvatarServiceImpl } from './services/avatar/avatar.service.impl';
|
2017-03-07 11:25:18 -08:00
|
|
|
import { DockerfileServiceImpl } from './services/dockerfile/dockerfile.service.impl';
|
2017-03-11 16:48:05 -08:00
|
|
|
import { DataFileServiceImpl } from './services/datafile/datafile.service.impl';
|
2017-04-05 14:14:08 -07:00
|
|
|
import { UtilServiceImpl } from './services/util/util.service.impl';
|
2017-04-10 11:57:09 -07:00
|
|
|
import { QuayRequireDirective } from './directives/structural/quay-require/quay-require.directive';
|
2017-01-19 00:53:38 -08:00
|
|
|
|
2017-02-17 02:55:52 -08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Main application module.
|
|
|
|
*/
|
|
|
|
@NgModule({
|
2017-02-19 18:35:46 -08:00
|
|
|
imports: [
|
2017-04-05 14:14:08 -07:00
|
|
|
QuayRoutesModule,
|
|
|
|
QuayConfigModule,
|
2017-02-19 18:35:46 -08:00
|
|
|
],
|
2017-02-17 02:55:52 -08:00
|
|
|
declarations: [
|
|
|
|
RegexMatchViewComponent,
|
2017-02-17 15:46:43 -08:00
|
|
|
DockerfilePathSelectComponent,
|
2017-03-21 17:24:11 -04:00
|
|
|
ContextPathSelectComponent,
|
2017-02-17 17:08:33 -08:00
|
|
|
ManageTriggerCustomGitComponent,
|
2017-02-18 01:45:00 -08:00
|
|
|
ManageTriggerGithostComponent,
|
2017-02-19 18:35:46 -08:00
|
|
|
LinearWorkflowComponent,
|
2017-02-21 15:59:26 -08:00
|
|
|
LinearWorkflowSectionComponent,
|
2017-03-23 17:16:19 -04:00
|
|
|
AppPublicViewComponent,
|
|
|
|
VisibilityIndicatorComponent,
|
|
|
|
CorTableComponent,
|
|
|
|
CorTableColumn,
|
|
|
|
ChannelIconComponent,
|
2017-04-10 11:57:09 -07:00
|
|
|
QuayRequireDirective,
|
2017-02-17 02:55:52 -08:00
|
|
|
],
|
|
|
|
providers: [
|
|
|
|
ViewArrayImpl,
|
2017-03-05 20:47:23 -08:00
|
|
|
BuildServiceImpl,
|
2017-03-06 00:02:57 -08:00
|
|
|
AvatarServiceImpl,
|
2017-03-07 11:25:18 -08:00
|
|
|
DockerfileServiceImpl,
|
2017-03-11 16:48:05 -08:00
|
|
|
DataFileServiceImpl,
|
2017-04-05 14:14:08 -07:00
|
|
|
UtilServiceImpl,
|
2017-04-12 19:06:40 -07:00
|
|
|
{provide: 'fileReaderFactory', useValue: () => new FileReader()},
|
2017-02-17 02:55:52 -08:00
|
|
|
],
|
|
|
|
})
|
2017-04-05 14:14:08 -07:00
|
|
|
export class QuayModule {
|
2017-02-17 02:55:52 -08:00
|
|
|
|
|
|
|
}
|