complete Android & iOS with same logic

This commit is contained in:
王劲鹏 2020-01-03 18:06:57 +08:00 committed by osborn
parent ece2e0cac2
commit e06b305eb8
6 changed files with 110 additions and 20 deletions

View File

@ -9,6 +9,7 @@ import com.github.pengfeizhou.jscore.JSValue;
import pub.doric.DoricContext; import pub.doric.DoricContext;
import pub.doric.extension.bridge.DoricPlugin; import pub.doric.extension.bridge.DoricPlugin;
import pub.doric.utils.DoricUtils;
@DoricPlugin(name = "Draggable") @DoricPlugin(name = "Draggable")
public class DraggableNode extends StackNode { public class DraggableNode extends StackNode {
@ -52,9 +53,6 @@ public class DraggableNode extends StackNode {
int x = (int) event.getX(); int x = (int) event.getX();
int y = (int) event.getY(); int y = (int) event.getY();
int rawX = (int) event.getRawX();
int rawY = (int) event.getRawY();
switch (event.getAction()) { switch (event.getAction()) {
case MotionEvent.ACTION_DOWN: case MotionEvent.ACTION_DOWN:
lastX = x; lastX = x;
@ -63,13 +61,11 @@ public class DraggableNode extends StackNode {
case MotionEvent.ACTION_MOVE: case MotionEvent.ACTION_MOVE:
int offsetX = x - lastX; int offsetX = x - lastX;
int offsetY = y - lastY; int offsetY = y - lastY;
layout(getLeft() + offsetX, getTop() + offsetY, getRight() + offsetX, getBottom() + offsetY); callJSResponse(onDrag, DoricUtils.px2dp(offsetX), DoricUtils.px2dp(offsetY));
break; break;
case MotionEvent.ACTION_UP: case MotionEvent.ACTION_UP:
break; break;
} }
callJSResponse(onDrag, rawX - x, rawY - y);
return true; return true;
} }
} }

View File

@ -191,11 +191,11 @@ public class DoricUtils {
return getScreenHeight(null); return getScreenHeight(null);
} }
public static float px2dp(int pxValue) { public static float px2dp(float pxValue) {
return px2dp(null, pxValue); return px2dp(null, pxValue);
} }
public static float px2dp(Context context, int pxValue) { public static float px2dp(Context context, float pxValue) {
if (context == null) { if (context == null) {
context = Doric.application(); context = Doric.application();
} }

View File

@ -1,17 +1,28 @@
import { Panel, Group, vlayout, layoutConfig, draggable, Color, Text} from "doric"; import { Panel, Group, vlayout, layoutConfig, draggable, Color, Text, Draggable, modal, Gravity, loge} from "doric";
import { title } from "./utils"; import { title } from "./utils";
@Entry @Entry
class DraggableDemo extends Panel { class DraggableDemo extends Panel {
build(root: Group) { build(root: Group) {
let text = (new Text).also(it => { let text = (new Text).also(it => {
it.layoutConfig = layoutConfig().most() it.layoutConfig = layoutConfig().just().configAlignmnet(Gravity.Center)
it.width = 100
it.height = 30
it.textColor = Color.parse('#ff0000') it.textColor = Color.parse('#ff0000')
it.onClick = () => {
modal(context).toast('Clicked')
}
}) })
vlayout([ let drag: Draggable
title("Draggable Demo"), let lastX: number = 0
draggable({ let lastY: number = 0
drag = draggable({
onDrag: (x: number, y: number) => { onDrag: (x: number, y: number) => {
text.text = "x: " + x + " y: " + y lastX += x
lastY += y
drag.translationX = lastX
drag.translationY = lastY
loge(lastX)
text.text = "x: " + lastX.toFixed(0) + " y: " + lastY.toFixed(0)
} }
}, [ text ]).apply({ }, [ text ]).apply({
layoutConfig: layoutConfig().just(), layoutConfig: layoutConfig().just(),
@ -19,6 +30,9 @@ class DraggableDemo extends Panel {
height: 100, height: 100,
backgroundColor: Color.WHITE backgroundColor: Color.WHITE
}) })
vlayout([
title("Draggable Demo"),
drag
]) ])
.apply({ .apply({
layoutConfig: layoutConfig().most(), layoutConfig: layoutConfig().most(),

View File

@ -44,6 +44,7 @@
#import "DoricAnimatePlugin.h" #import "DoricAnimatePlugin.h"
#import "DoricNestedSliderNode.h" #import "DoricNestedSliderNode.h"
#import "DoricInputNode.h" #import "DoricInputNode.h"
#import "DoricDraggableNode.h"
#import "DoricLibrary.h" #import "DoricLibrary.h"
@ -124,6 +125,7 @@ - (void)innerRegister {
[self registerViewNode:DoricFlowLayoutNode.class withName:@"FlowLayout"]; [self registerViewNode:DoricFlowLayoutNode.class withName:@"FlowLayout"];
[self registerViewNode:DoricNestedSliderNode.class withName:@"NestedSlider"]; [self registerViewNode:DoricNestedSliderNode.class withName:@"NestedSlider"];
[self registerViewNode:DoricInputNode.class withName:@"Input"]; [self registerViewNode:DoricInputNode.class withName:@"Input"];
[self registerViewNode:DoricDraggableNode.class withName:@"Draggable"];
} }
- (void)registerJSBundle:(NSString *)bundle withName:(NSString *)name { - (void)registerJSBundle:(NSString *)bundle withName:(NSString *)name {

View File

@ -0,0 +1,33 @@
/*
* Copyright [2019] [Doric.Pub]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//
// DoricTextNode.h
// Doric
//
// Created by jingpeng.wang on 2020/01/03.
//
#import "DoricStackNode.h"
NS_ASSUME_NONNULL_BEGIN
@interface DoricDraggableNode : DoricStackNode
@property(nonatomic, strong) NSString *onDragFunction;
@end
NS_ASSUME_NONNULL_END

View File

@ -0,0 +1,45 @@
/*
* Copyright [2019] [Doric.Pub]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
//
// DoricTextNode.m
// Doric
//
// Created by jingpeng.wang on 2020/01/03.
//
#import "DoricDraggableNode.h"
@implementation DoricDraggableNode
- (DoricStackView *)build {
DoricStackView *stackView = [DoricStackView new];
UIPanGestureRecognizer *gesture = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(onDrag:)];
[stackView addGestureRecognizer:gesture];
return stackView;
}
- (void)onDrag:(UIPanGestureRecognizer *)gesture {
CGPoint point = [gesture translationInView:self.view];
[gesture setTranslation:CGPointZero inView:self.view];
[self callJSResponse:_onDragFunction, @(point.x), @(point.y), nil];
}
- (void)blendView:(DoricStackView *)view forPropName:(NSString *)name propValue:(id)prop {
if ([name isEqualToString:@"onDrag"]) {
_onDragFunction = prop;
}
[super blendView:view forPropName:name propValue:prop];
}
@end