mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-18 20:47:54 +00:00
91 lines
2.7 KiB
TypeScript
91 lines
2.7 KiB
TypeScript
import { Component } from '@angular/core';
|
|
|
|
import { Platform } from '@ionic/angular';
|
|
import { StatusBar } from '@ionic-native/status-bar/ngx';
|
|
import { NgxMatDateFormats } from '@angular-material-components/datetime-picker';
|
|
import { NGX_MAT_DATE_FORMATS } from '@angular-material-components/datetime-picker';
|
|
import { ChatSystemService } from 'src/app/services/chat/chat-system.service';
|
|
import { InativityService } from "src/app/services/inativity.service";
|
|
import { ThemeService } from 'src/app/services/theme.service';
|
|
import { environment } from 'src/environments/environment';
|
|
import { Storage } from '@ionic/storage';
|
|
import { ChatController } from './controller/chat';
|
|
import { register } from 'swiper/element/bundle';
|
|
import { DomSanitizer } from '@angular/platform-browser';
|
|
import {ScreenOrientation} from "@ionic-native/screen-orientation/ngx";
|
|
|
|
const CUSTOM_DATE_FORMATS: NgxMatDateFormats = {
|
|
parse: {
|
|
dateInput: "YYYY-MMMM-DD HH:mm"
|
|
},
|
|
display: {
|
|
dateInput: "DD MMM YYYY H:mm",
|
|
monthYearLabel: "MMM YYYY",
|
|
dateA11yLabel: "LL",
|
|
monthYearA11yLabel: "MMMM YYYY"
|
|
}
|
|
}
|
|
register();
|
|
|
|
@Component({
|
|
selector: 'app-root',
|
|
templateUrl: 'app.component.html',
|
|
styleUrls: ['app.component.scss'],
|
|
providers: [
|
|
{ provide: NGX_MAT_DATE_FORMATS, useValue: CUSTOM_DATE_FORMATS },
|
|
]
|
|
})
|
|
export class AppComponent {
|
|
constructor(
|
|
private platform: Platform,
|
|
private statusBar: StatusBar,
|
|
public ThemeService: ThemeService,
|
|
private storage: Storage,
|
|
private ChatSystemService: ChatSystemService,
|
|
private sanitizer: DomSanitizer,
|
|
private screenOrientation: ScreenOrientation
|
|
) {
|
|
|
|
window["sanitizer"] = this.sanitizer
|
|
this.initializeApp();
|
|
this.storage.set('version', environment.version).then(() => {})
|
|
ChatController.ChatSystemService = this.ChatSystemService
|
|
|
|
}
|
|
|
|
/* requestPermission() {
|
|
this.afMessaging.requestToken.subscribe(
|
|
(token) => {
|
|
// Save the token to your server for sending notifications
|
|
console.log('Permission granted! Token:', token);
|
|
},
|
|
(error) => {
|
|
console.error('Permission denied:', error);
|
|
}
|
|
);
|
|
}
|
|
|
|
receiveMessages() {
|
|
this.afMessaging.messages.subscribe((message) => {
|
|
console.log('Received message:', message);
|
|
// Handle the received message, e.g., show a notification
|
|
});
|
|
} */
|
|
|
|
initializeApp() {
|
|
this.platform.ready().then(() => {
|
|
this.statusBar.styleDefault();
|
|
|
|
if (this.platform.is("tablet")) {
|
|
window.screen.orientation.unlock();
|
|
} else if( this.platform.is("mobile")) {
|
|
if(this.platform.is('ios')){
|
|
this.screenOrientation.lock('portrait')
|
|
} else {
|
|
window.screen.orientation.lock('portrait');
|
|
}
|
|
}
|
|
});
|
|
}
|
|
}
|