2017-11-08 14:48:34 +01:00
|
|
|
// (C) Copyright 2015 Martin Dougiamas
|
|
|
|
//
|
|
|
|
// 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 { Injectable } from '@angular/core';
|
|
|
|
import { CoreFileProvider } from '../../../providers/file';
|
|
|
|
import { CoreUtilsProvider } from '../../../providers/utils/utils';
|
|
|
|
import { File } from '@ionic-native/file';
|
2017-11-14 15:43:03 +01:00
|
|
|
import { LocalNotifications } from '@ionic-native/local-notifications';
|
2017-11-08 14:48:34 +01:00
|
|
|
import { CoreInitDelegate, CoreInitHandler } from '../../../providers/init';
|
2017-11-09 13:00:08 +01:00
|
|
|
import { FileTransferErrorMock } from './file-transfer';
|
2018-01-08 09:21:51 +01:00
|
|
|
import { CoreEmulatorCaptureHelperProvider } from './capture-helper';
|
2017-11-08 14:48:34 +01:00
|
|
|
|
|
|
|
/**
|
2018-01-08 09:21:51 +01:00
|
|
|
* Helper service for the emulator feature. It also acts as an init handler.
|
2017-11-08 14:48:34 +01:00
|
|
|
*/
|
|
|
|
@Injectable()
|
2017-11-21 16:35:41 +01:00
|
|
|
export class CoreEmulatorHelperProvider implements CoreInitHandler {
|
2017-11-08 14:48:34 +01:00
|
|
|
name = 'CoreEmulator';
|
2017-11-21 09:56:16 +01:00
|
|
|
priority = CoreInitDelegate.MAX_RECOMMENDED_PRIORITY + 500;
|
2017-11-08 14:48:34 +01:00
|
|
|
blocking = true;
|
|
|
|
|
|
|
|
constructor(private file: File, private fileProvider: CoreFileProvider, private utils: CoreUtilsProvider,
|
2018-01-08 09:21:51 +01:00
|
|
|
initDelegate: CoreInitDelegate, private localNotif: LocalNotifications,
|
|
|
|
private captureHelper: CoreEmulatorCaptureHelperProvider) {}
|
2017-11-14 15:43:03 +01:00
|
|
|
|
2017-11-08 14:48:34 +01:00
|
|
|
/**
|
|
|
|
* Load the Mocks that need it.
|
|
|
|
*
|
|
|
|
* @return {Promise<void>} Promise resolved when loaded.
|
|
|
|
*/
|
|
|
|
load() : Promise<void> {
|
|
|
|
let promises = [];
|
|
|
|
|
|
|
|
promises.push((<any>this.file).load().then((basePath: string) => {
|
|
|
|
this.fileProvider.setHTMLBasePath(basePath);
|
|
|
|
}));
|
2017-12-08 13:45:30 +01:00
|
|
|
promises.push((<any>this.localNotif).load());
|
2018-01-08 09:21:51 +01:00
|
|
|
promises.push(this.captureHelper.load());
|
2017-11-14 15:43:03 +01:00
|
|
|
|
2017-11-09 13:00:08 +01:00
|
|
|
(<any>window).FileTransferError = FileTransferErrorMock;
|
2017-11-08 14:48:34 +01:00
|
|
|
|
|
|
|
return this.utils.allPromises(promises);
|
|
|
|
}
|
|
|
|
}
|