import pageCommon = require("./page-common"); import definition = require("ui/page"); import {View} from "ui/core/view"; import trace = require("trace"); import uiUtils = require("ui/utils"); import utils = require("utils/utils"); import {device} from "platform"; import {DeviceType} from "ui/enums"; global.moduleMerge(pageCommon, exports); class UIViewControllerImpl extends UIViewController { static new(): UIViewControllerImpl { return super.new(); } private _owner: Page; public initWithOwner(owner: Page): UIViewControllerImpl { this._owner = owner; this.automaticallyAdjustsScrollViewInsets = false; return this; } public didRotateFromInterfaceOrientation(fromInterfaceOrientation: number) { trace.write(this._owner + " didRotateFromInterfaceOrientation(" + fromInterfaceOrientation + ")", trace.categories.ViewHierarchy); } public viewDidLoad() { trace.write(this._owner + " viewDidLoad", trace.categories.ViewHierarchy); } public viewDidLayoutSubviews() { trace.write(this._owner + " viewDidLayoutSubviews, isLoaded = " + this._owner.isLoaded, trace.categories.ViewHierarchy); if (!this._owner.isLoaded) { return; } if (this._owner._isModal) { let isTablet = device.deviceType === DeviceType.Tablet; let isFullScreen = !this._owner._UIModalPresentationFormSheet || !isTablet; let frame = isFullScreen ? UIScreen.mainScreen().bounds : this.view.frame; let origin = frame.origin; let size = frame.size; let width = size.width; let height = size.height; let mode: number = utils.layout.EXACTLY; let superViewRotationRadians; if (this.view.superview) { let transform = this.view.superview.transform; superViewRotationRadians = atan2f(transform.b, transform.a); } if (utils.ios.MajorVersion < 8 && utils.ios.isLandscape() && !superViewRotationRadians) { // in iOS 7 when in landscape we switch width with height because on device they don't change even when rotated. width = size.height; height = size.width; } let bottom = height; let statusBarHeight = uiUtils.ios.getStatusBarHeight(); let statusBarVisible = !UIApplication.sharedApplication().statusBarHidden; let backgroundSpanUnderStatusBar = this._owner.backgroundSpanUnderStatusBar; if (statusBarVisible && !backgroundSpanUnderStatusBar) { height -= statusBarHeight; } let widthSpec = utils.layout.makeMeasureSpec(width, mode); let heightSpec = utils.layout.makeMeasureSpec(height, mode); View.measureChild(null, this._owner, widthSpec, heightSpec); let top = ((backgroundSpanUnderStatusBar && isFullScreen) || utils.ios.MajorVersion < 8 || !isFullScreen) ? 0 : statusBarHeight; View.layoutChild(null, this._owner, 0, top, width, bottom); if (utils.ios.MajorVersion < 8) { if (!backgroundSpanUnderStatusBar && (!isTablet || isFullScreen)) { if (utils.ios.isLandscape() && !superViewRotationRadians) { this.view.center = CGPointMake(this.view.center.x - statusBarHeight, this.view.center.y); } else { this.view.center = CGPointMake(this.view.center.x, this.view.center.y + statusBarHeight); } } } trace.write(this._owner + ", native frame = " + NSStringFromCGRect(this.view.frame), trace.categories.Layout); } else { this._owner._updateLayout(); } } public viewWillAppear() { trace.write(this._owner + " viewWillAppear", trace.categories.Navigation); this._owner._enableLoadedEvents = true; this._owner.onLoaded(); this._owner._enableLoadedEvents = false; } public viewDidDisappear() { trace.write(this._owner + " viewDidDisappear", trace.categories.Navigation); this._owner._enableLoadedEvents = true; this._owner.onUnloaded(); this._owner._enableLoadedEvents = false; } } export class Page extends pageCommon.Page { private _ios: UIViewController; public _enableLoadedEvents: boolean; public _isModal: boolean = false; public _UIModalPresentationFormSheet: boolean = false; constructor(options?: definition.Options) { super(options); this._ios = UIViewControllerImpl.new().initWithOwner(this); } public requestLayout(): void { super.requestLayout(); if (!this.parent && this.ios && this._nativeView) { this._nativeView.setNeedsLayout(); } } public _onContentChanged(oldView: View, newView: View) { super._onContentChanged(oldView, newView); this._removeNativeView(oldView); this._addNativeView(newView); } public onLoaded() { // loaded/unloaded events are handled in page viewWillAppear/viewDidDisappear if (this._enableLoadedEvents) { super.onLoaded(); } } public onUnloaded() { // loaded/unloaded events are handled in page viewWillAppear/viewDidDisappear if (this._enableLoadedEvents) { super.onUnloaded(); } } private _addNativeView(view: View) { if (view) { trace.write("Native: Adding " + view + " to " + this, trace.categories.ViewHierarchy); if (view.ios instanceof UIView) { this._ios.view.addSubview(view.ios); } else if (view.ios instanceof UIViewController) { this._ios.addChildViewController(view.ios); this._ios.view.addSubview(view.ios.view); } } } private _removeNativeView(view: View) { if (view) { trace.write("Native: Removing " + view + " from " + this, trace.categories.ViewHierarchy); if (view.ios instanceof UIView) { (view.ios).removeFromSuperview(); } else if (view.ios instanceof UIViewController) { (view.ios).removeFromParentViewController(); (view.ios).view.removeFromSuperview(); } } } get ios(): UIViewController { return this._ios; } get _nativeView(): UIView { return this.ios.view; } protected _showNativeModalView(parent: Page, context: any, closeCallback: Function, fullscreen?: boolean) { super._showNativeModalView(parent, context, closeCallback, fullscreen); this._isModal = true; if (!parent.ios.view.window) { throw new Error("Parent page is not part of the window hierarchy. Close the current modal page before showing another one!"); } if (fullscreen) { this._ios.modalPresentationStyle = UIModalPresentationStyle.UIModalPresentationFullScreen; } else { this._ios.modalPresentationStyle = UIModalPresentationStyle.UIModalPresentationFormSheet; this._UIModalPresentationFormSheet = true; } var that = this; parent.ios.presentViewControllerAnimatedCompletion(this._ios, false, function completion() { that._raiseShownModallyEvent(parent, context, closeCallback); }); } protected _hideNativeModalView(parent: Page) { this._isModal = false; this._UIModalPresentationFormSheet = false; parent.requestLayout(); parent._ios.dismissModalViewControllerAnimated(false); } public _updateActionBar(hidden: boolean) { var frame = this.frame; if (frame) { frame._updateActionBar(this); } } public onMeasure(widthMeasureSpec: number, heightMeasureSpec: number) { let width = utils.layout.getMeasureSpecSize(widthMeasureSpec); let widthMode = utils.layout.getMeasureSpecMode(widthMeasureSpec); let height = utils.layout.getMeasureSpecSize(heightMeasureSpec); let heightMode = utils.layout.getMeasureSpecMode(heightMeasureSpec); let actionBarWidth: number = 0; let actionBarHeight: number = 0; // If background span under statusbar reduce available height for page content. let statusBarHeight = this.backgroundSpanUnderStatusBar ? uiUtils.ios.getStatusBarHeight() : 0; // Phones does not support fullScreen=false for modal pages so we reduce statusbar only when on tablet and not in fullscreen if (this._isModal && this._UIModalPresentationFormSheet && device.deviceType === DeviceType.Tablet) { statusBarHeight = 0; } if (this.frame && this.frame._getNavBarVisible(this)) { // Measure ActionBar with the full height. let actionBarSize = View.measureChild(this, this.actionBar, widthMeasureSpec, heightMeasureSpec); actionBarWidth = actionBarSize.measuredWidth; actionBarHeight = actionBarSize.measuredHeight; } let heightSpec = utils.layout.makeMeasureSpec(height - actionBarHeight - statusBarHeight, heightMode); // Measure content with height - navigationBarHeight. Here we could use actionBarSize.measuredHeight probably. let result = View.measureChild(this, this.content, widthMeasureSpec, heightSpec); let measureWidth = Math.max(actionBarWidth, result.measuredWidth, this.minWidth); let measureHeight = Math.max(result.measuredHeight + actionBarHeight, this.minHeight); let widthAndState = View.resolveSizeAndState(measureWidth, width, widthMode, 0); let heightAndState = View.resolveSizeAndState(measureHeight, height, heightMode, 0); this.setMeasuredDimension(widthAndState, heightAndState); } public onLayout(left: number, top: number, right: number, bottom: number) { View.layoutChild(this, this.actionBar, 0, 0, right - left, bottom - top); let navigationBarHeight: number = 0; if (this.frame && this.frame._getNavBarVisible(this)) { navigationBarHeight = this.actionBar.getMeasuredHeight(); } let statusBarHeight = this.backgroundSpanUnderStatusBar ? uiUtils.ios.getStatusBarHeight() : 0; // Phones does not support fullScreen=false for modal pages so we reduce statusbar only when on tablet and not in fullscreen if (this._isModal && this._UIModalPresentationFormSheet && device.deviceType === DeviceType.Tablet) { statusBarHeight = 0; } View.layoutChild(this, this.content, 0, navigationBarHeight + statusBarHeight, right - left, bottom - top); } public _addViewToNativeVisualTree(view: View): boolean { // ActionBar is added to the native visual tree by default if (view === this.actionBar) { return true; } return super._addViewToNativeVisualTree(view); } }