mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
78 lines
2.6 KiB
TypeScript
78 lines
2.6 KiB
TypeScript
import observable = require("data/observable");
|
|
import pages = require("ui/page");
|
|
import textField = require("ui/text-field");
|
|
import frame = require("ui/frame");
|
|
import dialogs = require("ui/dialogs");
|
|
|
|
var closeCallback: Function;
|
|
|
|
var page: pages.Page;
|
|
var usernameTextField: textField.TextField;
|
|
var passwordTextField: textField.TextField;
|
|
|
|
export function onShowingModally(args: observable.EventData) {
|
|
console.log(">>> login-page.onShowingModally");
|
|
var modalPage = <pages.Page>args.object;
|
|
if (modalPage.ios && modalPage.ios.modalPresentationStyle === UIModalPresentationStyle.UIModalPresentationFullScreen) {
|
|
console.log(">>> Setting modalPage.ios.modalPresentationStyle to UIModalPresentationStyle.UIModalPresentationOverFullScreen");
|
|
modalPage.ios.modalPresentationStyle = UIModalPresentationStyle.UIModalPresentationOverFullScreen;
|
|
}
|
|
}
|
|
|
|
export function onShownModally(args: pages.ShownModallyData) {
|
|
console.log(">>> login-page.onShownModally, context: " + args.context);
|
|
|
|
closeCallback = args.closeCallback;
|
|
var modalPage = <pages.Page>args.object;
|
|
|
|
if (frame.topmost().currentPage.modal !== args.object) {
|
|
throw new Error(`frame.topmost().currentPage.modal.id: ${frame.topmost().currentPage.modal.id}; modalPage.id: ${modalPage.id}`);
|
|
}
|
|
}
|
|
|
|
export function onNavigatingTo(args: observable.EventData) {
|
|
console.log(">>> login-page.onNavigatingTo");
|
|
}
|
|
|
|
export function onLoaded(args: observable.EventData) {
|
|
console.log(">>> login-page.onLoaded");
|
|
page = <pages.Page>args.object;
|
|
usernameTextField = page.getViewById<textField.TextField>("username");
|
|
passwordTextField = page.getViewById<textField.TextField>("password");
|
|
}
|
|
|
|
export function onNavigatedTo(args: pages.NavigatedData) {
|
|
console.log(">>> login-page.onNavigatedTo, context: " + args.context);
|
|
}
|
|
|
|
export function onNavigatingFrom(args: observable.EventData) {
|
|
console.log(">>> login-page.onNavigatingFrom");
|
|
}
|
|
|
|
export function onNavigatedFrom(args: observable.EventData) {
|
|
console.log(">>> login-page.onNavigatedFrom");
|
|
}
|
|
|
|
export function onUnloaded() {
|
|
console.log(">>> login-page.onUnloaded");
|
|
}
|
|
|
|
export function onLoginButtonTap() {
|
|
console.log(">>> login-page.onLoginButtonTap");
|
|
|
|
if (closeCallback) {
|
|
closeCallback(usernameTextField.text, passwordTextField.text);
|
|
}
|
|
else {
|
|
frame.topmost().goBack();
|
|
}
|
|
}
|
|
|
|
export function onShowDialogButtonTap() {
|
|
console.log(">>> login-page.onShowDialogButtonTap");
|
|
|
|
dialogs.alert({ title: "test", message: "Anything", okButtonText: "ok" })
|
|
.then(function () {
|
|
console.log("Dialog closed!");
|
|
});
|
|
} |