mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
117 lines
4.7 KiB
TypeScript
117 lines
4.7 KiB
TypeScript
import {Injectable, NgModule} from "@angular/core";
|
|
import {BrowserModule} from "@angular/platform-browser";
|
|
import {FormsModule} from "@angular/forms";
|
|
import {HttpModule} from "@angular/http";
|
|
import {AgmCoreModule} from "@agm/core";
|
|
import {AppComponent} from "./app.component";
|
|
import {appRoutes} from "./app.routing";
|
|
import {UserService} from "./model/network/user.service";
|
|
import {GalleryService} from "./gallery/gallery.service";
|
|
import {NetworkService} from "./model/network/network.service";
|
|
import {ThumbnailLoaderService} from "./gallery/thumnailLoader.service";
|
|
import {GalleryCacheService} from "./gallery/cache.gallery.service";
|
|
import {FullScreenService} from "./gallery/fullscreen.service";
|
|
import {AuthenticationService} from "./model/network/authentication.service";
|
|
import {UserMangerSettingsComponent} from "./settings/usermanager/usermanager.settings.component";
|
|
import {FrameComponent} from "./frame/frame.component";
|
|
import {GalleryLightboxPhotoComponent} from "./gallery/lightbox/photo/photo.lightbox.gallery.component";
|
|
import {GalleryPhotoLoadingComponent} from "./gallery/grid/photo/loading/loading.photo.grid.gallery.component";
|
|
import {GalleryNavigatorComponent} from "./gallery/navigator/navigator.gallery.component";
|
|
import {GallerySearchComponent} from "./gallery/search/search.gallery.component";
|
|
import {GalleryLightboxComponent} from "./gallery/lightbox/lightbox.gallery.component";
|
|
import {GalleryDirectoryComponent} from "./gallery/directory/directory.gallery.component";
|
|
import {GalleryGridComponent} from "./gallery/grid/grid.gallery.component";
|
|
import {GalleryPhotoComponent} from "./gallery/grid/photo/photo.grid.gallery.component";
|
|
import {LoginComponent} from "./login/login.component";
|
|
import {AdminComponent} from "./admin/admin.component";
|
|
import {GalleryComponent} from "./gallery/gallery.component";
|
|
import {StringifyRole} from "./pipes/StringifyRolePipe";
|
|
import {GalleryMapComponent} from "./gallery/map/map.gallery.component";
|
|
import {GalleryMapLightboxComponent} from "./gallery/map/lightbox/lightbox.map.gallery.component";
|
|
import {ThumbnailManagerService} from "./gallery/thumnailManager.service";
|
|
import {OverlayService} from "./gallery/overlay.service";
|
|
import {Config} from "../../common/config/public/Config";
|
|
import {LAZY_MAPS_API_CONFIG} from "@agm/core/services";
|
|
import {SlimLoadingBarModule} from "ng2-slim-loading-bar";
|
|
import {GalleryShareComponent} from "./gallery/share/share.gallery.component";
|
|
import {ShareLoginComponent} from "./sharelogin/share-login.component";
|
|
import {ShareService} from "./gallery/share.service";
|
|
import {ModalModule} from "ngx-bootstrap/modal";
|
|
import {DatabaseSettingsComponent} from "./settings/database/database.settings.component";
|
|
import {ToastModule} from "ng2-toastr/ng2-toastr";
|
|
import {BrowserAnimationsModule} from "@angular/platform-browser/animations";
|
|
import {NotificationService} from "./model/notification.service";
|
|
import {JWBootstrapSwitchModule} from "jw-bootstrap-switch-ng2";
|
|
import {ClipboardModule} from "ngx-clipboard";
|
|
import {NavigationService} from "./model/navigation.service";
|
|
import {InfoPanelLightboxComponent} from "./gallery/lightbox/infopanel/info-panel.lightbox.gallery.component";
|
|
import {MapSettingsComponent} from "./settings/map/map.settings.component";
|
|
|
|
@Injectable()
|
|
export class GoogleMapsConfig {
|
|
apiKey: string;
|
|
|
|
constructor() {
|
|
this.apiKey = Config.Client.Map.googleApiKey;
|
|
}
|
|
}
|
|
|
|
@NgModule({
|
|
imports: [
|
|
BrowserModule,
|
|
FormsModule,
|
|
HttpModule,
|
|
BrowserAnimationsModule,
|
|
appRoutes,
|
|
ClipboardModule,
|
|
JWBootstrapSwitchModule,
|
|
ToastModule.forRoot(),
|
|
ModalModule.forRoot(),
|
|
AgmCoreModule.forRoot(),
|
|
SlimLoadingBarModule.forRoot()
|
|
],
|
|
declarations: [AppComponent,
|
|
LoginComponent,
|
|
ShareLoginComponent,
|
|
GalleryComponent,
|
|
FrameComponent,
|
|
//Gallery
|
|
GalleryLightboxPhotoComponent,
|
|
GalleryPhotoLoadingComponent,
|
|
GalleryGridComponent,
|
|
GalleryDirectoryComponent,
|
|
GalleryLightboxComponent,
|
|
GalleryMapComponent,
|
|
GalleryMapLightboxComponent,
|
|
FrameComponent,
|
|
GallerySearchComponent,
|
|
GalleryShareComponent,
|
|
GalleryNavigatorComponent,
|
|
GalleryPhotoComponent,
|
|
AdminComponent,
|
|
InfoPanelLightboxComponent,
|
|
//Settings
|
|
UserMangerSettingsComponent,
|
|
DatabaseSettingsComponent,
|
|
MapSettingsComponent,
|
|
StringifyRole],
|
|
providers: [
|
|
{provide: LAZY_MAPS_API_CONFIG, useClass: GoogleMapsConfig},
|
|
NetworkService,
|
|
ShareService,
|
|
UserService,
|
|
GalleryCacheService,
|
|
GalleryService,
|
|
AuthenticationService,
|
|
ThumbnailLoaderService,
|
|
ThumbnailManagerService,
|
|
NotificationService,
|
|
FullScreenService,
|
|
NavigationService,
|
|
OverlayService],
|
|
|
|
bootstrap: [AppComponent]
|
|
})
|
|
export class AppModule {
|
|
}
|