Files
Martin Guillon 46705ee332 refactor(core-modules): implement createNativeView and initNativeView for all components
refactor(core-modules): implement createNativeView and initNativeView for all components
2018-09-26 13:59:12 +03:00

54 lines
1.4 KiB
TypeScript

import {
ProgressBase, Color, valueProperty, maxValueProperty,
colorProperty, backgroundColorProperty, backgroundInternalProperty
} from "./progress-common";
export * from "./progress-common";
export class Progress extends ProgressBase {
nativeViewProtected: UIProgressView;
createNativeView() {
return UIProgressView.new();
}
get ios() {
return this.nativeViewProtected;
}
[valueProperty.getDefault](): number {
return 0;
}
[valueProperty.setNative](value: number) {
this.ios.progress = value / this.maxValue;
}
[maxValueProperty.getDefault](): number {
return 100;
}
[maxValueProperty.setNative](value: number) {
this.ios.progress = this.value / value;
}
[colorProperty.getDefault](): UIColor {
return this.ios.progressTintColor;
}
[colorProperty.setNative](value: Color | UIColor) {
this.ios.progressTintColor = value instanceof Color ? value.ios : value;
}
[backgroundColorProperty.getDefault](): UIColor {
return this.ios.trackTintColor;
}
[backgroundColorProperty.setNative](value: UIColor | Color) {
let color = value instanceof Color ? value.ios : value;
this.ios.trackTintColor = color;
}
[backgroundInternalProperty.getDefault](): UIColor {
return null;
}
[backgroundInternalProperty.setNative](value: Color) {
//
}
}