mirror of
https://github.com/grocy/grocy.git
synced 2025-04-29 01:32:38 +00:00
53 lines
1.3 KiB
JavaScript
53 lines
1.3 KiB
JavaScript
var firstDay = null;
|
|
if (!Grocy.CalendarFirstDayOfWeek.isEmpty())
|
|
{
|
|
firstDay = parseInt(Grocy.CalendarFirstDayOfWeek);
|
|
}
|
|
|
|
var calendar = $("#calendar").fullCalendar({
|
|
"themeSystem": "bootstrap4",
|
|
"header": {
|
|
"left": "month,agendaWeek,agendaDay,listWeek",
|
|
"center": "title",
|
|
"right": "prev,next"
|
|
},
|
|
"weekNumbers": Grocy.CalendarShowWeekNumbers,
|
|
"defaultView": ($(window).width() < 768) ? "agendaDay" : "month",
|
|
"firstDay": firstDay,
|
|
"eventLimit": true,
|
|
"eventSources": fullcalendarEventSources
|
|
});
|
|
|
|
$("#ical-button").on("click", function(e)
|
|
{
|
|
e.preventDefault();
|
|
|
|
Grocy.Api.Get('calendar/ical/sharing-link',
|
|
function(result)
|
|
{
|
|
bootbox.alert({
|
|
title: __t('Share/Integrate calendar (iCal)'),
|
|
message: __t('Use the following (public) URL to share or integrate the calendar in iCal format') + '<input type="text" class="form-control form-control-sm mt-2 easy-link-copy-textbox" value="' + result.url + '">'
|
|
});
|
|
},
|
|
function(xhr)
|
|
{
|
|
console.error(xhr);
|
|
}
|
|
);
|
|
});
|
|
|
|
$(window).on("resize", function()
|
|
{
|
|
// Automatically switch the calendar to "basicDay" view on small screens
|
|
// and to "month" otherwise
|
|
if ($(window).width() < 768)
|
|
{
|
|
calendar.fullCalendar("changeView", "agendaDay");
|
|
}
|
|
else
|
|
{
|
|
calendar.fullCalendar("changeView", "month");
|
|
}
|
|
});
|