2017-12-20 12:23:12 +01:00
|
|
|
<ion-header>
|
2018-07-13 13:10:55 +02:00
|
|
|
<ion-navbar core-back-button>
|
2017-12-20 12:23:12 +01:00
|
|
|
<ion-title>{{ 'addon.calendar.calendarevents' | translate }}</ion-title>
|
2017-12-22 09:09:47 +01:00
|
|
|
<ion-buttons end>
|
|
|
|
<button *ngIf="courses && courses.length" ion-button icon-only (click)="openCourseFilter($event)" [attr.aria-label]="'core.courses.filter' | translate">
|
|
|
|
<ion-icon name="funnel"></ion-icon>
|
|
|
|
</button>
|
|
|
|
<core-context-menu>
|
|
|
|
<core-context-menu-item [hidden]="!notificationsEnabled" [priority]="600" [content]="'core.settings.settings' | translate" (action)="openSettings()" [iconAction]="'cog'"></core-context-menu-item>
|
|
|
|
</core-context-menu>
|
|
|
|
</ion-buttons>
|
2017-12-20 12:23:12 +01:00
|
|
|
</ion-navbar>
|
|
|
|
</ion-header>
|
2018-01-10 16:35:25 +01:00
|
|
|
<core-split-view>
|
|
|
|
<ion-content>
|
|
|
|
<ion-refresher [enabled]="eventsLoaded" (ionRefresh)="refreshEvents($event)">
|
|
|
|
<ion-refresher-content pullingText="{{ 'core.pulltorefresh' | translate }}"></ion-refresher-content>
|
|
|
|
</ion-refresher>
|
2018-01-24 11:35:49 +01:00
|
|
|
<core-loading [hideUntil]="eventsLoaded">
|
2018-01-10 16:35:25 +01:00
|
|
|
<core-empty-box *ngIf="!filteredEvents || !filteredEvents.length" icon="calendar" [message]="'addon.calendar.noevents' | translate">
|
|
|
|
</core-empty-box>
|
2017-12-22 09:09:47 +01:00
|
|
|
|
2018-02-02 15:22:54 +01:00
|
|
|
<ion-list *ngIf="filteredEvents && filteredEvents.length" no-margin>
|
2019-01-09 16:46:58 +01:00
|
|
|
<ng-container *ngFor="let event of filteredEvents">
|
|
|
|
<ion-item-divider *ngIf="event.showDate">
|
|
|
|
{{ event.timestart * 1000 | coreFormatDate: "strftimedayshort" }}
|
|
|
|
</ion-item-divider>
|
|
|
|
<a ion-item text-wrap [title]="event.name" (click)="gotoEvent(event.id)" [class.core-split-item-selected]="event.id == eventId">
|
|
|
|
<img *ngIf="event.moduleIcon" src="{{event.moduleIcon}}" item-start class="core-module-icon">
|
|
|
|
<core-icon *ngIf="event.icon && !event.moduleIcon" [name]="event.icon" item-start></core-icon>
|
|
|
|
<h2><core-format-text [text]="event.name"></core-format-text></h2>
|
|
|
|
<p>
|
|
|
|
{{ event.timestart * 1000 | coreFormatDate: "strftimetime" }}
|
|
|
|
<span *ngIf="event.timeduration && event.endsSameDay"> - {{ (event.timestart + event.timeduration) * 1000 | coreFormatDate: "strftimetime" }}</span>
|
|
|
|
<span *ngIf="event.timeduration && !event.endsSameDay"> - {{ (event.timestart + event.timeduration) | coreToLocaleString }}</span>
|
|
|
|
</p>
|
|
|
|
</a>
|
|
|
|
</ng-container>
|
2018-01-10 16:35:25 +01:00
|
|
|
</ion-list>
|
2017-12-22 09:09:47 +01:00
|
|
|
|
2018-11-16 15:07:34 +01:00
|
|
|
<core-infinite-loading [enabled]="canLoadMore" (action)="loadMoreEvents($event)" [error]="loadMoreError"></core-infinite-loading>
|
2018-01-10 16:35:25 +01:00
|
|
|
</core-loading>
|
|
|
|
</ion-content>
|
|
|
|
</core-split-view>
|