Michał Osadnik
1e938c4980
Update ProceduralNode.java
2018-12-03 11:20:39 +01:00
Michał Osadnik
363b3f3567
Update FrameEvaluation.java
2018-12-03 11:13:59 +01:00
Michał Osadnik
b07e00ae05
Update EvalContext.java
2018-12-03 11:12:22 +01:00
osdnk
977e2685da
Add comment
2018-12-03 03:07:03 +01:00
osdnk
c8182a7096
Fix onDrop style
2018-12-03 03:05:19 +01:00
osdnk
0e52765299
Remove empty line
2018-12-03 02:58:42 +01:00
osdnk
f7a92f102f
Fix accessors
2018-12-03 02:57:57 +01:00
osdnk
7f8e7ca183
Add Bidirectional list for Procedural
2018-12-03 02:47:18 +01:00
osdnk
cfc141e1a0
Fix eval logic
2018-12-03 02:05:18 +01:00
Michał Osadnik
8edce4a4f9
Update ProceduralNode.java
2018-12-03 01:52:13 +01:00
osdnk
fa9eeae837
Fix android
2018-12-03 01:46:14 +01:00
osdnk
4ac1960e6e
Comment
2018-12-03 01:45:13 +01:00
Michał Osadnik
ceacf0906e
Update FrameEvaluation.java
2018-12-03 01:42:13 +01:00
Michał Osadnik
1b02932643
Update FrameEvaluation.java
2018-12-03 01:40:20 +01:00
osdnk
f2d195c34c
Rem useles var
2018-12-03 01:39:13 +01:00
Michał Osadnik
f2afe328eb
Update EvalContext.java
2018-12-03 01:38:13 +01:00
Michał Osadnik
9660556ca5
Update Utils.java
2018-12-02 01:38:28 +01:00
osdnk
21e1d98c51
Move to separated classes
2018-12-02 01:21:18 +01:00
osdnk
85639a6b3d
Remove empty line
2018-11-30 17:49:43 +01:00
osdnk
6d2efbe1af
Comment
2018-11-30 17:47:05 +01:00
osdnk
5578f88b99
Fix android
2018-11-30 17:46:44 +01:00
osdnk
a6f6d99825
Change some pr issues
2018-11-25 23:47:23 +01:00
osdnk
601e733ef4
Add comment
2018-11-08 10:10:37 +01:00
osdnk
1eea28ba55
Extract Biderectional map
2018-11-08 09:38:37 +01:00
osdnk
846d5b6b0c
Refactor android
2018-11-08 09:07:21 +01:00
osdnk
7b8239cb47
JS refactor
2018-11-08 08:36:34 +01:00
osdnk
74ce3510a0
Minor fixes
2018-11-05 13:44:19 +01:00
Michał Osadnik
ef5077b17a
Merge branch 'master' into reusableNode
2018-11-05 11:43:04 +01:00
Ely Alvarado
f01a696f3e
Update build.gradle to remove compile warning ( #120 )
...
With the latest react-native version RN >= 0.57 the android build tools were updated and now using `compile` in the build.gradle file generates the following error:
WARNING: Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'.
It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html
2018-10-22 18:54:53 +02:00
Michał Osadnik
26fb28c8b9
Update BezierNode.java
2018-10-08 14:22:54 +02:00
Michał Osadnik
2f77b3c7c5
Update ProceduralNode.java
2018-10-08 12:47:43 +02:00
osdnk
ff978853cc
Children in
2018-10-08 12:20:56 +02:00
osdnk
ca03497813
null
2018-10-08 12:13:16 +02:00
osdnk
fc202b49ed
Refactor
2018-10-08 12:01:37 +02:00
Michał Osadnik
9d30424f69
Update NodesManager.java
2018-10-08 11:55:43 +02:00
osdnk
a7e5f8036f
Reaname
2018-10-08 11:54:56 +02:00
osdnk
3a1c8e95f2
Make it compilable on android as well
2018-10-05 16:43:27 +02:00
osdnk
5c1e10ea48
Merge remote-tracking branch 'origin/reusableNode' into reusableNode
2018-10-05 15:53:49 +02:00
osdnk
12b983f443
Merge branch 'master' into reusableNode
2018-10-05 15:52:50 +02:00
Michał Osadnik
ef4b75833b
Update OperatorNode.java
2018-10-05 15:30:53 +02:00
Michał Osadnik
3bbf8a0fed
Make Animated Value persist its value after reattaching ( #87 )
...
When value gets detached from all component it can be still kept in memory and attached to some other component at later time. But because we don't know when JS reference is dropped we need to delete native counterpart of the value when it gets detached. This has led to a situation in which the value was reinstantiated on the native site. In that case if the value has changed we expect it to persist that changes when it gets attached again. This wasn't happening and each time the value was instantiated we'd always use the initial value.
With this change we are solving that issue by querying the value right before we detach the native node and then we use that value to update config such that next time when it gets instantiated it uses updated value instead of the initial one.
2018-09-28 13:45:51 +02:00
Michał Osadnik
d093851197
Merge branch 'master' into reusableNode
2018-09-24 16:07:57 +02:00
Krzysztof Magiera
f81434dd7f
Modernize android build.gradle
...
Bump buildTools and compileSdk to 25
2018-09-02 21:53:24 +02:00
Michał Osadnik
06b03a8461
Use strings as value ( #53 )
2018-08-16 17:09:13 +02:00
Michał Osadnik
04719e8537
Move initializing set of visited node outside eval loop on Android ( #75 )
2018-08-16 16:56:05 +02:00
Michał Osadnik
3d7ccffd05
Merge branch 'master' into reusableNode
2018-08-16 12:47:36 +02:00
Michał Osadnik
d54f70ebf6
Update layout props without crossing JS bridge ( #45 )
...
* Add handling od iOS and Android
* Fix style
* Delete proder.sh
* Fix example
* staph
* example
* example
* Improve iOS
* Optimize android
* Add whitelist ⚪ 📎 📊
* Update REAPropsNode.m
* Fix example
* Update App.js
* Update ConfigHelper.js
* Works
* Update REANodesManager.h
* Add files
* Mor pr issues
* Update Android things
* Revert "Update Android things"
This reverts commit 255bb74
* PR
* Update UIManagerUtils.java
* rename
* rename
* Update UIManagerUtils.java
* Update UIManagerUtils.java
* PR
* Pr stuff
* Update UIManagerReanimatedHelper.java
* revert CAC
* Update Android things
(cherry picked from commit 255bb74 )
* Update REAPropsNode.m
* Update ConfigHelper.js
* Update NodesManager.java
* js props
* Update REANodesManager.m
* simplify
* dead
* style
* style
* style
* Update Animated.js
* Update UIManagerReanimatedHelper.java
* Update REANodesManager.m
2018-08-14 11:41:30 +02:00
Michał Osadnik
391a5b5471
Update Node.java
2018-08-13 14:04:07 +02:00
Michał Osadnik
4fbfb767e3
Update Node.java
2018-08-13 14:02:09 +02:00
Michał Osadnik
bb4c12a649
Update Node.java
2018-08-13 14:01:32 +02:00