mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-11-05 13:26:48 +08:00
* enable recycling of nativeView * backgroundInternal is reset if setting new value leads to background.isEmpty() == true. * android background.getDefault always return copy of the background. Now all controls that mutate the background can be reset to initial state (e.g. Button & ActionBar) passing resources to copied background so it respect density. fix properties initNativeView * reset padding when backgroundInternal is reset. * Fix text reset Fix padding reset * fix tsc errors * fix ugly text rendering. * Add unit tests for recycling native views Fix several issues that came from the above tests Fix maxLength property missing a converter callback Remove old files * Remove old files * Revert backgroundInternal setter * change the order of tests so that appium can work again * Remove suggestion on every TextView & TextField init (strangely it is enabled after view is recycled....) * Fix function to get parent layout if specified * Button stateListAnimator restored when button is recycled zIndex defaultValue is now undefined instead of NaN * revert zIndex.setNative to always clear stateListAnimator because it was breaking one UI test (setting value=0 was returning the previous stateListAnimator) * fix search-bar backgound-color recycling * Fix alignments setters * Fix imageView recycling Fix button recycling Fix edit-text recycling resetNativeView is called only if recycleNativeView flag is true * Fix incorrect merge * Fix text-view & text-field textTransform * Fix EditText text reset * Fix runtime crash on ARM emulator API 21 * Fix text-base minHeight. maxHeight reset Fix reset of isUserInteractionEnabled
96 lines
3.2 KiB
TypeScript
96 lines
3.2 KiB
TypeScript
import * as TKUnit from "../../TKUnit";
|
|
import * as helper from "../helper";
|
|
import * as viewModule from "tns-core-modules/ui/core/view";
|
|
import * as imageModule from "tns-core-modules/ui/image";
|
|
import * as platform from "tns-core-modules/platform";
|
|
import * as color from "tns-core-modules/color";
|
|
|
|
// >> activity-indicator-require
|
|
import * as activityIndicatorModule from "tns-core-modules/ui/activity-indicator";
|
|
// << activity-indicator-require
|
|
|
|
export function test_recycling() {
|
|
helper.nativeView_recycling_test(() => new activityIndicatorModule.ActivityIndicator());
|
|
}
|
|
|
|
export function test_default_TNS_values() {
|
|
// >> activity-indicator-create
|
|
var indicator = new activityIndicatorModule.ActivityIndicator();
|
|
// << activity-indicator-create
|
|
|
|
TKUnit.assertEqual(indicator.busy, false, "Default indicator.busy");
|
|
}
|
|
|
|
export function test_default_native_values() {
|
|
var indicator = new activityIndicatorModule.ActivityIndicator();
|
|
|
|
indicator.width = 50;
|
|
indicator.height = 50;
|
|
|
|
function testAction(views: Array<viewModule.View>) {
|
|
TKUnit.assertEqual(getNativeBusy(indicator), false, "Default native indicator.busy");
|
|
};
|
|
|
|
helper.buildUIAndRunTest(indicator, testAction);
|
|
}
|
|
|
|
export function test_set_TNS_value_updates_native_value() {
|
|
var indicator = new activityIndicatorModule.ActivityIndicator();
|
|
indicator.width = 50;
|
|
indicator.height = 50;
|
|
|
|
function testAction(views: Array<viewModule.View>) {
|
|
indicator.busy = true;
|
|
TKUnit.waitUntilReady(() => getNativeBusy(indicator) === true);
|
|
TKUnit.assertEqual(getNativeBusy(indicator), true, "Native value is different from TNS value.");
|
|
};
|
|
|
|
helper.buildUIAndRunTest(indicator, testAction);
|
|
}
|
|
|
|
// Uncomment this when find way to check android Drawable color set by setColorFilter() method.
|
|
if (platform.device.os === platform.platformNames.ios) {
|
|
exports.test_set_color = function () {
|
|
var ai = new activityIndicatorModule.ActivityIndicator();
|
|
ai.color = new color.Color("red");
|
|
|
|
function testAction(views: Array<viewModule.View>) {
|
|
TKUnit.assertEqual(ai.color.ios.CGColor, ai.nativeView.color.CGColor, "ai.color");
|
|
};
|
|
|
|
helper.buildUIAndRunTest(ai, testAction);
|
|
}
|
|
}
|
|
|
|
// This method is only for the code snippet
|
|
/* tslint:disable:no-unused-variable */
|
|
function binding_busy_to_image() {
|
|
/* tslint:enable:no-unused-variable */
|
|
|
|
// >> activity-indicator-loading
|
|
var image = new imageModule.Image();
|
|
var indicator = new activityIndicatorModule.ActivityIndicator();
|
|
indicator.width = 100;
|
|
indicator.height = 100;
|
|
|
|
// Bind the busy property of the indicator to the isLoading property of the image
|
|
indicator.bind({
|
|
sourceProperty: "isLoading",
|
|
targetProperty: "busy"
|
|
}, image);
|
|
// << activity-indicator-loading
|
|
}
|
|
|
|
function getNativeBusy(indicator: activityIndicatorModule.ActivityIndicator): boolean {
|
|
if (indicator.android) {
|
|
return indicator.android.getVisibility() === android.view.View.VISIBLE;
|
|
}
|
|
else if (indicator.ios) {
|
|
if ((indicator.ios as any).isAnimating) {
|
|
return (indicator.ios as any).isAnimating();
|
|
} else {
|
|
return (indicator.ios as UIActivityIndicatorView).animating;
|
|
}
|
|
}
|
|
}
|