forked from EVOgeek/Vmeda.Online
66 lines
2.5 KiB
TypeScript
66 lines
2.5 KiB
TypeScript
// (C) Copyright 2015 Moodle Pty Ltd.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
import { Component, Input, Output, EventEmitter } from '@angular/core';
|
|
import { CoreSites } from '@services/sites';
|
|
import { CoreDomUtils } from '@services/utils/dom';
|
|
import { CoreTextUtils } from '@services/utils/text';
|
|
import { CoreContentLinksHelper } from '@features/contentlinks/services/contentlinks-helper';
|
|
import { CoreEnrolledCourseDataWithOptions } from '@features/courses/services/courses-helper';
|
|
import { AddonBlockTimelineDayEvents } from '@addons/block/timeline/classes/section';
|
|
|
|
/**
|
|
* Directive to render a list of events in course overview.
|
|
*/
|
|
@Component({
|
|
selector: 'addon-block-timeline-events',
|
|
templateUrl: 'addon-block-timeline-events.html',
|
|
styleUrls: ['events.scss'],
|
|
})
|
|
export class AddonBlockTimelineEventsComponent {
|
|
|
|
@Input() events: AddonBlockTimelineDayEvents[] = []; // The events to render.
|
|
@Input() course?: CoreEnrolledCourseDataWithOptions; // Whether to show the course name.
|
|
@Input() showInlineCourse = true; // Whether to show the course name within event items.
|
|
@Input() canLoadMore = false; // Whether more events can be loaded.
|
|
@Input() loadingMore = false; // Whether loading is ongoing.
|
|
@Output() loadMore = new EventEmitter(); // Notify that more events should be loaded.
|
|
|
|
/**
|
|
* Action clicked.
|
|
*
|
|
* @param event Click event.
|
|
* @param url Url of the action.
|
|
*/
|
|
async action(event: Event, url: string): Promise<void> {
|
|
event.preventDefault();
|
|
event.stopPropagation();
|
|
|
|
// Fix URL format.
|
|
url = CoreTextUtils.decodeHTMLEntities(url);
|
|
|
|
const modal = await CoreDomUtils.showModalLoading();
|
|
|
|
try {
|
|
const treated = await CoreContentLinksHelper.handleLink(url);
|
|
if (!treated) {
|
|
return CoreSites.getRequiredCurrentSite().openInBrowserWithAutoLogin(url);
|
|
}
|
|
} finally {
|
|
modal.dismiss();
|
|
}
|
|
}
|
|
|
|
}
|