Merge pull request #1988 from marxjohnson/MOBILE-3054_integration

MOBILE-3054 Courses: Update section download icon
main
Juan Leyva 2019-07-18 11:46:52 +02:00 committed by GitHub
commit d9c85a8b9e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 0 deletions

View File

@ -479,6 +479,14 @@ export class CoreCourseFormatComponent implements OnInit, OnChanges, OnDestroy {
this.dynamicComponents.forEach((component) => {
component.callComponentFunction('ionViewDidEnter');
});
if (this.downloadEnabled) {
// The download status of a section might have been changed from within a module page.
if (this.selectedSection && this.selectedSection.id !== CoreCourseProvider.ALL_SECTIONS_ID) {
this.courseHelper.calculateSectionStatus(this.selectedSection, this.course.id);
} else {
this.courseHelper.calculateSectionsStatus(this.sections, this.course.id);
}
}
}
/**

View File

@ -148,6 +148,8 @@ export class CoreCourseModuleComponent implements OnInit, OnDestroy {
// Get download size to ask for confirm if it's high.
this.prefetchHandler.getDownloadSize(this.module, this.courseId, true).then((size) => {
return this.courseHelper.prefetchModule(this.prefetchHandler, this.module, size, this.courseId, refresh);
}).then(() => {
this.courseHelper.calculateSectionStatus(this.section, this.courseId);
}).catch((error) => {
// Error, hide spinner.
this.spinner = false;