mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00

* feat(text-field): add closeOnReturn property to avoid auto dismissing input on return press * tslint * Update NS public api Co-authored-by: Vasil Trifonov <v.trifonov@gmail.com> Co-authored-by: Dimitar Topuzov <dtopuzov@gmail.com>
65 lines
2.3 KiB
TypeScript
65 lines
2.3 KiB
TypeScript
import * as textFieldModule from "@nativescript/core/ui/text-field";
|
|
import * as colorModule from "@nativescript/core/color";
|
|
import { getColor } from "../../ui-helper";
|
|
import * as enums from "@nativescript/core/ui/enums";
|
|
|
|
export function getNativeText(textField: textFieldModule.TextField): string {
|
|
return textField.ios.text;
|
|
}
|
|
|
|
export function getNativeHint(textField: textFieldModule.TextField): string {
|
|
return textField.ios.placeholder;
|
|
}
|
|
|
|
export function getNativeSecure(textField: textFieldModule.TextField): boolean {
|
|
return textField.ios.secureTextEntry;
|
|
}
|
|
|
|
export function getNativeFontSize(textField: textFieldModule.TextField): number {
|
|
return textField.ios.font.pointSize;
|
|
}
|
|
|
|
export function getNativeColor(textField: textFieldModule.TextField): colorModule.Color {
|
|
return getColor(textField.ios.textColor);
|
|
}
|
|
|
|
export function getNativePlaceholderColor(textField: textFieldModule.TextField): colorModule.Color {
|
|
return getColor(textField.ios.attributedPlaceholder.attributeAtIndexEffectiveRange(NSForegroundColorAttributeName, 0, null));
|
|
}
|
|
|
|
export function getNativeBackgroundColor(textField: textFieldModule.TextField): colorModule.Color {
|
|
return getColor(textField.ios.backgroundColor);
|
|
}
|
|
|
|
export function getNativeTextAlignment(textField: textFieldModule.TextField): string {
|
|
switch (textField.ios.textAlignment) {
|
|
case NSTextAlignment.Left:
|
|
return enums.TextAlignment.left;
|
|
case NSTextAlignment.Center:
|
|
return enums.TextAlignment.center;
|
|
case NSTextAlignment.Right:
|
|
return enums.TextAlignment.right;
|
|
default:
|
|
return "unexpected value";
|
|
}
|
|
}
|
|
|
|
export function getNativeFocus(textField: textFieldModule.TextField): boolean {
|
|
return textField.nativeView.isFirstResponder;
|
|
}
|
|
|
|
export function typeTextNatively(textField: textFieldModule.TextField, text: string): void {
|
|
textField.ios.text = text;
|
|
|
|
// Setting the text will not trigger the delegate method, so we have to do it by hand.
|
|
textField.ios.delegate.textFieldDidEndEditing(textField.ios);
|
|
}
|
|
|
|
export function typeTextNativelyWithReturn(textField: textFieldModule.TextField, text: string): void {
|
|
textField.nativeView.becomeFirstResponder();
|
|
|
|
textField.ios.text = text;
|
|
|
|
textField.ios.delegate.textFieldShouldReturn(textField.ios);
|
|
}
|