Files
doneit-web/src/app/modals/document-set-up-meeting/document-set-up-meeting.page.ts
T

378 lines
10 KiB
TypeScript
Raw Normal View History

2021-07-29 10:13:39 +01:00
import { Component, OnInit, ViewChild } from '@angular/core';
2021-07-29 15:40:24 +01:00
import { Router } from '@angular/router';
import { ModalController, NavParams } from '@ionic/angular';
2021-07-29 10:13:39 +01:00
import { Event } from 'src/app/models/event.model'
import { EventPerson } from 'src/app/models/eventperson.model';
import { SearchPage } from 'src/app/pages/search/search.page';
2021-08-20 12:02:27 +01:00
import { SearchDocumentDetails, SearchFolderDetails, SearchFolderDetailsDocuments, SearchList } from 'src/app/models/search-document';
2021-08-27 15:21:15 +01:00
import { LoginUserRespose } from 'src/app/models/user.model';
2021-07-29 10:13:39 +01:00
import { AuthService } from 'src/app/services/auth.service';
import { AttendeesPageModal } from 'src/app/pages/events/attendees/attendees.page';
import { ToastService } from 'src/app/services/toast.service';
import { FormControl, FormGroup, Validators } from '@angular/forms';
import * as _moment from 'moment';
import * as _rollupMoment from 'moment';
import { NgxMatDateFormats } from '@angular-material-components/datetime-picker';
import { NGX_MAT_DATE_FORMATS } from '@angular-material-components/datetime-picker';
import { DocumentService } from 'src/app/Rules/document.service';
2021-08-06 14:34:39 +01:00
import { EventsService } from 'src/app/services/events.service';
2021-08-20 12:02:27 +01:00
import { EventService } from 'src/app/services/rules/event.service';
import { EventPipe } from 'src/app/pipes/event.pipe';
2021-07-29 10:13:39 +01:00
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"
}
}
@Component({
selector: 'app-document-set-up-meeting',
templateUrl: './document-set-up-meeting.page.html',
styleUrls: ['./document-set-up-meeting.page.scss'],
2021-08-06 14:34:39 +01:00
providers: [
{ provide: NGX_MAT_DATE_FORMATS, useValue: CUSTOM_DATE_FORMATS },
]
2021-07-29 10:13:39 +01:00
})
export class DocumentSetUpMeetingPage implements OnInit {
public date: any;
public disabled = false;
public showSpinners = true;
public showSeconds = false;
public touchUi = false;
public enableMeridian = false;
public minDate = new Date();
public stepHour = 1;
public stepMinute = 5;
public stepSecond = 5;
p: any = {}
Form: FormGroup;
validateFrom = false
2021-08-06 14:34:39 +01:00
recurringTypes = [];
Occurrence: Date = new Date()
EventRecurrenceType = '-1'
2021-07-29 10:13:39 +01:00
showLoader = false
@ViewChild('picker') picker: any;
@ViewChild('fim') fim: any;
@ViewChild('inicio') inicio: any;
@ViewChild('picker1') picker1: any;
taskParticipants: EventPerson[] = [];
taskParticipantsCc: EventPerson[] = [];
taskDocId:string;
loadedAttachments:any;
2021-07-29 15:40:24 +01:00
2021-08-20 12:02:27 +01:00
attachments: SearchList[] = [];
2021-07-29 10:13:39 +01:00
adding: "intervenient" | "CC" = "intervenient";
postData: Event;
formLocationSatus: boolean = false;
showAttendees= false;
2021-08-27 15:21:15 +01:00
loggeduser: LoginUserRespose;
2021-07-29 10:13:39 +01:00
emptyTextDescription = "Sem intervenientes selecionados";
2021-08-20 12:02:27 +01:00
document: SearchFolderDetails | SearchDocumentDetails | any;
subject: string
2021-08-20 17:14:25 +01:00
eventPipe = new EventPipe()
2021-08-10 16:24:14 +01:00
2021-07-29 10:13:39 +01:00
constructor(
private modalController: ModalController,
private router:Router,
private navParams: NavParams,
authService: AuthService,
private toastService: ToastService,
2021-08-06 14:34:39 +01:00
private documentService: DocumentService,
2021-08-10 16:24:14 +01:00
private calendarService: EventsService,
2021-08-20 17:14:25 +01:00
private eventService: EventService
2021-07-29 10:13:39 +01:00
) {
this.loggeduser = authService.ValidatedUser;
2021-07-29 15:40:24 +01:00
this.document = this.navParams.get('document')
2021-08-20 12:02:27 +01:00
this.subject = this.navParams.get('subject')
2021-07-29 15:40:24 +01:00
2021-07-29 10:13:39 +01:00
this.postData = new Event();
2021-07-29 15:40:24 +01:00
this.postData.Body ={ BodyType : "1", Text : ""};
2021-07-29 10:13:39 +01:00
2021-08-20 12:02:27 +01:00
this.postData.Subject = this.subject
2021-07-29 10:13:39 +01:00
this.postData.CalendarName = "Oficial";
this.postData.Category = 'Reunião'
2021-07-29 15:40:24 +01:00
}
2021-07-29 10:13:39 +01:00
ngOnInit() {
this.adding = "intervenient";
this.setDefaultTime()
2021-08-06 14:34:39 +01:00
this.getRecurrenceTypes();
}
getRecurrenceTypes() {
this.calendarService.getRecurrenceTypes().subscribe(res=>{
this.recurringTypes = res;
});
2021-07-29 10:13:39 +01:00
}
setDefaultTime() {
this.postData.StartDate = new Date()
this.postData.EndDate = (new Date(new Date().getTime() + 15 * 60000))
}
close() {
this.modalController.dismiss(null);
}
runValidation() {
this.validateFrom = true
}
injectValidation() {
this.Form = new FormGroup({
Subject: new FormControl(this.postData.Subject, [
// Validators.required,
// Validators.minLength(4)
]),
Location: new FormControl(this.postData.Location, [
// Validators.required,
]),
CalendarName: new FormControl(this.postData.CalendarName, [
// Validators.required
]),
2021-08-20 12:02:27 +01:00
Date: new FormControl( (this.postData.StartDate < this.postData.EndDate), [
2021-07-29 10:13:39 +01:00
Validators.required
]),
participantes: new FormControl(this.taskParticipants, [
// Validators.required
]),
Categories: new FormControl(this.postData.Category, [
// Validators.required
]),
})
}
2021-07-29 15:40:24 +01:00
async saveTask() {
2021-07-29 10:13:39 +01:00
if(this.loggeduser.Profile == 'MDGPR') {
this.injectValidation()
this.runValidation()
2021-08-06 14:34:39 +01:00
if(this.Form.invalid) return false
2021-07-29 10:13:39 +01:00
}
let Attendees = this.taskParticipants.concat(this.taskParticipantsCc);
2021-08-20 12:02:27 +01:00
var Attachments: addAttachment[] = []
let folder: SearchFolderDetails = this.document
let document: SearchDocumentDetails = this.document
if(folder.Documents) {
this.document.Documents.forEach( (_folder: SearchFolderDetailsDocuments) => {
Attachments.push({
2021-07-29 15:40:24 +01:00
ApplicationId: 361,
Source: 1,
2021-08-20 12:02:27 +01:00
SourceId: _folder['docID'] || _folder['docId'] || _folder.DocId,
SourceTitle: _folder.Assunto,
2021-07-29 15:40:24 +01:00
})
});
} else {
2021-08-20 12:02:27 +01:00
Attachments.push({
2021-07-29 15:40:24 +01:00
ApplicationId: 8,
Source: 1,
2021-08-20 12:02:27 +01:00
SourceId: document['docID'] || document['docId'] || document.DocId,
SourceTitle: document.Assunto
2021-07-29 15:40:24 +01:00
})
}
this.attachments.forEach((e)=> {
2021-08-20 12:02:27 +01:00
Attachments.push({
2021-07-29 15:40:24 +01:00
ApplicationId: e.ApplicationType,
Source: 1,
SourceId: e.Id,
2021-08-20 12:02:27 +01:00
SourceTitle: e.Assunto
2021-07-29 15:40:24 +01:00
})
})
2021-08-10 13:22:33 +01:00
2021-08-20 12:02:27 +01:00
let postEvent = {
EventId: '',
Subject: this.postData.Subject,
Body: this.postData.Body.Text,
Location: this.postData.Location,
CalendarId: this.postData.CalendarName,
CalendarName: this.postData.CalendarName,
StartDate: this.postData.StartDate,
EndDate: this.postData.EndDate,
EventType: 'Reunião',
Attendees: Attendees,
IsMeeting: false, //
IsRecurring: this.postData.IsRecurring,
AppointmentState: 0, //
TimeZone: '', //
Organizer: '', //
Category: 'Reunião',
HasAttachments: false,
EventRecurrence: {
Type: this.EventRecurrenceType,
LastOccurrence: this.Occurrence
},
2021-07-29 10:13:39 +01:00
}
2021-08-20 12:14:24 +01:00
const laoder = this.toastService.loading()
2021-08-20 12:02:27 +01:00
this.eventService.create({
body: postEvent,
calendar: this.postData.CalendarName
}).subscribe(async (respose) => {
const res: any = respose;
const eventId: string = res
const DocumentToSave = this.attachments.map((e) => {
return this.eventPipe.AttactSearchResult(e, eventId, {})
});
await DocumentToSave.forEach(async (attachments, i) => {
await this.eventService.addAttachment(attachments).toPromise();
});
2021-08-20 12:14:24 +01:00
laoder.remove()
2021-08-20 12:04:38 +01:00
this.modalController.dismiss()
2021-08-20 12:02:27 +01:00
})
2021-07-29 10:13:39 +01:00
}
async addParticipants() {
this.adding = "intervenient";
if(window.innerWidth <= 801){
const modal = await this.modalController.create({
component: AttendeesPageModal,
componentProps: {
adding: this.adding,
taskParticipants: this.taskParticipants,
taskParticipantsCc: this.taskParticipantsCc
},
cssClass: 'modal modal-desktop',
backdropDismiss: false
});
await modal.present();
modal.onDidDismiss().then((data) => {
if(data) {
data = data['data'];
const newAttendees: EventPerson[] = data['taskParticipants'];
const newAttendeesCC: EventPerson[] = data['taskParticipantsCc'];
this.setIntervenient(newAttendees);
this.setIntervenientCC(newAttendeesCC);
}
});
} else {
this.showAttendees = true;
}
}
async addParticipantsCc() {
this.adding = "CC";
if(window.innerWidth <= 800) {
const modal = await this.modalController.create({
component: AttendeesPageModal,
componentProps: {
adding: this.adding,
taskParticipants: this.taskParticipants,
taskParticipantsCc: this.taskParticipantsCc
},
cssClass: 'modal modal-desktop',
backdropDismiss: false
});
await modal.present();
modal.onDidDismiss().then((data) => {
if(data){
data = data['data'];
const newAttendees: EventPerson[] = data['taskParticipants'];
const newAttendeesCC: EventPerson[] = data['taskParticipantsCc'];
this.setIntervenient(newAttendees);
this.setIntervenientCC(newAttendeesCC);
}
});
} else {
this.showAttendees = true;
}
}
async getDoc() {
const modal = await this.modalController.create({
component: SearchPage,
2021-07-29 15:57:08 +01:00
cssClass: 'modal modal-desktop modal-width-100-width-background modal-background',
2021-07-29 10:13:39 +01:00
componentProps: {
type: 'AccoesPresidenciais & ArquivoDespachoElect',
showSearchInput: true,
select: true
}
});
await modal.present();
modal.onDidDismiss().then((res)=> {
if(res){
const data = res.data;
2021-07-29 15:40:24 +01:00
this.attachments.push(data.selected);
2021-07-29 10:13:39 +01:00
}
});
}
removeAttachment(index: number) {
2021-07-29 15:40:24 +01:00
this.attachments = this.attachments.filter( (e, i) => index != i);
2021-07-29 10:13:39 +01:00
}
validateFormInputs(){
let formLocation = this.postData.Location.trim();
if(!this.postData.Location && formLocation.length <= 0){
this.formLocationSatus = true;
}
}
dynamicSetIntervenient({taskParticipants, taskParticipantsCc}) {
this.taskParticipants = taskParticipants;
this.taskParticipantsCc = taskParticipantsCc;
}
goToGabinete() {
this.router.navigate(['/home/gabinete-digital']);
}
setIntervenient(data) {
this.taskParticipants = data;
}
setIntervenientCC(data) {
this.taskParticipantsCc = data;
}
}