Calendar Edit

This commit is contained in:
Mathieu Lagace
2019-08-21 10:30:52 -04:00
parent 7869a96c81
commit 1d3f07b7b7
28 changed files with 20899 additions and 165 deletions

1498
public/css/custom.css vendored

File diff suppressed because it is too large Load Diff

58
public/js/calendar.js vendored
View File

@@ -20,8 +20,8 @@ function initFullCalendar(authToken) {
dateClick: function (info) {
var date = moment(info.date).format("YYYY-MM-DD");
Swal.fire({
title: 'Ajouter un evenement?',
text: "Voulez vous ajouter un evenement le "+date,
title: 'Ajouter un événement?',
text: "Voulez vous ajouter un événement le "+date,
type: 'warning',
showCancelButton: true,
confirmButtonText: 'Oui',
@@ -47,4 +47,58 @@ function switchType(date) {
console.log( "Loading defaut value for activity type ("+selectInput.val()+")" );
});
}
function switchTypeEDIT(date) {
var selectInput = $('#type')
Swal.fire({
title: 'êtes vous sur de vouloir changer le type d\'évenement ?',
text: "Voulez vous ajouter un événement le "+date,
type: 'warning',
showCancelButton: true,
confirmButtonText: 'Oui',
cancelButtonText: 'Non',
}).then((result) => {
if (result.value) {
$.get( "/api/schedule/events/add/modal/"+selectInput.val()+"/"+date+"?api_token="+api_token, function( data ) {
$( "#container" ).html( data );
console.log( "Loading defaut value for activity type ("+selectInput.val()+")" );
});
}
})
}
function deleteEvent(pid){
swal({
title: 'Êtes vous certain de vouloir supprimer l\'évenement?',
text: "Vous ne pourrez pas annuler cette action",
type: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Oui',
cancelButtonText: 'Non'
}).then((result) => {
if (result.value) {
(function($) {
$.post('/api/schedule/event/delete/'+pid+'?api_token='+api_token, function(data) {
console.log('Delete');
});
})(jQuery);
swal(
'Supprimé!',
"L'évenement a été supprimé",
'success'
).then((result) => {
if (result.value) {
location.reload();
}
})
}
})
}