使用fullcalendar导入iCal(ics)?

时间:2012-02-22 23:08:25

标签: jquery fullcalendar icalendar

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

5 个答案:

答案 0 :(得分:8)

你需要的是将你自己的扩展写入fullcalendar(类似于fullcalendar提供的gcal.js),你可以称之为ical.js

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

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

答案 1 :(得分:4)

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

使用FullCalendar v4进行更新并重新安装事件

由于v4 changed the initialization code并且下面的代码并不包含重复发生的事件,因此这里有一个与v4版本配合使用的代码:

$.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();
});

原始答案的代码(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");
// 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'
    }
});
});

答案 2 :(得分:1)

从 V 5.5.0 开始,支持将 iCalendar 作为事件源。

您可以在此处查看文档:{​​{3}}

示例:

import dayGridPlugin from '@fullcalendar/daygrid'
import iCalendarPlugin from '@fullcalendar/icalendar'

var calendar = new Calendar(calendarEl, {
  plugins: [dayGridPlugin, iCalendarPlugin],
  events: {
    url: 'https://mywebsite/icalendar-feed.ics',
    format: 'ics'
  }
})

calendar.render()

答案 3 :(得分:0)

如果你有一个wordpress网站,那就有一个应用程序。 http://wordpress.org/extend/plugins/amr-ical-events-list/

如果您没有wordpress网站,请提供更多信息,以便人们可以更充分地了解您的情况 - 有一些专用的icalendar脚本 - 我暂时没有看过它们,所以不能担保任何例如: http://phpicalendar.net/

答案 4 :(得分:-2)

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