2017-07-12 14:34:32 +00:00
|
|
|
import { NgModule } from '@angular/core';
|
2017-07-15 15:03:40 +00:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
2017-08-02 10:01:55 +00:00
|
|
|
import { HttpModule } from '@angular/http';
|
2017-07-15 15:03:40 +00:00
|
|
|
import { HttpClientModule } from '@angular/common/http';
|
2017-07-12 14:34:32 +00:00
|
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
|
|
|
import { RouterModule, Routes } from '@angular/router';
|
2017-08-02 10:01:55 +00:00
|
|
|
import { InMemoryWebApiModule } from 'angular-in-memory-web-api';
|
|
|
|
|
2017-07-15 15:03:40 +00:00
|
|
|
import 'hammerjs';
|
2017-08-02 10:01:55 +00:00
|
|
|
|
2017-07-12 12:35:07 +00:00
|
|
|
import { SharedModule } from './core/modules/shared.module';
|
2017-08-02 10:01:55 +00:00
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
import { ProjectModule } from './main/content/apps/dashboards/project/project.module';
|
2017-08-14 15:18:01 +00:00
|
|
|
import { PerfectScrollbarConfigInterface, PerfectScrollbarModule } from 'ngx-perfect-scrollbar';
|
2017-07-18 16:34:12 +00:00
|
|
|
import { FuseFakeDbService } from './fuse-fake-db/fuse-fake-db.service';
|
2017-08-02 10:01:55 +00:00
|
|
|
import { FuseMainModule } from './main/main.module';
|
2017-08-02 08:53:30 +00:00
|
|
|
import { PagesModule } from './main/content/pages/pages.module';
|
|
|
|
import { UIModule } from './main/content/ui/ui.module';
|
|
|
|
import { ComponentsModule } from './main/content/components/components.module';
|
2017-08-18 09:31:17 +00:00
|
|
|
import { FuseSplashScreenService } from './core/services/splash-screen.service';
|
2017-08-22 10:45:07 +00:00
|
|
|
import { FuseConfigService } from './core/services/config.service';
|
2017-07-15 15:03:40 +00:00
|
|
|
|
2017-07-08 16:12:52 +00:00
|
|
|
const appRoutes: Routes = [
|
2017-07-13 14:43:22 +00:00
|
|
|
{
|
2017-07-15 15:03:40 +00:00
|
|
|
path : 'apps/mail',
|
2017-08-02 10:01:55 +00:00
|
|
|
loadChildren: './main/content/apps/mail/mail.module#FuseMailModule'
|
2017-07-13 14:43:22 +00:00
|
|
|
},
|
2017-07-23 07:32:13 +00:00
|
|
|
{
|
|
|
|
path : 'apps/chat',
|
2017-08-02 10:01:55 +00:00
|
|
|
loadChildren: './main/content/apps/chat/chat.module#FuseChatModule'
|
2017-07-23 07:32:13 +00:00
|
|
|
},
|
2017-07-23 15:20:48 +00:00
|
|
|
{
|
|
|
|
path : 'apps/calendar',
|
2017-08-02 10:01:55 +00:00
|
|
|
loadChildren: './main/content/apps/calendar/calendar.module#FuseCalendarModule'
|
2017-07-23 15:20:48 +00:00
|
|
|
},
|
2017-07-26 21:33:17 +00:00
|
|
|
{
|
|
|
|
path : 'apps/todo',
|
2017-08-02 10:01:55 +00:00
|
|
|
loadChildren: './main/content/apps/todo/todo.module#FuseTodoModule'
|
2017-07-26 21:33:17 +00:00
|
|
|
},
|
2017-08-01 12:27:32 +00:00
|
|
|
{
|
|
|
|
path : 'apps/file-manager',
|
2017-08-02 10:01:55 +00:00
|
|
|
loadChildren: './main/content/apps/file-manager/file-manager.module#FuseFileManagerModule'
|
2017-08-01 12:27:32 +00:00
|
|
|
},
|
2017-08-02 07:51:11 +00:00
|
|
|
{
|
|
|
|
path : 'apps/contacts',
|
2017-08-02 10:01:55 +00:00
|
|
|
loadChildren: './main/content/apps/contacts/contacts.module#FuseContactsModule'
|
2017-08-02 07:51:11 +00:00
|
|
|
},
|
2017-07-12 12:35:07 +00:00
|
|
|
{
|
|
|
|
path : '**',
|
|
|
|
redirectTo: 'apps/dashboards/project'
|
2017-07-15 15:03:40 +00:00
|
|
|
}
|
2017-07-08 16:12:52 +00:00
|
|
|
];
|
2017-06-27 08:08:19 +00:00
|
|
|
|
|
|
|
@NgModule({
|
2017-07-04 09:42:00 +00:00
|
|
|
declarations: [
|
2017-08-17 07:40:25 +00:00
|
|
|
AppComponent
|
2017-07-04 09:42:00 +00:00
|
|
|
],
|
|
|
|
imports : [
|
|
|
|
BrowserModule,
|
2017-07-17 15:11:34 +00:00
|
|
|
HttpModule,
|
2017-07-15 15:03:40 +00:00
|
|
|
HttpClientModule,
|
2017-07-04 09:42:00 +00:00
|
|
|
BrowserAnimationsModule,
|
2017-07-12 12:35:07 +00:00
|
|
|
RouterModule.forRoot(appRoutes),
|
2017-08-02 10:01:55 +00:00
|
|
|
SharedModule,
|
2017-07-13 14:43:22 +00:00
|
|
|
|
2017-08-23 14:28:15 +00:00
|
|
|
InMemoryWebApiModule.forRoot(FuseFakeDbService, {delay: 0}),
|
2017-07-17 20:17:18 +00:00
|
|
|
|
2017-08-22 10:10:46 +00:00
|
|
|
PerfectScrollbarModule.forRoot(),
|
2017-07-15 15:03:40 +00:00
|
|
|
|
2017-08-02 08:53:30 +00:00
|
|
|
FuseMainModule,
|
2017-07-13 14:43:22 +00:00
|
|
|
|
2017-07-08 22:21:25 +00:00
|
|
|
ProjectModule,
|
2017-07-13 14:43:22 +00:00
|
|
|
|
2017-07-27 15:05:50 +00:00
|
|
|
PagesModule,
|
2017-07-29 13:42:53 +00:00
|
|
|
UIModule,
|
|
|
|
ComponentsModule
|
2017-07-04 09:42:00 +00:00
|
|
|
],
|
2017-08-18 09:31:17 +00:00
|
|
|
providers: [
|
2017-08-22 10:45:07 +00:00
|
|
|
FuseSplashScreenService,
|
|
|
|
FuseConfigService
|
2017-08-18 09:31:17 +00:00
|
|
|
],
|
2017-08-02 10:01:55 +00:00
|
|
|
bootstrap : [
|
|
|
|
AppComponent
|
|
|
|
]
|
2017-06-27 08:08:19 +00:00
|
|
|
})
|
2017-07-04 09:42:00 +00:00
|
|
|
export class AppModule
|
|
|
|
{
|
|
|
|
}
|