bitwarden-estensione-browser/src/popup/components/pop-out.component.ts

78 lines
2.7 KiB
TypeScript
Raw Normal View History

2018-04-11 16:48:48 +02:00
import {
Component,
Input,
2018-04-11 17:18:58 +02:00
OnInit,
2018-04-11 16:48:48 +02:00
} from '@angular/core';
import { Angulartics2 } from 'angulartics2';
import { BrowserApi } from '../../browser/browserApi';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
import { PopupUtilsService } from '../services/popup-utils.service';
@Component({
selector: 'app-pop-out',
2018-04-06 17:48:45 +02:00
templateUrl: 'pop-out.component.html',
})
2018-04-11 17:18:58 +02:00
export class PopOutComponent implements OnInit {
2018-04-11 16:48:48 +02:00
@Input() show = true;
constructor(private analytics: Angulartics2, private platformUtilsService: PlatformUtilsService,
2018-04-14 05:37:57 +02:00
private popupUtilsService: PopupUtilsService) { }
2018-04-11 17:18:58 +02:00
ngOnInit() {
if (this.show) {
this.show = !this.platformUtilsService.isSafari();
2018-04-14 05:37:57 +02:00
if (this.show && this.popupUtilsService.inSidebar(window) && this.platformUtilsService.isFirefox()) {
this.show = false;
}
2018-04-11 17:18:58 +02:00
}
2018-04-11 16:48:48 +02:00
}
expand() {
this.analytics.eventTrack.next({ action: 'Pop Out Window' });
let href = window.location.href;
if (this.platformUtilsService.isEdge()) {
const popupIndex = href.indexOf('/popup/');
if (popupIndex > -1) {
href = href.substring(popupIndex);
}
}
if ((typeof chrome !== 'undefined') && chrome.windows && chrome.windows.create) {
if (href.indexOf('?uilocation=') > -1) {
href = href.replace('uilocation=popup', 'uilocation=popout')
.replace('uilocation=tab', 'uilocation=popout')
.replace('uilocation=sidebar', 'uilocation=popout');
} else {
const hrefParts = href.split('#');
href = hrefParts[0] + '?uilocation=popout' + (hrefParts.length > 0 ? '#' + hrefParts[1] : '');
}
const bodyRect = document.querySelector('body').getBoundingClientRect();
chrome.windows.create({
url: href,
type: 'popup',
width: Math.round(bodyRect.width ? bodyRect.width + 60 : 375),
height: Math.round(bodyRect.height || 600),
});
if (this.popupUtilsService.inPopup(window)) {
BrowserApi.closePopup(window);
}
} else if ((typeof chrome !== 'undefined') && chrome.tabs && chrome.tabs.create) {
href = href.replace('uilocation=popup', 'uilocation=tab')
.replace('uilocation=popout', 'uilocation=tab')
.replace('uilocation=sidebar', 'uilocation=tab');
chrome.tabs.create({
url: href,
});
} else if ((typeof safari !== 'undefined')) {
// Safari can't open popup in full page tab :(
}
}
}