Files
NativeScript/ui/text-view/text-view.ios.ts
Rossen Hristov be188119f0 tslint
2015-05-20 16:46:13 +03:00

108 lines
3.2 KiB
TypeScript

import common = require("ui/text-view/text-view-common");
import dependencyObservable = require("ui/core/dependency-observable");
import textBase = require("ui/text-base");
import enums = require("ui/enums");
// merge the exports of the common file with the exports of this file
declare var exports;
require("utils/module-merge").merge(common, exports);
class UITextViewDelegateImpl extends NSObject implements UITextViewDelegate {
public static ObjCProtocols = [UITextViewDelegate];
static new(): UITextViewDelegateImpl {
return <UITextViewDelegateImpl>super.new();
}
private _owner: TextView;
public initWithOwner(owner: TextView): UITextViewDelegateImpl {
this._owner = owner;
return this;
}
public textViewShouldBeginEditing(textView: UITextView): boolean {
this._owner._hideHint();
return true;
}
public textViewDidEndEditing(textView: UITextView) {
if (this._owner.updateTextTrigger === enums.UpdateTextTrigger.focusLost) {
this._owner._onPropertyChangedFromNative(textBase.TextBase.textProperty, textView.text);
}
this._owner.dismissSoftInput();
this._owner._refreshHintState(this._owner.hint);
}
public textViewDidChange(textView: UITextView) {
if (this._owner.updateTextTrigger === enums.UpdateTextTrigger.textChanged) {
this._owner._onPropertyChangedFromNative(textBase.TextBase.textProperty, textView.text);
}
}
}
export class TextView extends common.TextView {
private _ios: UITextView;
private _delegate: any;
constructor() {
super();
this._ios = UITextView.new();
if (!this._ios.font) {
// For some reason font is null, not like stated in the docs.
this._ios.font = UIFont.systemFontOfSize(12);
}
this._delegate = UITextViewDelegateImpl.new().initWithOwner(this);
}
public onLoaded() {
super.onLoaded();
this._ios.delegate = this._delegate;
}
public onUnloaded() {
this._ios.delegate = null;
super.onUnloaded();
}
get ios(): UITextView {
return this._ios;
}
public _onEditablePropertyChanged(data: dependencyObservable.PropertyChangeData) {
this._ios.editable = data.newValue;
}
public _onHintPropertyChanged(data: dependencyObservable.PropertyChangeData) {
this._refreshHintState(data.newValue);
}
public _onTextPropertyChanged(data: dependencyObservable.PropertyChangeData) {
super._onTextPropertyChanged(data);
this._refreshHintState(this.hint);
}
public _refreshHintState(hint: string) {
if (hint && !this.ios.text) {
this._showHint(hint);
}
else {
this._hideHint();
}
}
public _showHint(hint: string) {
this.ios.textColor = this.ios.textColor ? this.ios.textColor.colorWithAlphaComponent(0.22) : UIColor.blackColor().colorWithAlphaComponent(0.22);
this.ios.text = hint + "";
(<any>this.ios).isShowingHint = true;
}
public _hideHint() {
this.ios.textColor = this.color ? this.color.ios : null;
this.ios.text = this.text + "";
(<any>this.ios).isShowingHint = false;
}
}