Как настроить временные интервалы в полном календаре? - PullRequest
0 голосов
/ 31 мая 2018

Я использую полный календарь из fullcalendar.io и у меня возникли проблемы с настройкой его временного интервала.

enter image description here

Iхотите добавить временные интервалы, такие как завтрак, обед, ужин и т. д., а также пользователь может добавить свои собственные слоты.Как установить фиксированную высоту в зависимости от количества слотов?Кроме того, я хочу установить текст столбца слота для завтрака, обеда и т. Д. Не в 12 часов утра, а в 6 часов утра.Вот что я делал до сих пор:

var today = moment();
$('#calendar').fullCalendar({
                    droppable: true,
                    defaultView: 'Week',
                    header: false,
                    defaultDate: today,
                    navLinks: false, // can click day/week names to navigate views
                    editable: true,
                    eventLimit: true, // allow "more" link when too many events
                    schedulerLicenseKey: 'GPL-My-Project-Is-Open-Source',
                    /*events: [

                        {
                            title  : 'event1',
                            start  : today,
                            imageurl:'assets/images/recipe/salad.jpg'
                        }

                    ],*/
                    /*views: {
                        agendaWeek: {
                            agendaEventMinHeight: 150,
                            allDaySlot: false,
                            slotLabelInterval: { hours: 6},
                            slotDuration: { hours: 1},
                            duration: { days: 7}
                        }
                    },*/
                    eventRender: function (event, element) {
                        element.find(".fc-event-title").remove();
                        element.find(".fc-event-time").remove();
                        var new_description = '#';
                        element.append(new_description);

                    },
                    now: today,
                    /*header: {
                        left: 'promptResource',
                        center: '',
                        right: ''

                    },*/
                    footer: {
                        left:   'promptResource',
                        center: '',
                        right:  ''
                    },
                    customButtons: {
                        promptResource: {
                            text: '+ add course',
                            click: function() {
                                var title = prompt('Course name');
                                if (title) {
                                    $('#calendar').fullCalendar(
                                        'addResource',
                                        { title: title },
                                        true // scroll to the new resource?
                                    );
                                }
                            }
                        }
                    },
                    views: {
                        Week: {
                            type: 'timeline',
                            duration: { Days: '7' },
                            slotLabelInterval: { hours: 24},
                            slotDuration: { hours: 24},
                        }
                    },
                    resourceLabelText: 'Meal',
                    resourceRender: function(resource, cellEls) {
                        cellEls.on('click', function() {
                            if (confirm('Are you sure you want to delete ' + resource.title + '?')) {
                                $('#calendar').fullCalendar('removeResource', resource);
                            }
                        });
                    },
                    resources: [
                        { id: 'a', title: 'Breakfast' , eventColor: 'red'},
                        { id: 'b', title: 'Lunch', eventColor: 'green' },
                        { id: 'c', title: 'Dinner', eventColor: 'orange' },
                        { id: 'd', title: 'Other', eventColor: 'grey'},
                        ],

                    events: [
                        { id: '1', resourceId: 'b', start: today, end: today, title: 'event 1' },
                        { id: '2', resourceId: 'c', start: '2018-04-07T05:00:00', end: '2018-04-07T22:00:00', title: 'event 2' },
                        { id: '3', resourceId: 'd', start: '2018-04-06', end: '2018-04-08', title: 'event 3' },
                        { id: '4', resourceId: 'e', start: '2018-04-07T03:00:00', end: '2018-04-07T08:00:00', title: 'event 4' },
                        { id: '5', resourceId: 'f', start: '2018-04-07T00:30:00', end: '2018-04-07T02:30:00', title: 'event 5' }
                    ]

                });
<link href="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.9.0/fullcalendar.min.css" data-print="true" rel="stylesheet" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.22.2/moment.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar/3.9.0/fullcalendar.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar-scheduler/1.9.4/scheduler.min.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fullcalendar-scheduler/1.9.4/scheduler.min.css" />
<div id="calendar"></div>

Любая помощь будет очень признательна.

Редактировать: Вот что я на самом деле хочу реализовать.Design В дизайне видно, что время суток не имеет значения.Я хочу, чтобы пользователи добавляли как можно больше еды в день.Я просто хочу добавить опцию названия еды (события).И удалите временные интервалы с левой стороны.

update: Мне удалось решить эту проблему в некоторой степени.Вот как это выглядит сейчас: enter image description here Но все же есть некоторые проблемы, например, как я могу изменить формат даты в columnHeader и как я могу дать фиксированный размер для строки и столбцов?

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...