mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
155 lines
4.6 KiB
TypeScript
155 lines
4.6 KiB
TypeScript
/*!
|
|
* @license
|
|
* Copyright 2016 Alfresco Software, Ltd.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
import { NgModule } from '@angular/core';
|
|
import { HttpModule } from '@angular/http';
|
|
import { BrowserModule } from '@angular/platform-browser';
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
|
|
import { TranslateModule, TranslateLoader } from 'ng2-translate/ng2-translate';
|
|
import { SearchModule } from 'ng2-alfresco-search';
|
|
import { LoginModule } from 'ng2-alfresco-login';
|
|
|
|
import { AppComponent } from './app.component';
|
|
import { routing } from './app.routes';
|
|
|
|
import { SearchBarComponent } from './components/index';
|
|
import { MDL, ALFRESCO_CORE_PROVIDERS, CONTEXT_MENU_DIRECTIVES } from 'ng2-alfresco-core';
|
|
import { ALFRESCO_DATATABLE_DIRECTIVES, PaginationComponent } from 'ng2-alfresco-datatable';
|
|
import { ALFRESCO_TASKLIST_DIRECTIVES } from 'ng2-activiti-tasklist';
|
|
import { ACTIVITI_PROCESSLIST_DIRECTIVES } from 'ng2-activiti-processlist';
|
|
import { ActivitiForm, ATIVITI_FORM_PROVIDERS, CONTAINER_WIDGET_DIRECTIVES, PRIMITIVE_WIDGET_DIRECTIVES } from 'ng2-activiti-form';
|
|
import { DOCUMENT_LIST_DIRECTIVES, DOCUMENT_LIST_PROVIDERS } from 'ng2-alfresco-documentlist';
|
|
import { ALFRESCO_ULPOAD_COMPONENTS, ALFRESCO_ULPOAD_DIRECTIVES, ALFRESCO_ULPOAD_SERVICES } from 'ng2-alfresco-upload';
|
|
import { VIEWERCOMPONENT } from 'ng2-alfresco-viewer';
|
|
import { TAGCOMPONENT, TAGSERVICES } from 'ng2-alfresco-tag';
|
|
import { WEBSCRIPTCOMPONENT } from 'ng2-alfresco-webscript';
|
|
|
|
import { AlfrescoTranslationLoader } from 'ng2-alfresco-core';
|
|
import { Http } from '@angular/http';
|
|
|
|
import {
|
|
UploadButtonComponent,
|
|
DataTableDemoComponent,
|
|
SearchComponent,
|
|
SearchBarComponent,
|
|
LoginDemoComponent,
|
|
ActivitiDemoComponent,
|
|
FormViewer,
|
|
WebscriptComponent,
|
|
TagComponent,
|
|
AboutComponent,
|
|
FilesComponent,
|
|
FormNodeViewer
|
|
} from './components/index';
|
|
|
|
import {
|
|
TabsWidget, ContainerWidget,
|
|
TextWidget,
|
|
NumberWidget,
|
|
CheckboxWidget,
|
|
MultilineTextWidget,
|
|
DropdownWidget,
|
|
HyperlinkWidget,
|
|
RadioButtonsWidget,
|
|
DisplayValueWidget,
|
|
DisplayTextWidget,
|
|
UploadWidget,
|
|
AttachWidget,
|
|
TypeaheadWidget,
|
|
FunctionalGroupWidget,
|
|
PeopleWidget
|
|
} from 'ng2-activiti-form';
|
|
|
|
// todo: temp
|
|
const ACTIVITI_FORM_DIRECTIVES: any[] = [
|
|
ActivitiForm,
|
|
|
|
TabsWidget,
|
|
ContainerWidget,
|
|
TextWidget,
|
|
NumberWidget,
|
|
CheckboxWidget,
|
|
MultilineTextWidget,
|
|
DropdownWidget,
|
|
HyperlinkWidget,
|
|
RadioButtonsWidget,
|
|
DisplayValueWidget,
|
|
DisplayTextWidget,
|
|
UploadWidget,
|
|
AttachWidget,
|
|
TypeaheadWidget,
|
|
FunctionalGroupWidget,
|
|
PeopleWidget
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [
|
|
BrowserModule,
|
|
FormsModule,
|
|
ReactiveFormsModule,
|
|
HttpModule,
|
|
TranslateModule.forRoot({
|
|
provide: TranslateLoader,
|
|
useFactory: (http: Http) => new AlfrescoTranslationLoader(http),
|
|
deps: [Http]
|
|
}),
|
|
routing,
|
|
LoginModule,
|
|
SearchModule.forRoot()
|
|
],
|
|
declarations: [
|
|
AppComponent,
|
|
SearchBarComponent,
|
|
MDL,
|
|
...ALFRESCO_DATATABLE_DIRECTIVES, PaginationComponent,
|
|
...ALFRESCO_TASKLIST_DIRECTIVES,
|
|
...ACTIVITI_PROCESSLIST_DIRECTIVES,
|
|
...ACTIVITI_FORM_DIRECTIVES,
|
|
...DOCUMENT_LIST_DIRECTIVES,
|
|
...CONTEXT_MENU_DIRECTIVES,
|
|
...ALFRESCO_ULPOAD_COMPONENTS,
|
|
...VIEWERCOMPONENT,
|
|
...TAGCOMPONENT,
|
|
...WEBSCRIPTCOMPONENT,
|
|
...ALFRESCO_ULPOAD_COMPONENTS, ...ALFRESCO_ULPOAD_DIRECTIVES,
|
|
|
|
UploadButtonComponent,
|
|
DataTableDemoComponent,
|
|
SearchComponent,
|
|
SearchBarComponent,
|
|
LoginDemoComponent,
|
|
ActivitiDemoComponent,
|
|
FormViewer,
|
|
WebscriptComponent,
|
|
TagComponent,
|
|
AboutComponent,
|
|
FilesComponent,
|
|
FormNodeViewer
|
|
],
|
|
providers: [
|
|
...ALFRESCO_CORE_PROVIDERS,
|
|
...DOCUMENT_LIST_PROVIDERS,
|
|
...ATIVITI_FORM_PROVIDERS,
|
|
...TAGSERVICES,
|
|
...ALFRESCO_ULPOAD_SERVICES
|
|
],
|
|
bootstrap: [ AppComponent ]
|
|
})
|
|
export class AppModule { }
|
|
|