56 lines
2.1 KiB
TypeScript
56 lines
2.1 KiB
TypeScript
// (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 { InAppBrowser } from '@ionic-native/in-app-browser';
|
|
import { CoreAppProvider } from '@providers/app';
|
|
import { CoreFileProvider } from '@providers/file';
|
|
import { CoreUrlUtilsProvider } from '@providers/utils/url';
|
|
import { InAppBrowserObjectMock } from '../classes/inappbrowserobject';
|
|
|
|
/**
|
|
* Emulates the Cordova InAppBrowser plugin in desktop apps.
|
|
*/
|
|
@Injectable()
|
|
export class InAppBrowserMock extends InAppBrowser {
|
|
|
|
constructor(private appProvider: CoreAppProvider, private fileProvider: CoreFileProvider,
|
|
private urlUtils: CoreUrlUtilsProvider) {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Opens a URL in a new InAppBrowser instance, the current browser instance, or the system browser.
|
|
*
|
|
* @param {string} url The URL to load.
|
|
* @param {string} [target] The target in which to load the URL, an optional parameter that defaults to _self.
|
|
* @param {string} [options] Options for the InAppBrowser.
|
|
* @return {any} The new instance.
|
|
*/
|
|
create(url: string, target?: string, options: string = 'location=yes'): any {
|
|
if (options && typeof options !== 'string') {
|
|
// Convert to string.
|
|
options = Object.keys(options).map((key) => {
|
|
return key + '=' + options[key];
|
|
}).join(',');
|
|
}
|
|
|
|
if (!this.appProvider.isDesktop()) {
|
|
return super.create(url, target, options);
|
|
}
|
|
|
|
return new InAppBrowserObjectMock(this.appProvider, this.fileProvider, this.urlUtils, url, target, options);
|
|
}
|
|
}
|