mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 12:37:53 +00:00
141 lines
4.5 KiB
TypeScript
141 lines
4.5 KiB
TypeScript
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
import { BrowserModule, HammerModule } from '@angular/platform-browser';
|
|
import { RouteReuseStrategy } from '@angular/router';
|
|
|
|
import { IonicModule, IonicRouteStrategy } from '@ionic/angular';
|
|
// import { SplashScreen } from '@ionic-native/splash-screen/ngx';
|
|
import { StatusBar } from '@ionic-native/status-bar/ngx';
|
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
import { AppComponent } from './app.component';
|
|
import { HttpClientModule } from '@angular/common/http';
|
|
|
|
import { InAppBrowser } from '@ionic-native/in-app-browser/ngx';
|
|
|
|
|
|
//import { File } from '@ionic-native/File/ngx';
|
|
import { WebView } from '@ionic-native/ionic-webview/ngx';
|
|
import { FilePath } from '@ionic-native/file-path/ngx';
|
|
import { Camera } from '@ionic-native/camera/ngx';
|
|
import { IonicStorageModule } from '@ionic/storage';
|
|
//
|
|
|
|
import { CommonModule } from '@angular/common';
|
|
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
|
|
|
|
import { CalendarModule, DateAdapter } from 'angular-calendar';
|
|
import { adapterFactory } from 'angular-calendar/date-adapters/date-fns';
|
|
import { NoopAnimationsModule } from '@angular/platform-browser/animations';
|
|
import { MessagesPage } from './pages/chat/messages/messages.page';
|
|
import { WebsocketService } from './services/websocket.service'
|
|
import { ChatService } from './services/chat.service';
|
|
import {MatDatepickerModule} from '@angular/material/datepicker';
|
|
// import { FCM } from 'cordova-plugin-fcm-with-dependecy-updated/ionic/ngx';
|
|
import {MAT_DATE_FORMATS, MAT_DATE_LOCALE} from '@angular/material/core';
|
|
import { NgxMatDateFormats, NGX_MAT_DATE_FORMATS } from '@angular-material-components/datetime-picker';
|
|
import { Network } from '@ionic-native/network/ngx';
|
|
import { File } from '@ionic-native/file/ngx';
|
|
|
|
|
|
import {
|
|
NgxMatDatetimePickerModule,
|
|
NgxMatNativeDateModule,
|
|
NgxMatTimepickerModule
|
|
} from '@angular-material-components/datetime-picker';
|
|
import { MatDialogModule } from '@angular/material/dialog';
|
|
import { MatSelectModule } from '@angular/material/select';
|
|
import { NgxMatMomentModule } from '@angular-material-components/moment-adapter';
|
|
import { MatButtonModule } from '@angular/material/button';
|
|
import { HttpClient } from '@angular/common/http';
|
|
|
|
import { FontAwesomeModule, FaIconLibrary } from '@fortawesome/angular-fontawesome';
|
|
import { fas } from '@fortawesome/free-solid-svg-icons'
|
|
import { far } from '@fortawesome/free-regular-svg-icons'
|
|
import { fab } from '@fortawesome/free-brands-svg-icons'
|
|
|
|
import { ScreenOrientation } from '@ionic-native/screen-orientation/ngx';
|
|
import { PdfViewerModule } from 'ng2-pdf-viewer';
|
|
import { SQLite } from '@ionic-native/sqlite/ngx';
|
|
import { CookieService } from 'ngx-cookie-service';
|
|
|
|
import { ImagePicker } from '@ionic-native/image-picker/ngx';
|
|
import { MediaCapture } from '@ionic-native/media-capture/ngx';
|
|
import { Media } from '@ionic-native/media/ngx';
|
|
import { StreamingMedia } from '@ionic-native/streaming-media/ngx';
|
|
import { PhotoViewer } from '@ionic-native/photo-viewer/ngx';
|
|
|
|
import { FCM } from '@ionic-native/fcm/ngx';
|
|
import { FirebaseX } from '@ionic-native/firebase-x/ngx';
|
|
//import { FCM } from 'cordova-plugin-fcm-with-dependecy-updated/ionic/ngx';
|
|
|
|
@NgModule({
|
|
declarations: [AppComponent],
|
|
entryComponents: [],
|
|
imports: [BrowserModule,
|
|
CommonModule,
|
|
FormsModule,
|
|
CalendarModule.forRoot({
|
|
provide: DateAdapter,
|
|
useFactory: adapterFactory
|
|
}),
|
|
IonicModule.forRoot({animated: false}),
|
|
IonicStorageModule.forRoot(),
|
|
AppRoutingModule,
|
|
FontAwesomeModule,
|
|
HttpClientModule,
|
|
// NgbModule,
|
|
NoopAnimationsModule,
|
|
MatDatepickerModule,
|
|
|
|
//
|
|
NgxMatDatetimePickerModule,
|
|
NgxMatTimepickerModule,
|
|
NgxMatNativeDateModule,
|
|
|
|
NgxMatMomentModule,
|
|
MatButtonModule,
|
|
ReactiveFormsModule,
|
|
|
|
MatSelectModule,
|
|
MatDialogModule,
|
|
//
|
|
PdfViewerModule,
|
|
HammerModule,
|
|
],
|
|
providers: [
|
|
{ provide: MAT_DATE_LOCALE, useValue: 'pt' },
|
|
StatusBar,
|
|
//SplashScreen,
|
|
HttpClient,
|
|
HttpClientModule,
|
|
{ provide: RouteReuseStrategy, useClass: IonicRouteStrategy },
|
|
InAppBrowser,
|
|
Camera,
|
|
//File,
|
|
WebView,
|
|
FilePath,
|
|
FCM,
|
|
FirebaseX,
|
|
WebsocketService,
|
|
ChatService,
|
|
ScreenOrientation,
|
|
Network,
|
|
File,
|
|
SQLite,
|
|
CookieService,
|
|
ImagePicker,
|
|
MediaCapture,
|
|
Media,
|
|
StreamingMedia,
|
|
PhotoViewer
|
|
],
|
|
bootstrap: [AppComponent],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class AppModule {
|
|
constructor(library: FaIconLibrary) {
|
|
library.addIconPacks(fas, fab, far);
|
|
}
|
|
}
|