+function($){ "use strict"; $('.external-event').each(function(){ $(this).data('event', { title: $.trim($(this).text()), className: [$(this).data('class')] }); }); $('.external-event').draggable({ revert: true, revertDuration: 0 }); var cal = $('#fullcalendar').fullCalendar({ theme: true, editable: false, droppable: false, header: { left: 'prev, today, next', center: 'title' }, buttonText: { prev: '', next: '' }, events: [ { "category": "online", "title": "Online: 06 h 30 min", "start": "2024-04-24", "className": ["success"] }, { "category": "online", "title": "Online: 03 h 21 min", "start": "2024-04-25", "className": ["success"] }, { "category": "online", "title": "Online: 05 h 03 min", "start": "2024-04-26", "className": ["success"] }, { "category": "online", "title": "Online: 03 h 54 min", "start": "2024-04-27", "className": ["success"] }, { "category": "online", "title": "Online: 04 h 45 min", "start": "2024-04-28", "className": ["success"] }, { "category": "online", "title": "Online: 05 h 39 min", "start": "2024-04-29", "className": ["success"] }, { "category": "online", "title": "Online: 06 h 00 min", "start": "2024-04-30", "className": ["success"] }, { "category": "online", "title": "Online: 05 h 30 min", "start": "2024-05-01", "className": ["success"] }, { "category": "online", "title": "Online: 04 h 42 min", "start": "2024-05-02", "className": ["success"] }, { "category": "online", "title": "Online: 04 h 18 min", "start": "2024-05-03", "className": ["success"] }, { "category": "online", "title": "Online: 03 h 30 min", "start": "2024-05-07", "className": ["success"] }, { "category": "Score", "title": "Max score: 120", "start": "2024-04-24", "className": ["primary"] }, { "category": "Score", "title": "Max score: 83", "start": "2024-04-25", "className": ["primary"] }, { "category": "Score", "title": "Max score: 129", "start": "2024-04-26", "className": ["primary"] }, { "category": "Score", "title": "Max score: 91", "start": "2024-04-27", "className": ["primary"] }, { "category": "Score", "title": "Max score: 142", "start": "2024-04-28", "className": ["primary"] }, { "category": "Score", "title": "Max score: 1513", "start": "2024-04-29", "className": ["primary"] }, { "category": "Score", "title": "Max score: 226", "start": "2024-04-30", "className": ["primary"] }, { "category": "Score", "title": "Max score: 216", "start": "2024-05-01", "className": ["primary"] }, { "category": "Score", "title": "Max score: 1606", "start": "2024-05-02", "className": ["primary"] }, { "category": "Score", "title": "Max score: 391", "start": "2024-05-03", "className": ["primary"] }, { "category": "Score", "title": "Max score: 1016", "start": "2024-05-07", "className": ["primary"] }, { "category": "likes", "title": "New Likes: 620", "start": "2024-04-25", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 1227", "start": "2024-04-26", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 799", "start": "2024-04-27", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 933", "start": "2024-04-28", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 1149", "start": "2024-04-29", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 1833", "start": "2024-04-30", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 1485", "start": "2024-05-01", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 1314", "start": "2024-05-02", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 770", "start": "2024-05-03", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 344", "start": "2024-05-07", "className": ["purple"] } ], drop: function(date) { if ($('#drop-remove').is(':checked')) { $(this).remove(); } }, dayClick: function(date, jsEvent, view) { var modal = $('#new_event_modal'); modal.modal('show'); modal.find('#event_start').val(date.format()); } }); $.fn.windowCheck = function() { var ww = $(window).width(); if(ww > 768) { cal.fullCalendar('changeView', 'month'); } else if(ww < 768 && ww > 540) { cal.fullCalendar('changeView', 'basicWeek'); } else { cal.fullCalendar('changeView', 'basicDay'); } }; $(window).on('resize', function(e){ $().windowCheck(); }); $('.fc-prev-button').append(''); $('.fc-next-button').append(''); // add new event category $('#new_event_cat_form').on('submit', function(e){ e.preventDefault(); var name = $(this).find('#category_name').val(); var color = $(this).find('#category_color').val(); var category = $('
'); category.text(name); category.addClass(color); category.data('event', { title: name, className: [color] }); category.draggable({ revert: true, revertDuration: 0 }); $('#external-events').append(category); $('#new_event_cat_modal').modal('hide'); }); // add new event $('#new_event_form').on('submit', function(e){ e.preventDefault(); var title = $(this).find('#event_title').val(); var category = $(this).find('#event_category').val(); var start = $(this).find('#event_start').val(); cal.fullCalendar('addEventSource', [ { title: title, start: start, className: [category] } ]) $('#new_event_modal').modal('hide'); }); }(jQuery);