mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
save
This commit is contained in:
@@ -8,8 +8,8 @@ import { GroupMessagesPageRoutingModule } from './group-messages-routing.module'
|
||||
|
||||
import { GroupMessagesPage } from './group-messages.page';
|
||||
import { SharedModule } from 'src/app/shared/shared.module';
|
||||
import { PopoverModule } from 'src/app/shared/popover/chat-popover/popover.modules';
|
||||
import { ComponentsModule } from 'src/app/components/components.module';
|
||||
import { ChatPopoverPageModule } from '../../popover/chat-popover/chat-popover.module';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
@@ -17,7 +17,7 @@ import { ComponentsModule } from 'src/app/components/components.module';
|
||||
FormsModule,
|
||||
IonicModule,
|
||||
ComponentsModule,
|
||||
PopoverModule,
|
||||
ChatPopoverPageModule,
|
||||
GroupMessagesPageRoutingModule
|
||||
],
|
||||
declarations: []
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
@@ -6,18 +6,20 @@ import { IonicModule } from '@ionic/angular';
|
||||
import { EditEventToApproveComponentRoutingModule } from './edit-event-routing.module';
|
||||
|
||||
import { EditEventToApproveComponent } from './edit-event.page';
|
||||
import { AttendeeModalPage } from 'src/app/shared/event/attendee-modal/attendee-modal.page';
|
||||
import { ComponentsModule } from 'src/app/components/components.module';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
FormsModule,
|
||||
IonicModule,
|
||||
ComponentsModule,
|
||||
EditEventToApproveComponentRoutingModule
|
||||
],
|
||||
declarations: [
|
||||
EditEventToApproveComponent
|
||||
]
|
||||
],
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
||||
})
|
||||
export class EditEventToApproveComponentModule {}
|
||||
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { CUSTOM_ELEMENTS_SCHEMA, NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
|
||||
@@ -7,14 +7,17 @@ import { IonicModule } from '@ionic/angular';
|
||||
import { ChatPopoverPageRoutingModule } from './chat-popover-routing.module';
|
||||
|
||||
import { ChatPopoverPage } from './chat-popover.page';
|
||||
import { ComponentsModule } from 'src/app/components/components.module';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
FormsModule,
|
||||
IonicModule,
|
||||
ComponentsModule,
|
||||
ChatPopoverPageRoutingModule
|
||||
],
|
||||
declarations: []
|
||||
declarations: [ChatPopoverPage],
|
||||
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
||||
})
|
||||
export class ChatPopoverPageModule {}
|
||||
|
||||
@@ -1,6 +1,5 @@
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
import { ModalController, NavParams, PopoverController } from '@ionic/angular';
|
||||
import { EditGroupPage } from 'src/app/pages/chat/edit-group/edit-group.page';
|
||||
import { ChatService } from 'src/app/services/chat.service';
|
||||
|
||||
@Component({
|
||||
@@ -84,20 +83,6 @@ export class ChatPopoverPage implements OnInit {
|
||||
|
||||
async openChangeGroupName(){
|
||||
this.modalController.dismiss('edit');
|
||||
/* const modal = await this.modalController.create({
|
||||
component: EditGroupPage,
|
||||
componentProps: {
|
||||
roomId: this.roomId,
|
||||
},
|
||||
cssClass: 'contacts',
|
||||
backdropDismiss: false
|
||||
});
|
||||
|
||||
await modal.present();
|
||||
modal.onDidDismiss().then((res)=>{
|
||||
console.log(res.data);
|
||||
this.modalController.dismiss(res.data);
|
||||
}); */
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,20 +0,0 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
import { ChatPopoverPage } from './chat-popover.page';
|
||||
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
FormsModule,
|
||||
IonicModule,
|
||||
],
|
||||
exports: [
|
||||
ChatPopoverPage,
|
||||
],
|
||||
entryComponents:[],
|
||||
declarations: []
|
||||
})
|
||||
export class PopoverModule {}
|
||||
@@ -7,12 +7,14 @@ import { IonicModule } from '@ionic/angular';
|
||||
import { OptsExpedientePageRoutingModule } from './opts-expediente-routing.module';
|
||||
|
||||
import { OptsExpedientePage } from './opts-expediente.page';
|
||||
import { ComponentsModule } from 'src/app/components/components.module';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
FormsModule,
|
||||
IonicModule,
|
||||
ComponentsModule,
|
||||
OptsExpedientePageRoutingModule
|
||||
],
|
||||
declarations: [OptsExpedientePage]
|
||||
|
||||
@@ -15,6 +15,7 @@ import { NewActionPage } from './new-action.page';
|
||||
IonicModule,
|
||||
NewActionPageRoutingModule
|
||||
],
|
||||
declarations: []
|
||||
exports: [NewActionPage],
|
||||
declarations: [NewActionPage]
|
||||
})
|
||||
export class NewActionPageModule {}
|
||||
|
||||
@@ -15,6 +15,7 @@ import { NewPublicationPage } from './new-publication.page';
|
||||
IonicModule,
|
||||
NewPublicationPageRoutingModule
|
||||
],
|
||||
declarations: []
|
||||
exports: [NewPublicationPage],
|
||||
declarations: [NewPublicationPage]
|
||||
})
|
||||
export class NewPublicationPageModule {}
|
||||
|
||||
+2
-1
@@ -15,6 +15,7 @@ import { PublicationDetailPage } from './publication-detail.page';
|
||||
IonicModule,
|
||||
PublicationDetailPageRoutingModule
|
||||
],
|
||||
declarations: []
|
||||
exports: [PublicationDetailPage],
|
||||
declarations: [PublicationDetailPage]
|
||||
})
|
||||
export class PublicationDetailPageModule {}
|
||||
|
||||
@@ -5,8 +5,7 @@ import { FormsModule } from '@angular/forms';
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
|
||||
import { ViewPublicationsPageRoutingModule } from './view-publications-routing.module';
|
||||
|
||||
import { ViewPublicationsPage } from 'src/app/pages/publications/view-publications/view-publications.page';
|
||||
import { ViewPublicationsPage } from './view-publications.page';
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
@@ -15,6 +14,7 @@ import { ViewPublicationsPage } from 'src/app/pages/publications/view-publicatio
|
||||
IonicModule,
|
||||
ViewPublicationsPageRoutingModule
|
||||
],
|
||||
declarations: []
|
||||
exports: [ViewPublicationsPage],
|
||||
declarations: [ViewPublicationsPage]
|
||||
})
|
||||
export class ViewPublicationsPageModule {}
|
||||
|
||||
@@ -109,7 +109,7 @@ export class ViewPublicationsPage implements OnInit {
|
||||
|
||||
}
|
||||
|
||||
async AddPublication(publicationType:any, folderId:string) {
|
||||
async AddPublication(publicationType:any, folderId:any) {
|
||||
|
||||
if( window.innerWidth <= 1024) {
|
||||
const modal = await this.modalController.create({
|
||||
|
||||
Reference in New Issue
Block a user