mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
135 lines
4.2 KiB
TypeScript
135 lines
4.2 KiB
TypeScript
import common = require("ui/search-bar/search-bar-common");
|
|
import dependencyObservable = require("ui/core/dependency-observable");
|
|
import proxy = require("ui/core/proxy");
|
|
import color = require("color");
|
|
import types = require("utils/types");
|
|
|
|
function onTextPropertyChanged(data: dependencyObservable.PropertyChangeData) {
|
|
var bar = <SearchBar>data.object;
|
|
bar.ios.text = data.newValue;
|
|
}
|
|
|
|
(<proxy.PropertyMetadata>common.SearchBar.textProperty.metadata).onSetNativeValue = onTextPropertyChanged;
|
|
|
|
function onTextFieldBackgroundColorPropertyChanged(data: dependencyObservable.PropertyChangeData) {
|
|
var bar = <SearchBar>data.object;
|
|
if (data.newValue instanceof color.Color) {
|
|
var tf = (<any>bar)._textField;
|
|
if (tf) {
|
|
tf.backgroundColor = data.newValue.ios;
|
|
}
|
|
}
|
|
}
|
|
|
|
(<proxy.PropertyMetadata>common.SearchBar.textFieldBackgroundColorProperty.metadata).onSetNativeValue = onTextFieldBackgroundColorPropertyChanged;
|
|
|
|
function onTextFieldHintColorPropertyChanged(data: dependencyObservable.PropertyChangeData) {
|
|
// This should be in a Try Catch in case Apple eliminates which ever method in the future;
|
|
try {
|
|
// TODO; convert this code into NativeScript Code
|
|
/* if ([textField respondsToSelector:@selector(setAttributedPlaceholder:)]) {
|
|
textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:textField.placeholder attributes:@{NSForegroundColorAttributeName: [UIColor whiteColor]}];
|
|
} */
|
|
} catch (Err) {
|
|
// Do Nothing
|
|
}
|
|
}
|
|
|
|
(<proxy.PropertyMetadata>common.SearchBar.textFieldHintColorProperty.metadata).onSetNativeValue = onTextFieldHintColorPropertyChanged;
|
|
|
|
function onHintPropertyChanged(data: dependencyObservable.PropertyChangeData) {
|
|
var bar = <SearchBar>data.object;
|
|
if (!bar.ios) {
|
|
return;
|
|
}
|
|
|
|
var newValue = data.newValue;
|
|
|
|
if (types.isString(newValue)) {
|
|
bar.ios.placeholder = newValue;
|
|
}
|
|
}
|
|
|
|
(<proxy.PropertyMetadata>common.SearchBar.hintProperty.metadata).onSetNativeValue = onHintPropertyChanged;
|
|
|
|
global.moduleMerge(common, exports);
|
|
|
|
class UISearchBarDelegateImpl extends NSObject implements UISearchBarDelegate {
|
|
public static ObjCProtocols = [UISearchBarDelegate];
|
|
|
|
static new(): UISearchBarDelegateImpl {
|
|
return <UISearchBarDelegateImpl>super.new();
|
|
}
|
|
|
|
private _owner: SearchBar;
|
|
private _searchText: string;
|
|
|
|
public initWithOwner(owner: SearchBar): UISearchBarDelegateImpl {
|
|
this._owner = owner;
|
|
return this;
|
|
}
|
|
|
|
public searchBarTextDidChange(searchBar: UISearchBar, searchText: string) {
|
|
this._owner._onPropertyChangedFromNative(common.SearchBar.textProperty, searchText);
|
|
|
|
// This code is needed since sometimes searchBarCancelButtonClicked is not called!
|
|
if (searchText === "" && this._searchText !== searchText) {
|
|
this._owner._emit(common.SearchBar.clearEvent);
|
|
}
|
|
|
|
this._searchText = searchText;
|
|
}
|
|
|
|
public searchBarCancelButtonClicked(searchBar: UISearchBar) {
|
|
searchBar.resignFirstResponder();
|
|
this._owner._emit(common.SearchBar.clearEvent);
|
|
}
|
|
|
|
public searchBarSearchButtonClicked(searchBar: UISearchBar) {
|
|
searchBar.resignFirstResponder();
|
|
this._owner._emit(common.SearchBar.submitEvent);
|
|
}
|
|
}
|
|
|
|
export class SearchBar extends common.SearchBar {
|
|
private _ios: UISearchBar;
|
|
private _delegate;
|
|
public _textField: UITextField;
|
|
|
|
constructor() {
|
|
super();
|
|
|
|
this._ios = new UISearchBar();
|
|
|
|
this._delegate = UISearchBarDelegateImpl.new().initWithOwner(this);
|
|
}
|
|
|
|
public onLoaded() {
|
|
super.onLoaded();
|
|
this._ios.delegate = this._delegate;
|
|
this._textField = SearchBar.findTextField(this.ios);
|
|
}
|
|
|
|
public onUnloaded() {
|
|
this._ios.delegate = null;
|
|
super.onUnloaded();
|
|
}
|
|
|
|
get ios(): UISearchBar {
|
|
return this._ios;
|
|
}
|
|
|
|
private static findTextField(view: UIView) {
|
|
for (let i = 0, l = view.subviews.count; i < l; i++) {
|
|
let v: UIView = view.subviews[i];
|
|
if (v instanceof UITextField) {
|
|
return v;
|
|
} else if (v.subviews.count > 0) {
|
|
return SearchBar.findTextField(v);
|
|
}
|
|
}
|
|
|
|
return undefined;
|
|
}
|
|
}
|