2 This file is part of Moodle - http://moodle.org/
4 Moodle is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 3 of the License, or
7 (at your option) any later version.
9 Moodle is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with Moodle. If not, see <http://www.gnu.org/licenses/>.
18 @template calendar/month_detailed
22 The purpose of this template is to render the month view.
24 Classes required for JS:
27 Data attributes required for JS:
30 Example context (json):
35 }} class="calendarwrapper"{{!
36 }}{{#courseid}} data-courseid="{{courseid}}"{{/courseid}}{{!
37 }}{{#categoryid}} data-categoryid="{{categoryid}}"{{/categoryid}}{{!
38 }} data-context-id="{{defaulteventcontext}}"{{!
39 }} data-month="{{date.mon}}"{{!
40 }} data-year="{{date.year}}"{{!
41 }} data-view="month"{{!
43 {{> core_calendar/month_navigation }}
44 {{> core/overlay_loading}}
45 <table id="month-detailed-{{uniqid}}" class="calendarmonth calendartable mb-0">
49 <th class="header text-xs-center" aria-label="{{fullname}}">
57 <tr data-region="month-view-week">
59 <td class="dayblank"> </td>
62 <td class="day text-sm-center text-md-left{{!
63 }}{{#istoday}} today{{/istoday}}{{!
64 }}{{#isweekend}} weekend{{/isweekend}}{{!
65 }}{{#durationevents.0}} duration{{/durationevents.0}}{{!
66 }}{{#durationevents}} duration_{{.}}{{/durationevents}}{{!
67 }}{{#defaulteventcontext}} clickable{{/defaulteventcontext}}{{!
69 data-day-timestamp="{{timestamp}}"
70 data-drop-zone="month-view-day"
72 data-new-event-timestamp="{{neweventtimestamp}}">
73 <div class="d-none d-md-block hidden-phone text-xs-center">
75 <a data-action="view-day-link" href="#" class="day" aria-label="{{viewdaylinktitle}}"
76 data-year="{{date.year}}" data-month="{{date.mon}}" data-day="{{mday}}"
77 data-courseid="{{courseid}}" data-categoryid="{{categoryid}}"
78 data-timestamp="{{timestamp}}">{{mday}}</a>
84 <div data-region="day-content">
88 <li class="events-underway">[{{{name}}}]</li>
91 <li data-region="event-item"
92 dava-event-component="{{component}}"
93 data-event-eventtype="{{eventtype}}"
94 data-eventtype-{{normalisedeventtype}}="1"
99 data-min-day-timestamp="{{.}}"
102 data-min-day-error="{{.}}"
105 data-max-day-timestamp="{{.}}"
108 data-max-day-error="{{.}}"
112 <a data-action="view-event" data-event-id="{{id}}" href="{{url}}" title="{{name}}">
113 <span class="badge badge-circle calendar_event_{{normalisedeventtype}}">
116 {{> core_calendar/event_icon}}
117 <span class="eventname">{{{name}}}</span>
126 <div class="d-md-none hidden-desktop hidden-tablet">
128 <a data-action="view-day-link" href="#" class="day" aria-label="{{viewdaylinktitle}}"
129 data-year="{{date.year}}" data-month="{{date.mon}}" data-day="{{mday}}"
130 data-courseid="{{courseid}}" data-categoryid="{{categoryid}}"
131 data-timestamp="{{timestamp}}">{{mday}}</a>
140 <td class="dayblank"> </td>
150 'core_calendar/month_view_drag_drop',
151 'core_calendar/selectors',
152 'core_calendar/events',
159 var root = $('#month-detailed-{{uniqid}}');
162 $('body').on(CalendarEvents.filterChanged, function(e, data) {
163 M.util.js_pending("month-detailed-{{uniqid}}-filterChanged");
164 // A filter value has been changed.
165 // Find all matching cells in the popover data, and hide them.
166 var target = $("#month-detailed-{{uniqid}}").find(CalendarSelectors.eventType[data.type]);
168 var transitionPromise = $.Deferred();
170 transitionPromise.then(function() {
171 return target.slideUp('fast').promise();
174 transitionPromise.then(function() {
175 return target.slideDown('fast').promise();
179 transitionPromise.then(function() {
180 M.util.js_complete("month-detailed-{{uniqid}}-filterChanged");
185 transitionPromise.resolve();