MOBILE-3188 core: Rename getModuleTotalSize to getModuleStoredSize
parent
16b7f8b696
commit
bb88252822
|
@ -72,7 +72,7 @@ export class AddonStorageManagerCourseStoragePage {
|
||||||
// But these aren't necessarily consistent, for example mod_frog vs mmaModFrog.
|
// But these aren't necessarily consistent, for example mod_frog vs mmaModFrog.
|
||||||
// There is nothing enforcing correct values.
|
// There is nothing enforcing correct values.
|
||||||
// Most modules which have large files are downloadable, so I think this is sufficient.
|
// Most modules which have large files are downloadable, so I think this is sufficient.
|
||||||
const promise = this.prefetchDelegate.getModuleTotalSize(module, this.course.id).
|
const promise = this.prefetchDelegate.getModuleStoredSize(module, this.course.id).
|
||||||
then((size) => {
|
then((size) => {
|
||||||
// There are some cases where the return from this is not a valid number.
|
// There are some cases where the return from this is not a valid number.
|
||||||
if (!isNaN(size)) {
|
if (!isNaN(size)) {
|
||||||
|
|
|
@ -1200,9 +1200,13 @@ export class CoreSite {
|
||||||
* @param componentId Component id.
|
* @param componentId Component id.
|
||||||
* @return Promise resolved when the entries are deleted.
|
* @return Promise resolved when the entries are deleted.
|
||||||
*/
|
*/
|
||||||
deleteComponentFromCache(component: string, componentId?: string): Promise<any> {
|
async deleteComponentFromCache(component: string, componentId?: string): Promise<void> {
|
||||||
|
if (!component) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (!this.db) {
|
if (!this.db) {
|
||||||
return Promise.reject(null);
|
throw new Error('Site DB not initialized');
|
||||||
}
|
}
|
||||||
|
|
||||||
const params = {
|
const params = {
|
||||||
|
|
|
@ -1136,7 +1136,7 @@ export class CoreCourseHelperProvider {
|
||||||
this.prefetchDelegate.invalidateModuleStatusCache(module);
|
this.prefetchDelegate.invalidateModuleStatusCache(module);
|
||||||
}
|
}
|
||||||
|
|
||||||
promises.push(this.prefetchDelegate.getModuleTotalSize(module, courseId).then((moduleSize) => {
|
promises.push(this.prefetchDelegate.getModuleStoredSize(module, courseId).then((moduleSize) => {
|
||||||
moduleInfo.size = moduleSize;
|
moduleInfo.size = moduleSize;
|
||||||
moduleInfo.sizeReadable = this.textUtils.bytesToSize(moduleSize, 2);
|
moduleInfo.sizeReadable = this.textUtils.bytesToSize(moduleSize, 2);
|
||||||
}));
|
}));
|
||||||
|
|
|
@ -699,7 +699,7 @@ export class CoreCourseModulePrefetchDelegate extends CoreDelegate {
|
||||||
* @param courseId Course ID the module belongs to.
|
* @param courseId Course ID the module belongs to.
|
||||||
* @return Promise resolved with the total size (0 if unknown)
|
* @return Promise resolved with the total size (0 if unknown)
|
||||||
*/
|
*/
|
||||||
getModuleTotalSize(module: any, courseId: number): Promise<number> {
|
getModuleStoredSize(module: any, courseId: number): Promise<number> {
|
||||||
return this.getModuleDownloadedSize(module, courseId).then((downloadedSize) => {
|
return this.getModuleDownloadedSize(module, courseId).then((downloadedSize) => {
|
||||||
if (isNaN(downloadedSize)) {
|
if (isNaN(downloadedSize)) {
|
||||||
downloadedSize = 0;
|
downloadedSize = 0;
|
||||||
|
|
Loading…
Reference in New Issue