forked from EVOgeek/Vmeda.Online
145 lines
5.1 KiB
TypeScript
145 lines
5.1 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, ViewChild } from '@angular/core';
|
|
import { IonicPage, NavParams } from 'ionic-angular';
|
|
import { CoreDomUtilsProvider } from '@providers/utils/dom';
|
|
import { CoreRatingInfo } from '@core/rating/providers/rating';
|
|
import { CoreTagProvider } from '@core/tag/providers/tag';
|
|
import { CoreCommentsProvider } from '@core/comments/providers/comments';
|
|
import { CoreCommentsCommentsComponent } from '@core/comments/components/comments/comments';
|
|
import { AddonModGlossaryProvider } from '../../providers/glossary';
|
|
|
|
/**
|
|
* Page that displays a glossary entry.
|
|
*/
|
|
@IonicPage({ segment: 'addon-mod-glossary-entry' })
|
|
@Component({
|
|
selector: 'page-addon-mod-glossary-entry',
|
|
templateUrl: 'entry.html',
|
|
})
|
|
export class AddonModGlossaryEntryPage {
|
|
@ViewChild(CoreCommentsCommentsComponent) comments: CoreCommentsCommentsComponent;
|
|
|
|
component = AddonModGlossaryProvider.COMPONENT;
|
|
componentId: number;
|
|
entry: any;
|
|
glossary: any;
|
|
loaded = false;
|
|
showAuthor = false;
|
|
showDate = false;
|
|
ratingInfo: CoreRatingInfo;
|
|
tagsEnabled: boolean;
|
|
commentsEnabled: boolean;
|
|
|
|
protected courseId: number;
|
|
protected entryId: number;
|
|
|
|
constructor(navParams: NavParams,
|
|
protected domUtils: CoreDomUtilsProvider,
|
|
protected glossaryProvider: AddonModGlossaryProvider,
|
|
protected tagProvider: CoreTagProvider,
|
|
protected commentsProvider: CoreCommentsProvider) {
|
|
this.courseId = navParams.get('courseId');
|
|
this.entryId = navParams.get('entryId');
|
|
}
|
|
|
|
/**
|
|
* View loaded.
|
|
*/
|
|
ionViewDidLoad(): void {
|
|
this.tagsEnabled = this.tagProvider.areTagsAvailableInSite();
|
|
this.commentsEnabled = !this.commentsProvider.areCommentsDisabledInSite();
|
|
|
|
this.fetchEntry().then(() => {
|
|
this.glossaryProvider.logEntryView(this.entry.id, this.componentId, this.glossary.name).catch(() => {
|
|
// Ignore errors.
|
|
});
|
|
}).finally(() => {
|
|
this.loaded = true;
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Refresh the data.
|
|
*
|
|
* @param refresher Refresher.
|
|
* @return Promise resolved when done.
|
|
*/
|
|
doRefresh(refresher?: any): Promise<any> {
|
|
if (this.glossary && this.glossary.allowcomments && this.entry && this.entry.id > 0 && this.commentsEnabled &&
|
|
this.comments) {
|
|
// Refresh comments. Don't add it to promises because we don't want the comments fetch to block the entry fetch.
|
|
this.comments.doRefresh().catch(() => {
|
|
// Ignore errors.
|
|
});
|
|
}
|
|
|
|
return this.glossaryProvider.invalidateEntry(this.entry.id).catch(() => {
|
|
// Ignore errors.
|
|
}).then(() => {
|
|
return this.fetchEntry(true);
|
|
}).finally(() => {
|
|
refresher && refresher.complete();
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Convenience function to get the glossary entry.
|
|
*
|
|
* @param refresh Whether we're refreshing data.
|
|
* @return Promise resolved when done.
|
|
*/
|
|
protected fetchEntry(refresh?: boolean): Promise<any> {
|
|
return this.glossaryProvider.getEntry(this.entryId).then((result) => {
|
|
this.entry = result.entry;
|
|
this.ratingInfo = result.ratinginfo;
|
|
|
|
if (!refresh) {
|
|
// Load the glossary.
|
|
return this.glossaryProvider.getGlossaryById(this.courseId, this.entry.glossaryid).then((glossary) => {
|
|
this.glossary = glossary;
|
|
this.componentId = glossary.coursemodule;
|
|
|
|
switch (glossary.displayformat) {
|
|
case 'fullwithauthor':
|
|
case 'encyclopedia':
|
|
this.showAuthor = true;
|
|
this.showDate = true;
|
|
break;
|
|
case 'fullwithoutauthor':
|
|
this.showAuthor = false;
|
|
this.showDate = true;
|
|
break;
|
|
default: // Default, and faq, simple, entrylist, continuous.
|
|
this.showAuthor = false;
|
|
this.showDate = false;
|
|
}
|
|
});
|
|
}
|
|
}).catch((error) => {
|
|
this.domUtils.showErrorModalDefault(error, 'addon.mod_glossary.errorloadingentry', true);
|
|
|
|
return Promise.reject(null);
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Function called when rating is updated online.
|
|
*/
|
|
ratingUpdated(): void {
|
|
this.glossaryProvider.invalidateEntry(this.entryId);
|
|
}
|
|
}
|