Files
doneit-web/src/app/pages/agenda/new-event/new-event.page.ts
T

314 lines
8.4 KiB
TypeScript
Raw Normal View History

import { Component, OnInit } from '@angular/core';
2021-06-08 15:59:06 +01:00
import { AnimationController, ModalController, NavParams } from '@ionic/angular';
2021-04-23 10:35:53 +01:00
import { EventAttachment } from 'src/app/models/attachment.model';
2021-01-29 14:13:31 +01:00
import { EventBody } from 'src/app/models/eventbody.model';
import { EventPerson } from 'src/app/models/eventperson.model';
2021-04-23 10:35:53 +01:00
import { SearchDocument } from 'src/app/models/search-document';
import { AttachmentsService } from 'src/app/services/attachments.service';
2021-01-29 14:13:31 +01:00
import { EventsService } from 'src/app/services/events.service';
2021-06-15 15:09:20 +01:00
import { ToastService } from 'src/app/services/toast.service';
2021-06-08 15:59:06 +01:00
import { BadRequestPage } from 'src/app/shared/popover/bad-request/bad-request.page';
import { SuccessMessagePage } from 'src/app/shared/popover/success-message/success-message.page';
2021-01-29 14:13:31 +01:00
import { Event } from '../../../models/event.model';
2021-06-15 15:28:03 +01:00
import { AttendeesPageModal } from '../../events/attendees/attendees.page';
import { SearchPage } from '../../search/search.page';
@Component({
selector: 'app-new-event',
templateUrl: './new-event.page.html',
styleUrls: ['./new-event.page.scss'],
})
2021-04-07 11:52:28 +01:00
export class NewEventPage implements OnInit {
2021-01-29 14:13:31 +01:00
postEvent: Event;
eventBody: EventBody;
segment:string = "true";
profile:string;
eventAttendees: EventPerson[];
selectedSegment: string;
selectedDate: Date;
minDate: string;
2021-04-07 11:52:28 +01:00
adding: "intervenient" | "CC";
taskParticipants: any = [];
taskParticipantsCc: any = [];
2021-04-23 10:35:53 +01:00
documents:SearchDocument[] = [];
constructor(
private modalController: ModalController,
2021-01-29 14:13:31 +01:00
private navParams: NavParams,
private eventService: EventsService,
2021-06-08 15:59:06 +01:00
private attachmentsService: AttachmentsService,
private animationController: AnimationController,
2021-06-15 15:09:20 +01:00
private toastService: ToastService,
2021-01-29 14:13:31 +01:00
) {
this.postEvent = new Event();
this.eventBody = { BodyType : "1", Text : ""};
2021-04-07 11:52:28 +01:00
this.postEvent.Body = this.eventBody;
2021-01-29 14:13:31 +01:00
this.profile = this.navParams.get('profile');
this.selectedSegment = this.navParams.get('segment');
this.selectedDate = this.navParams.get('eventSelectedDate');
}
ngOnInit() {
2021-01-29 14:13:31 +01:00
2021-05-24 16:49:25 +01:00
/* console.log(this.profile); */
2021-01-29 14:13:31 +01:00
let selectedStartdDate = this.selectedDate;
let selectedEndDate = new Date(this.selectedDate);
/* Set + 30minutes to seleted datetime */
selectedEndDate.setMinutes(this.selectedDate.getMinutes() + 30) ;
this.minDate = this.selectedDate.toString();
2021-01-29 14:13:31 +01:00
if(this.selectedSegment != "Combinada"){
this.postEvent ={
EventId: '',
Subject: '',
Body: this.eventBody,
Location: '',
CalendarId: '',
CalendarName: this.selectedSegment,
StartDate: selectedStartdDate,
EndDate: new Date(selectedEndDate),
EventType: 'Reunião',
Attendees: null,
IsMeeting: false,
IsRecurring: false,
AppointmentState: 0,
TimeZone: '',
Organizer: '',
2021-02-02 09:02:13 +01:00
Categories: ['Reunião'],
2021-01-29 14:13:31 +01:00
HasAttachments: false,
};
}
else{
this.postEvent ={
EventId: '',
Subject: '',
Body: this.eventBody,
Location: '',
CalendarId: '',
CalendarName: 'Oficial',
StartDate: selectedStartdDate,
EndDate: new Date(selectedEndDate),
EventType: 'Reunião',
Attendees: null,
IsMeeting: false,
IsRecurring: false,
AppointmentState: 0,
TimeZone: '',
Organizer: '',
2021-02-02 09:02:13 +01:00
Categories: ['Reunião'],
2021-01-29 14:13:31 +01:00
HasAttachments: false,
};
}
2021-02-24 20:23:15 +01:00
window.onresize = (event) => {
// if not mobile remove all component
if( window.innerWidth >= 1024){
this.modalController.dismiss();
}
};
2021-05-06 13:32:54 +01:00
}
close(){
this.modalController.dismiss();
}
2021-05-24 16:49:25 +01:00
async save() {
/* console.log(this.postEvent);
2021-04-07 11:52:28 +01:00
console.log(this.profile); */
2021-04-23 10:35:53 +01:00
if(this.documents.length >= 0) {
this.postEvent.HasAttachments = true;
}
let eventId: string;
2021-05-24 16:49:25 +01:00
try {
if(this.profile=='mdgpr') {
eventId = await this.eventService.postEventMd(this.postEvent, this.postEvent.CalendarName).toPromise();
}
else if(this.profile=='pr'){
eventId = await this.eventService.postEventPr(this.postEvent, this.postEvent.CalendarName).toPromise();
}
const DocumentToSave: EventAttachment[] = this.documents.map((e) => {
return {
SourceTitle: e.Assunto,
ParentId: eventId,
Source: '1',
SourceId: e.Id,
ApplicationId: e.ApplicationType.toString(),
Id: '',
Link: '',
SerialNumber: ''
};
});
await DocumentToSave.forEach( async (attachments, i) => {
try {
await this.attachmentsService.setEventAttachmentById(attachments).toPromise();
} catch(error) {
alert('document error')
}
});
2021-06-15 15:09:20 +01:00
this.toastService.successMessage()
2021-05-24 16:49:25 +01:00
this.modalController.dismiss(this.postEvent);
} catch (error) {
2021-06-15 15:09:20 +01:00
this.toastService.badRequest()
2021-01-29 14:13:31 +01:00
}
2021-04-23 10:35:53 +01:00
2021-05-24 16:49:25 +01:00
}
2021-04-23 10:35:53 +01:00
2021-06-09 16:38:41 +01:00
async successMessage(message?: any, callback?) {
2021-06-15 14:30:32 +01:00
var notification = document.createElement('div')
notification.id = 'notification'
notification.innerHTML = `
<div class="main-content width-100 pa-20">
<p class="message d-flex align-center">
<ion-icon slot="end" class="title-icon pr-10" src="/assets/images/nofitication-success.svg"></ion-icon>
<p class="text">{{ message }}</p>
</p>
</div>
`
2021-06-08 15:59:06 +01:00
2021-06-15 14:30:32 +01:00
document.body.append(notification)
2021-06-15 14:48:25 +01:00
notification.querySelector('.text').innerHTML = message || 'Processo efetuado'
2021-05-24 16:49:25 +01:00
setTimeout(()=>{
2021-06-15 14:30:32 +01:00
notification.remove()
2021-06-09 10:49:37 +01:00
},7000)
2021-05-24 16:49:25 +01:00
}
2021-06-09 16:34:14 +01:00
async badRequest(message?: string, callback?) {
2021-06-08 15:59:06 +01:00
const enterAnimation = (baseEl: any) => {
const backdropAnimation = this.animationController.create()
.addElement(baseEl.querySelector('ion-backdrop')!)
.fromTo('opacity', '0.01', 'var(--backdrop-opacity)');
const wrapperAnimation = this.animationController.create()
.addElement(baseEl.querySelector('.modal-wrapper')!)
.keyframes([
{ offset: 0, opacity: '1', right: '-100%' },
{ offset: 1, opacity: '1', right: '0px' }
]);
return this.animationController.create()
.addElement(baseEl)
.easing('ease-out')
.duration(500)
.addAnimation([backdropAnimation, wrapperAnimation]);
}
const leaveAnimation = (baseEl: any) => {
return enterAnimation(baseEl).direction('reverse');
}
2021-05-24 16:49:25 +01:00
const modal = await this.modalController.create({
2021-06-08 15:59:06 +01:00
enterAnimation,
leaveAnimation,
component: BadRequestPage,
componentProps: {
message: message || 'Processo efetuado' ,
2021-05-24 16:49:25 +01:00
},
2021-06-08 15:59:06 +01:00
cssClass: 'notification-modal'
2021-05-24 16:49:25 +01:00
});
2021-05-24 16:49:25 +01:00
modal.present()
setTimeout(()=>{
2021-06-09 16:34:14 +01:00
if (callback) {
callback()
}
2021-05-24 16:49:25 +01:00
modal.dismiss()
2021-06-09 10:49:37 +01:00
},7000)
2021-05-24 16:49:25 +01:00
}
2021-04-07 11:52:28 +01:00
async openAttendees() {
2021-05-04 15:44:48 +01:00
2021-01-29 14:13:31 +01:00
const modal = await this.modalController.create({
2021-06-15 15:28:03 +01:00
component: AttendeesPageModal,
2021-01-29 14:13:31 +01:00
componentProps: {
2021-04-07 11:52:28 +01:00
eventAttendees: this.postEvent.Attendees,
adding: this.adding,
taskParticipants: this.taskParticipants
2021-01-29 14:13:31 +01:00
},
cssClass: 'attendee modal modal-desktop',
2021-01-29 14:13:31 +01:00
backdropDismiss: false
});
await modal.present();
modal.onDidDismiss().then((data) => {
2021-04-07 11:52:28 +01:00
if(data){
data = data['data'];
const newAttendees: EventPerson[] = data['taskParticipants'];
const newAttendeesCC: EventPerson[] = data['taskParticipantsCc'];
this.setIntervenient(newAttendees);
this.setIntervenientCC(newAttendeesCC);
2021-01-29 14:13:31 +01:00
}
});
2021-04-07 11:52:28 +01:00
}
setIntervenient(data){
this.taskParticipants = data;
this.postEvent.Attendees = data;
}
setIntervenientCC(data){
this.taskParticipantsCc = data;
}
addParticipants(){
this.adding = 'intervenient'
this.openAttendees();
}
addParticipantsCC(){
this.adding = 'CC'
this.openAttendees();
}
2021-01-29 14:13:31 +01:00
2021-04-23 10:35:53 +01:00
async getDoc(){
const modal = await this.modalController.create({
component: SearchPage,
cssClass: 'modal-width-100-width-background modal',
componentProps: {
type: 'AccoesPresidenciais & ArquivoDespachoElect',
showSearchInput: true,
select: true
2021-04-23 10:35:53 +01:00
}
});
await modal.present();
modal.onDidDismiss().then((res)=>{
if(res){
const data = res.data;
this.documents.push(data.selected);
}
});
}
removeAttachment(index: number){
this.documents = this.documents.filter( (e, i) => index != i);
}
2021-04-07 11:52:28 +01:00
}