使用fullcalendar导入iCal(ics)?

问题描述 投票:10回答:4

要使用fullcalendar加载.ics文件需要做什么?不幸的是我无法使用php或.net。

jquery fullcalendar icalendar
4个回答
8
投票

您需要的是将自己的扩展名编写为fullcalendar(类似于随fullcalendar提供的gcal.js),您可以将其称为ical.js

你应该知道编写一个完整的解析器可能会非常耗费你所以你可能会考虑坚持使用谷歌日历作为你的后端,除非你有一个令人信服的理由。

如果你开始为fullcalendar开发自己的扩展,你可能想看一下现有的jquery ical解析器(qazxsw poi - 免责声明:我从未尝试过这个插件)


5
投票

我设法做到了。没有我想象的那么难。我使用here作为ics解析器。解析后,我得到一个json对象,其中包含ics中的所有信息。然后根据ical.js遍历它并构造事件对象。

使用FullCalendar v4和重复发生的事件进行更新

由于v4 the definition of FullCalendar Event object和下面的代码没有计算重复事件,这里有一个与v4版本兼容的工具:

changed the initialization code

原始答案的代码(v3及更低版本):

$.get(calendarUrl).then(function (data) {
     // parse the ics data
     var jcalData = ICAL.parse(data.trim());
     var comp = new ICAL.Component(jcalData);
     var eventComps = comp.getAllSubcomponents("vevent");
     // map them to FullCalendar events
     var events = $.map(eventComps, function (item) {

        if (item.getFirstPropertyValue("class") == "PRIVATE") {
            return null;
        }
        else {
            var toreturn = {
                "title": item.getFirstPropertyValue("summary"),
                "location": item.getFirstPropertyValue("location"),
            };
            var rrule=item.getFirstPropertyValue("rrule");
            if(rrule!= null){ //event recurs
                toreturn.rrule={};
                if(rrule.freq) toreturn.rrule.freq=rrule.freq;
                if(rrule.parts.BYDAY) toreturn.rrule.byweekday=rrule.parts.BYDAY;
                if(rrule.until) toreturn.rrule.until=rrule.until.toString();
                if(rrule.until) toreturn.rrule.until=rrule.until.toString();
                if(rrule.interval) toreturn.rrule.interval=rrule.interval;
                var dtstart=item.getFirstPropertyValue("dtstart").toString();
                var dtend=item.getFirstPropertyValue("dtend").toString();
                toreturn.rrule.dtstart=dtstart;
                //count duration ms
                var startdate=new Date(dtstart);
                var enddate=new Date(dtend);
                toreturn.duration = enddate - startdate;
            }else{
                toreturn.start=item.getFirstPropertyValue("dtstart").toString();
                toreturn.end=item.getFirstPropertyValue("dtend").toString();
            }
            return toreturn;
        }
     });
     var calendarEl = document.getElementById('calendar');
     var calendar = new FullCalendar.Calendar(calendarEl, {

              plugins: [ 'interaction','dayGrid','rrule' ],
              defaultView: 'dayGridWeek',
              displayEventEnd: true,
              header: {
                  left: 'prev,next',
                  center: 'title',
                  right: 'dayGridDay,dayGridWeek,dayGridMonth'
              },
              events: events,
              eventRender: function (info) {
                // console.log(info.event);
                // append location
                if (info.event.extendedProps.location != null && info.event.extendedProps.location != "") {
                    info.el.append(info.event.extendedProps.location );
                }
              }
     });
     calendar.render();
});

-1
投票

如果你有一个wordpress网站,那就有一个应用程序。 $.get(calendarUrl).then(function (data) { // parse the ics data var jcalData = ICAL.parse(data.trim()); var comp = new ICAL.Component(jcalData); var eventComps = comp.getAllSubcomponents("vevent"); // console.log(JSON.stringify(eventComps)); // map them to FullCalendar events var events = $.map(eventComps, function (item) { if (item.getFirstPropertyValue("class") == "PRIVATE") { return null; } else { return { "title": item.getFirstPropertyValue("summary") + ";", "start": item.getFirstPropertyValue("dtstart").toJSDate(), "end": item.getFirstPropertyValue("dtend").toJSDate(), "location": item.getFirstPropertyValue("location") }; } }); // refresh the control calendarCtrl.fullCalendar('destroy'); calendarCtrl.fullCalendar({ events: events, timeFormat: "H:mm", displayEventEnd: true, eventRender: function (event, element) { // console.log(element); // append location if (event.location != null && event.location != "") { element.append("<span>" + event.location + "</span>"); } }, header: { left: 'title', center: '', right: 'today,month,basicWeek,listDay prev,next' } }); });

如果您没有wordpress网站,请提供更多信息,以便人们可以更充分地了解您的情况 - 有一些专门的icalendar脚本 - 我暂时没有看过它们,所以无法保证任何例如:http://wordpress.org/extend/plugins/amr-ical-events-list/


-2
投票

您可以将其导入Google日历,然后将Google日历导入FullCalendar。

© www.soinside.com 2019 - 2024. All rights reserved.