+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: 00 h 09 min", "start": "2024-06-21", "className": ["success"] }, { "category": "online", "title": "Online: 04 h 45 min", "start": "2024-06-22", "className": ["success"] }, { "category": "online", "title": "Online: 03 h 09 min", "start": "2024-06-24", "className": ["success"] }, { "category": "online", "title": "Online: 01 h 12 min", "start": "2024-06-25", "className": ["success"] }, { "category": "online", "title": "Online: 02 h 33 min", "start": "2024-07-18", "className": ["success"] }, { "category": "online", "title": "Online: 01 h 48 min", "start": "2024-07-19", "className": ["success"] }, { "category": "online", "title": "Online: 04 h 30 min", "start": "2024-07-27", "className": ["success"] }, { "category": "online", "title": "Online: 03 h 15 min", "start": "2024-07-31", "className": ["success"] }, { "category": "online", "title": "Online: 01 h 12 min", "start": "2024-08-09", "className": ["success"] }, { "category": "online", "title": "Online: 02 h 21 min", "start": "2024-08-10", "className": ["success"] }, { "category": "online", "title": "Online: 00 h 00 min", "start": "2024-09-02", "className": ["success"] }, { "category": "online", "title": "Online: 00 h 57 min", "start": "2024-09-03", "className": ["success"] }, { "category": "Score", "title": "Max score: 304", "start": "2024-06-21", "className": ["primary"] }, { "category": "Score", "title": "Max score: 1396", "start": "2024-06-22", "className": ["primary"] }, { "category": "Score", "title": "Max score: 3298", "start": "2024-06-24", "className": ["primary"] }, { "category": "Score", "title": "Max score: 1116", "start": "2024-06-25", "className": ["primary"] }, { "category": "Score", "title": "Max score: 1773", "start": "2024-07-18", "className": ["primary"] }, { "category": "Score", "title": "Max score: 1051", "start": "2024-07-19", "className": ["primary"] }, { "category": "Score", "title": "Max score: 1306", "start": "2024-07-27", "className": ["primary"] }, { "category": "Score", "title": "Max score: 1692", "start": "2024-07-31", "className": ["primary"] }, { "category": "Score", "title": "Max score: 631", "start": "2024-08-09", "className": ["primary"] }, { "category": "Score", "title": "Max score: 1326", "start": "2024-08-10", "className": ["primary"] }, { "category": "Score", "title": "Max score: 38", "start": "2024-09-02", "className": ["primary"] }, { "category": "Score", "title": "Max score: 790", "start": "2024-09-03", "className": ["primary"] }, { "category": "likes", "title": "New Likes: 3779", "start": "2024-06-22", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 5313", "start": "2024-06-24", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 978", "start": "2024-06-25", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 3022", "start": "2024-07-18", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 743", "start": "2024-07-19", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 3994", "start": "2024-07-27", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 3005", "start": "2024-07-31", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 788", "start": "2024-08-09", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 770", "start": "2024-08-10", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 528", "start": "2024-09-02", "className": ["purple"] }, { "category": "likes", "title": "New Likes: 972", "start": "2024-09-03", "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);