Files
NativeScript/ui/text-view/text-view.ios.ts
Hristo Deshev 77838ae9c6 Change from "classic" TS 1.6 imports to the default resolution scheme.
- Use relative imports in place of most of our absolute ones.
- Add "private" ambient modules for modules that we need to import using
an absolute path (e.g. when app/.../test-something.ts needs to import
ui/styling/style-scope)
2015-09-29 16:25:49 +03:00

105 lines
3.1 KiB
TypeScript

import common = require("./text-view-common");
import dependencyObservable = require("ui/core/dependency-observable");
import textBase = require("ui/text-base");
import enums = require("ui/enums");
global.moduleMerge(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, textView.text);
}
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: UITextViewDelegateImpl;
constructor() {
super();
this._ios = new UITextView();
if (!this._ios.font) {
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, this.text);
}
public _onTextPropertyChanged(data: dependencyObservable.PropertyChangeData) {
super._onTextPropertyChanged(data);
this._refreshHintState(this.hint, data.newValue);
}
public _refreshHintState(hint: string, text: string) {
if (hint && !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;
}
}